Исправлен пересчет весовых товаров в онлайн реализации
This commit is contained in:
miroman-afk
2023-08-15 10:54:39 +03:00
parent 468cb21e40
commit a7c1679d12
6 changed files with 76 additions and 34 deletions

View File

@@ -29,7 +29,7 @@ class ExchangeOrders extends Model
->first();
$start_order_info[] = array(
'code' => intval($start_order_item['more']),
'count' => floatval($start_order_item['value']),
'count' => Base::tofloat($start_order_item['value']),
'sale_price' => $item['sale_price'],
'special_price' => $item['special_price']
);