From 4a36ab827cfbb27f843f7055683e67ac9fc3f706 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Sun, 18 Nov 2018 20:02:43 -0600 Subject: [PATCH] Expose "suggested price" for pricing batch row view --- tailbone/views/batch/pricing.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tailbone/views/batch/pricing.py b/tailbone/views/batch/pricing.py index f5c29c31..728420fc 100644 --- a/tailbone/views/batch/pricing.py +++ b/tailbone/views/batch/pricing.py @@ -105,6 +105,7 @@ class PricingBatchView(BatchMasterView): 'vendor', 'regular_unit_cost', 'discounted_unit_cost', + 'suggested_price', 'old_price', 'new_price', 'price_diff', @@ -150,6 +151,7 @@ class PricingBatchView(BatchMasterView): f.set_renderer('product', self.render_product) # currency fields + f.set_type('suggested_price', 'currency') f.set_type('old_price', 'currency') f.set_type('new_price', 'currency') f.set_type('price_diff', 'currency')