Fall back to empty string for some product fields, in Rattail -> CORE
This commit is contained in:
parent
cd93d3e36b
commit
c44dba6456
|
@ -204,8 +204,8 @@ class ProductImporter(FromRattail, corepos_importing.model.ProductImporter):
|
|||
return {
|
||||
'upc': product.item_id,
|
||||
'brand': product.brand.name if product.brand else '',
|
||||
'description': product.description or None,
|
||||
'size': product.size,
|
||||
'description': product.description or '',
|
||||
'size': product.size or '',
|
||||
'department': str(product.department.number) if product.department else None,
|
||||
'normal_price': '{:0.2f}'.format(product.regular_price.price) if product.regular_price else None,
|
||||
'foodstamp': '1' if product.food_stampable else '0',
|
||||
|
|
Loading…
Reference in a new issue