Use shipped instead of ordered, for receiving authority

i.e. compare receiving quantities to shipped quantities instead of ordered
This commit is contained in:
Lance Edgar 2019-04-01 13:32:43 -05:00
parent 49017fda39
commit bf189bb704
3 changed files with 15 additions and 5 deletions

View file

@ -30,12 +30,12 @@
<tbody>
% if batch.order_quantities_known:
<tr>
<td>ordered</td>
<td>shipped</td>
<td>
% if allow_cases:
${h.pretty_quantity(row.cases_ordered or 0)} /
${h.pretty_quantity(row.cases_shipped or 0)} /
% endif
${h.pretty_quantity(row.units_ordered or 0)}
${h.pretty_quantity(row.units_shipped or 0)}
</td>
</tr>
% endif