We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8721f0a + 15b0e00 commit 6199c92Copy full SHA for 6199c92
classes/Rees46/Events.php
@@ -87,7 +87,7 @@ public static function OnSaleOrderSavedHandler(Event $event)
87
if ( (int)$item['QUANTITY'] > 0 ) {
88
$products[] = (object)([
89
'id' => $item['PRODUCT_ID'],
90
- 'amount' => $item['QUANTITY'],
+ 'quantity' => $item['QUANTITY'],
91
'price' => $item['PRICE']
92
]);
93
}
install/version.php
@@ -1,5 +1,5 @@
1
<?php
2
$arModuleVersion = array(
3
- 'VERSION' => '3.5.0',
4
- 'VERSION_DATE' => '2024-06-11 12:00:00',
+ 'VERSION' => '3.5.1',
+ 'VERSION_DATE' => '2024-08-14 12:00:00',
5
);
update/3.5.1/description.ru
@@ -0,0 +1,3 @@
+<ul>
+ <li>Обновление структуры данных: замена amount на quantity в массиве товаров заказа</li>
+</ul>
0 commit comments