7af796c09c
Conflicts: app/controllers/admin/ordergroups_controller.rb app/controllers/finance/balancing_controller.rb app/controllers/suppliers_controller.rb app/views/articles/_article.html.haml app/views/finance/balancing/_summary.haml app/views/finance/balancing/new.html.haml app/views/group_orders/_form.html.haml app/views/home/_apple_bar.html.haml app/views/suppliers/index.haml
43 lines
1.4 KiB
Text
43 lines
1.4 KiB
Text
- title t('.title')
|
|
|
|
- content_for :actionbar do
|
|
.btn-group
|
|
= link_to '#', data: {toggle: 'dropdown'}, class: 'btn btn-primary dropdown-toggle' do
|
|
= t '.new_order'
|
|
%span.caret
|
|
%ul.dropdown-menu
|
|
- Supplier.undeleted.order('suppliers.name ASC').each do |supplier|
|
|
%li= link_to supplier.name, new_order_path(supplier_id: supplier.id), tabindex: -1
|
|
|
|
.well
|
|
%h2= t '.open_orders'
|
|
- unless @open_orders.empty?
|
|
%table.table.table-striped
|
|
%thead
|
|
%tr
|
|
%th= t '.supplier'
|
|
%th= t '.ending'
|
|
%th= t '.note'
|
|
%th{colspan: "2"}
|
|
%tbody
|
|
- for order in @open_orders
|
|
- tr_class = " active" if order.expired?
|
|
%tr{class: tr_class}
|
|
%td= order.name
|
|
%td= format_time(order.ends) unless order.ends.nil?
|
|
%td= truncate(order.note)
|
|
%td= link_to t('.action_end'), finish_order_path(order),
|
|
confirm: t('.confirm_end', order: order.name), method: :post,
|
|
class: 'btn btn-small btn-success'
|
|
|
|
%td
|
|
= link_to t('ui.show'), order, class: 'btn btn-small'
|
|
= link_to t('ui.edit'), edit_order_path(order), class: 'btn btn-small'
|
|
= link_to t('ui.delete'), order, confirm: t('.confirm_delete'), method: :delete,
|
|
class: 'btn btn-small btn-danger'
|
|
- else
|
|
= t '.no_open_orders'
|
|
|
|
%h2= t '.ended_orders'
|
|
#orders_table
|
|
= render partial: 'orders'
|