Expose price_diff_percent
, margin_diff
for pricing batch row
This commit is contained in:
parent
342c7c3854
commit
4806d7e5fe
|
@ -78,6 +78,7 @@ class PricingBatchView(BatchMasterView):
|
||||||
'upc': "UPC",
|
'upc': "UPC",
|
||||||
'regular_unit_cost': "Reg. Cost",
|
'regular_unit_cost': "Reg. Cost",
|
||||||
'price_diff': "$ Diff",
|
'price_diff': "$ Diff",
|
||||||
|
'price_diff_percent': "% Diff",
|
||||||
'brand_name': "Brand",
|
'brand_name': "Brand",
|
||||||
'price_markup': "Markup",
|
'price_markup': "Markup",
|
||||||
'manually_priced': "Manual",
|
'manually_priced': "Manual",
|
||||||
|
@ -94,6 +95,7 @@ class PricingBatchView(BatchMasterView):
|
||||||
'new_price',
|
'new_price',
|
||||||
'price_margin',
|
'price_margin',
|
||||||
'price_diff',
|
'price_diff',
|
||||||
|
'price_diff_percent',
|
||||||
'manually_priced',
|
'manually_priced',
|
||||||
'status_code',
|
'status_code',
|
||||||
]
|
]
|
||||||
|
@ -114,8 +116,10 @@ class PricingBatchView(BatchMasterView):
|
||||||
'old_price',
|
'old_price',
|
||||||
'new_price',
|
'new_price',
|
||||||
'price_diff',
|
'price_diff',
|
||||||
|
'price_diff_percent',
|
||||||
'price_margin',
|
'price_margin',
|
||||||
'price_markup',
|
'price_markup',
|
||||||
|
'margin_diff',
|
||||||
'status_code',
|
'status_code',
|
||||||
'status_text',
|
'status_text',
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue