diff --git a/tailbone/views/batch/pricing.py b/tailbone/views/batch/pricing.py index c3991412..cd09f96d 100644 --- a/tailbone/views/batch/pricing.py +++ b/tailbone/views/batch/pricing.py @@ -90,6 +90,8 @@ class PricingBatchView(BatchMasterView): if row.status_code in (row.STATUS_PRICE_INCREASE, row.STATUS_PRICE_DECREASE): attrs['class_'] = 'notice' + elif row.status_code == row.STATUS_CANNOT_CALCULATE_PRICE: + attrs['class_'] = 'warning' return attrs def _preconfigure_row_fieldset(self, fs):