diff --git a/app/views/origami/home/show.html.erb b/app/views/origami/home/show.html.erb
index 10bd36cd..fdc8821b 100755
--- a/app/views/origami/home/show.html.erb
+++ b/app/views/origami/home/show.html.erb
@@ -192,11 +192,13 @@
<% existing_class = "" %><% existing_order = false %>
- <% if @status_sale == 'sale' && (!@order_items.nil?) %>
+ <% if @status_sale == 'sale'
+ unless @order_items.nil? || @order_items.empty?%>
<% existing_class = "existing_invoice"%>
<% existing_order = true %>
<% tooltip = ' data-toggle=modal title=Add_To_Existing data-target=#invoiceModal'%>
<%end%>
+ <%end%>