Misc. tweaks per demo launch

This commit is contained in:
Lance Edgar 2021-01-20 23:14:41 -06:00
parent 950a153342
commit c633dcc666
3 changed files with 6 additions and 2 deletions

View file

@ -125,7 +125,7 @@ class ProductImporter(FromRattail, woocommerce_importing.model.ProductImporter):
return {
'id': woo_id,
'name': product.description,
'name': (product.description or '').strip().replace('&', '&') or 'Product',
'sku': product.item_id,
'regular_price': regular_price,
'sale_price': sale_price,