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')