Import Price Bug Fix

This commit is contained in:
AzureAD\SylvainDUVERNAY
2026-06-03 09:41:52 +02:00
parent 7df570c860
commit a6e90f6e8b

View File

@@ -150,7 +150,7 @@ class ImportPrices(Wizard):
'errors': [], 'errors': [],
} }
for row_number, row in enumerate(rows, start=2): for index, row in enumerate(rows, start=2):
row_number = row.get('_row_number', index) row_number = row.get('_row_number', index)
price_index = (row.get('price_index') or '').strip() price_index = (row.get('price_index') or '').strip()
try: try: