update
This commit is contained in:
@@ -256,11 +256,11 @@ final class OrderImportRepository
|
||||
'INSERT INTO order_items (
|
||||
order_id, source_item_id, external_item_id, ean, sku, original_name, original_code,
|
||||
original_price_with_tax, original_price_without_tax, media_url, quantity, tax_rate, item_status,
|
||||
unit, item_type, source_product_id, source_product_set_id, sort_order, payload_json
|
||||
unit, item_type, source_product_id, source_product_set_id, sort_order, payload_json, personalization
|
||||
) VALUES (
|
||||
:order_id, :source_item_id, :external_item_id, :ean, :sku, :original_name, :original_code,
|
||||
:original_price_with_tax, :original_price_without_tax, :media_url, :quantity, :tax_rate, :item_status,
|
||||
:unit, :item_type, :source_product_id, :source_product_set_id, :sort_order, :payload_json
|
||||
:unit, :item_type, :source_product_id, :source_product_set_id, :sort_order, :payload_json, :personalization
|
||||
)'
|
||||
);
|
||||
|
||||
@@ -285,6 +285,7 @@ final class OrderImportRepository
|
||||
'source_product_set_id' => $row['source_product_set_id'] ?? null,
|
||||
'sort_order' => (int) ($row['sort_order'] ?? 0),
|
||||
'payload_json' => $this->encodeJson($row['payload_json'] ?? null),
|
||||
'personalization' => $row['personalization'] ?? null,
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user