From b66af5903b33a591e0b851e16e417a7d5a9a64f0 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Wed, 27 Jun 2018 15:08:53 -0500 Subject: [PATCH] Add `invoice_total` column for purchase credits grid that probably isn't quite right, but at least is something --- tailbone/views/purchases/credits.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tailbone/views/purchases/credits.py b/tailbone/views/purchases/credits.py index c8b6f684..9b4e0255 100644 --- a/tailbone/views/purchases/credits.py +++ b/tailbone/views/purchases/credits.py @@ -58,6 +58,7 @@ class PurchaseCreditView(MasterView): 'size', 'cases_shorted', 'units_shorted', + 'invoice_total', 'credit_type', 'mispick_upc', 'date_received', @@ -82,6 +83,7 @@ class PurchaseCreditView(MasterView): # g.set_type('upc', 'gpc') g.set_type('cases_shorted', 'quantity') g.set_type('units_shorted', 'quantity') + g.set_type('invoice_total', 'currency') g.set_label('invoice_number', "Invoice No.") g.set_label('upc', "UPC")