diff --git a/rattail_corepos/importing/corepos.py b/rattail_corepos/importing/corepos.py index 101c9ca..7d52d23 100644 --- a/rattail_corepos/importing/corepos.py +++ b/rattail_corepos/importing/corepos.py @@ -154,6 +154,7 @@ class ProductImporter(FromCOREPOS, importing.model.ProductImporter): 'subdepartment_number', 'regular_price_price', 'regular_price_multiple', + 'regular_price_type', 'food_stampable', 'tax1', ] @@ -192,4 +193,5 @@ class ProductImporter(FromCOREPOS, importing.model.ProductImporter): 'regular_price_price': price, 'regular_price_multiple': 1 if price is not None else None, + 'regular_price_type': self.enum.PRICE_TYPE_REGULAR if price is not None else None, }