diff --git a/app/views/settings/promotions/index.html.erb b/app/views/settings/promotions/index.html.erb
index b0cfd599..3274fae1 100644
--- a/app/views/settings/promotions/index.html.erb
+++ b/app/views/settings/promotions/index.html.erb
@@ -39,7 +39,13 @@
<%= pro.promo_end_hour.utc.strftime("%I:%M %P") rescue "-" %> |
<%= pro.promo_day %> |
- <%= MenuItem.find_by_item_code(pro.original_product).name rescue "-"%>
+ <% item = MenuItemInstance.find_by_item_instance_code(pro.original_product)%>
+ <% if item.nil? %>
+ <%= Product.find_by_item_code(pro.original_product).name rescue "-" %>
+ <% else %>
+ <%= item.menu_item.name rescue "-" %>
+ - <%= item.item_instance_name rescue "-" %>
+ <% end %>
|
<% if Employee.exists?(pro.created_by) %>
<%= Employee.find(pro.created_by).name %> |