mirror of
https://github.com/System-End/theseus.git
synced 2026-04-19 22:15:09 +00:00
74 lines
No EOL
2.2 KiB
Text
74 lines
No EOL
2.2 KiB
Text
<div>
|
|
<h2 class="inline">
|
|
Order <%= @warehouse_order.hc_id %>:
|
|
</h2>
|
|
<%= render 'status_badge', order: @warehouse_order %>
|
|
<%= link_to "Show on public page", public_package_path(@warehouse_order), target: "_blank" %>
|
|
</div>
|
|
|
|
<%= render 'shared/tags', tags: @warehouse_order.tags %>
|
|
|
|
<div class="my-2">
|
|
<b>title:</b> <%= @warehouse_order.user_facing_title %><br>
|
|
<b>recipient email:</b>
|
|
<%= link_to @warehouse_order.recipient_email, "mailto:#{@warehouse_order.recipient_email}" %><br>
|
|
<b>recipient:</b><br>
|
|
<%= render 'addresses/address', address: @warehouse_order.address %>
|
|
</div>
|
|
|
|
<% if @warehouse_order.batch.present? %>
|
|
<%= render 'shared/batch_info', record: @warehouse_order %>
|
|
<% end %>
|
|
|
|
<b>contents:</b>
|
|
<%= render 'warehouse/orders/line_items', order: @warehouse_order %>
|
|
|
|
<div class="my-2">
|
|
<b>labor cost:</b> <%= number_to_currency(@warehouse_order.labor_cost) %>
|
|
</div>
|
|
|
|
<div class="my-2">
|
|
<b>actual contents cost:</b> <%= number_to_currency(@warehouse_order.contents_actual_cost_to_hc) %>
|
|
</div>
|
|
|
|
<div class="my-2">
|
|
<b>postage cost:</b>
|
|
<% if @warehouse_order.postage_cost.present? %>
|
|
<%= number_to_currency(@warehouse_order.postage_cost) %>
|
|
<% else %>
|
|
$?.??
|
|
<% end %>
|
|
</div>
|
|
|
|
<div class="my-2">
|
|
<b>all in<%= " (excluding postage)" unless @warehouse_order.postage_cost.present? %>:</b>
|
|
<%= number_to_currency((@warehouse_order.contents_actual_cost_to_hc || 0) +
|
|
(@warehouse_order.labor_cost || 0) +
|
|
(@warehouse_order.postage_cost || 0)) %>
|
|
</div>
|
|
|
|
<div class="my-4">
|
|
<b>Internal Notes:</b><br>
|
|
<%= @warehouse_order.internal_notes %>
|
|
</div>
|
|
|
|
<br>
|
|
|
|
<% zenv_link @warehouse_order %>
|
|
|
|
<% if policy(@warehouse_order).send_to_warehouse? && @warehouse_order.may_mark_dispatched? %>
|
|
<%= button_to "send to warehouse!", action: :send_to_warehouse %>
|
|
<% end %>
|
|
|
|
<% if policy(@warehouse_order).destroy? %>
|
|
<%= button_to "delete draft order.", @warehouse_order, method: :delete %>
|
|
<% end %>
|
|
|
|
<div>
|
|
<%= link_to "edit this order", edit_warehouse_order_path(@warehouse_order) %><br>
|
|
<%= link_to "back to orders", warehouse_orders_path %>
|
|
</div>
|
|
|
|
<%= render partial: "admin_inspector", locals: { record: @warehouse_order } %>
|
|
|
|
<% inspector_toggle :line_items %> |