Don't aggregate product for mobile truck dump receiving

also sort batch rows by most recent, for receiver convenience
This commit is contained in:
Lance Edgar 2018-06-27 17:26:38 -05:00
parent da10c6503c
commit 0ccb6883f8
2 changed files with 18 additions and 4 deletions

View file

@ -593,10 +593,20 @@ class ReceivingBatchView(PurchasingBatchView):
.all()
if rows:
if len(rows) > 1:
log.warning("found multiple UPC matches for {} in batch {}: {}".format(
upc, batch.id_str, batch))
row = rows[0]
aggregate_products = not bool(batch.truck_dump) # TODO: make this configurable?
if aggregate_products:
if len(rows) > 1:
log.warning("found multiple UPC matches for {} in batch {}: {}".format(
upc, batch.id_str, batch))
row = rows[0]
else:
other_row = rows[0]
row = model.PurchaseBatchRow()
row.product = other_row.product
self.handler.add_row(batch, row)
# TODO: is this necessary here? is so, then what about further below?
# self.handler.refresh_batch_status(batch)
else: