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:
Lance Edgar 2021-11-03 20:54:46 -05:00
parent 1bdb845032
commit 0758ca09e6

View file

@ -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: