biz9-logic 4.9.12 → 4.9.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/biz9_config +1 -1
- package/index.js +1 -2
- package/package.json +1 -1
package/biz9_config
CHANGED
package/index.js
CHANGED
|
@@ -456,7 +456,7 @@ class Order_Logic {
|
|
|
456
456
|
parent_data_type:cart.parent_data_type,
|
|
457
457
|
user_id:cart.user_id,
|
|
458
458
|
cart_number:cart.cart_number,
|
|
459
|
-
grand_total:
|
|
459
|
+
grand_total:0,
|
|
460
460
|
order_item_list:[]
|
|
461
461
|
});
|
|
462
462
|
cart.cart_item_list.forEach(cart_item => {
|
|
@@ -481,7 +481,6 @@ class Order_Logic {
|
|
|
481
481
|
order_item.order_sub_item_list.push(order_sub_item);
|
|
482
482
|
});
|
|
483
483
|
order.order_item_list.push(order_item);
|
|
484
|
-
|
|
485
484
|
});
|
|
486
485
|
order = Order_Logic.get_total(order);
|
|
487
486
|
return order;
|