Show unit price in line items grid for new custorder
maybe should change this to show "base price" (unit *or* case depending on the row uom) ?
This commit is contained in:
parent
1bdb845032
commit
0758ca09e6
|
@ -630,6 +630,16 @@
|
|||
<span v-html="props.row.order_quantity_display"></span>
|
||||
</b-table-column>
|
||||
|
||||
<b-table-column field="unit_price_display" label="Unit Price">
|
||||
<span
|
||||
% if product_price_may_be_questionable:
|
||||
:class="props.row.price_needs_confirmation ? 'has-background-warning' : ''"
|
||||
% endif
|
||||
>
|
||||
{{ props.row.unit_price_display }}
|
||||
</span>
|
||||
</b-table-column>
|
||||
|
||||
<b-table-column field="total_price_display" label="Total">
|
||||
<span
|
||||
% if product_price_may_be_questionable:
|
||||
|
|
Loading…
Reference in a new issue