Almacenes
<% if success %>
<% elsif warning %>
<% end %>
<%= success %>
<%= warning %>
Lista de almacenes
<% if can? :create, Warehouse %>
<%= link_to new_warehouse_path, remote: true, class: "btn bold green pull-right" do %> Nuevo almacén
<% end %>
<% end %>
| # | Nombre | Prefijo | Status | Acciones |
|---|---|---|---|---|
| <%= key + 1 %> | <%= warehouse.name %> | <%= warehouse.prefix %> | <% if warehouse.active? %> Activo <% elsif warehouse.inactive? %> Inactivo <% end %> | <% if can? :update, Warehouse %> <%= link_to edit_warehouse_path(warehouse), remote: true, class: "btn btn-icon-only btn-primary", title: "Editar almacen" do %> <% end %> <% end %> <% if warehouse.active? %> <%= link_to warehouse_update_status_path(warehouse), class: "btn btn-icon-only default", title: "Desactivar almacen", data: { confirm: '¿Está seguro de desactivar el almacén?', method: 'post' } do %> <% end %> <% elsif warehouse.inactive? %> <%= link_to warehouse_update_status_path(warehouse), remote: true, class: "btn btn-icon-only green-jungle", title: "Activar almacen", data: { confirm: '¿Está seguro de activar el almacén?', method: 'post' } do %> <% end %> <% end %> |