Promociones

<% if success %>

<%= success %>

<% elsif warning %>

<%= warning %>

<% end %>
Lista de promociones
<% if can? :create, Promotion %> <%= link_to new_promotion_path, { class: "btn bold green pull-right" } do %> Nueva promoción <% end %> <% end %>
<% @promotions.each_with_index do |promotion, key| %> <% end %>
# Periodo Descuento Línea / Sublínea Producto Status Acciones
<%= key + 1 %> Del <%= l(promotion.start_date, format: '%d/%B/%Y') %> al <%= l(promotion.end_date, format: '%d/%B/%Y') %> <%= promotion.percent %>% <%= if promotion.subcategory_id.present? Category.find(promotion.subcategory_id).category elsif promotion.category_id.present? promotion.category.category else "" end %> <%= promotion.product.present? ? promotion.product.full_display : '' %> <% if promotion.active? %> Vigente <% else %> NO vigente <% end %> <% if can? :destroy, Promotion %> <%= link_to promotion, method: :delete, class: "btn btn-icon-only btn-danger", title: "Eliminar promoción", data: { confirm: '¿Está seguro de eliminar la promoción?' } do %> <% end %> <% end %>