97 lines
4.1 KiB
Text
97 lines
4.1 KiB
Text
- title t('.title', name: @order.name)
|
|
|
|
- if current_user.role_finance? || current_user.role_invoices?
|
|
- content_for :actionbar do
|
|
- if @order.invoice.present?
|
|
= link_to t('.show_invoice'), finance_invoice_path(@order.invoice), class: 'btn'
|
|
- elsif !@order.open?
|
|
= link_to t('.create_invoice'), new_finance_invoice_path(:order_id => @order, :supplier_id => @order.supplier),
|
|
class: 'btn'
|
|
|
|
.well
|
|
= close_button :alert
|
|
%p
|
|
- description1 = raw t '.description1_order',
|
|
state: t("orders.state.#{@order.state}").capitalize,
|
|
supplier: supplier_link(@order),
|
|
who: show_user_link(@order.created_by)
|
|
- description1 += ' '
|
|
- if @order.ends
|
|
- description1 += raw t '.description1_period.starts_ends',
|
|
starts: format_time(@order.starts),
|
|
ends: format_time(@order.ends)
|
|
- else
|
|
- description1 += raw t '.description1_period.starts',
|
|
starts: format_time(@order.starts)
|
|
- if @order.pickup
|
|
- description1 += ' '
|
|
- description1 += raw t '.description1_period.pickup',
|
|
pickup: format_date(@order.pickup)
|
|
= description1 + '.'
|
|
%br
|
|
= raw t '.description2',
|
|
ordergroups: ordergroup_count(@order),
|
|
article_count: @order.order_articles.ordered.count,
|
|
net_sum: number_to_currency(@order.sum(:net)),
|
|
gross_sum: number_to_currency(@order.sum(:gross))
|
|
|
|
- unless @order.comments.blank?
|
|
= link_to t('.comments_link'), '#comments'
|
|
|
|
- if @note.present?
|
|
%p
|
|
= heading_helper(Order, :note) + ': '
|
|
= @order.note
|
|
|
|
-# Proposing to remove this warning, since there is a valid period when the order is not settled yet.
|
|
-# Perhaps when the pickup day has been, or when the order isn't settled a week after it has been
|
|
-# closed, this message could be shown.
|
|
-#- if @order.finished? and !@order.closed?
|
|
.alert.alert-warning
|
|
= t '.warn_not_closed'
|
|
|
|
.well.well-small
|
|
.btn-toolbar
|
|
.form-search.pull-right
|
|
.input-append
|
|
= text_field_tag :query, params[:query], class: 'search-query delayed-search resettable'
|
|
%button.add-on.btn.reset-search{:type => :button, :title => t('.search_reset')}
|
|
%i.icon.icon-remove
|
|
|
|
.btn-toolbar
|
|
.btn-group.view_buttons
|
|
= update_articles_link @order, t('.articles'), :default, class: 'btn'
|
|
= update_articles_link @order, t('.sort_group'), :groups, class: 'btn'
|
|
= update_articles_link @order, t('.sort_article'), :articles, class: 'btn'
|
|
|
|
- unless @order.open?
|
|
= render 'shared/order_download_button', order: @order, klass: ''
|
|
- if @order.open?
|
|
= link_to t('.action_end'), finish_order_path(@order), method: :post, class: 'btn btn-success',
|
|
data: {confirm: t('.confirm_end', order: @order.name)}
|
|
- if @order.supplier
|
|
- if @order.stock_group_order
|
|
= link_to t('.stock_order'), edit_group_order_path(@order.stock_group_order, order_id: @order.id), class: 'btn'
|
|
- else
|
|
= link_to t('.stock_order'), new_group_order_path(order_id: @order.id, stock_order: true), class: 'btn'
|
|
= link_to t('ui.edit'), edit_order_path(@order), class: 'btn'
|
|
- elsif not @order.closed? and not @order.stockit?
|
|
= link_to t('.send_to_supplier'), send_result_to_supplier_order_path(@order), method: :post,
|
|
class: "btn#{' btn-primary' unless @order.last_sent_mail}",
|
|
data: {confirm: @order.last_sent_mail && t('.confirm_send_to_supplier', when: format_time(@order.last_sent_mail)) }
|
|
= receive_button @order
|
|
- unless @order.closed?
|
|
= link_to t('ui.delete'), @order, data: {confirm: t('.confirm_delete')}, method: :delete,
|
|
class: 'btn btn-danger'
|
|
|
|
%section#articles_table
|
|
= render @partial, order: @order
|
|
|
|
%h2= t '.comments.title'
|
|
#comments
|
|
= render partial: 'shared/comments', locals: { comments: @order.comments }
|
|
#new_comment= render partial: 'order_comments/form', locals: { order_comment: @order.comments.build(user: current_user)}
|
|
= link_to_top
|
|
|
|
= render 'show_js'
|
|
= render 'shared/articles_by/common', order: @order
|