Clean up some purchasing views

This commit is contained in:
Lance Edgar 2020-03-19 14:36:43 -05:00
parent 3223a77cb1
commit ad9c193061
2 changed files with 9 additions and 1 deletions

View file

@ -520,7 +520,7 @@ class PurchasingBatchView(BatchMasterView):
elif purchase.status == self.enum.PURCHASE_STATUS_RECEIVED:
date = purchase.date_received
total = purchase.invoice_total
return '{} for ${:0,.2f} ({})'.format(date, total, purchase.department or purchase.buyer)
return '{} for ${:0,.2f} ({})'.format(date, total or 0, purchase.department or purchase.buyer)
def get_batch_kwargs(self, batch, mobile=False):
kwargs = super(PurchasingBatchView, self).get_batch_kwargs(batch, mobile=mobile)