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.
Files changed (3) hide show
  1. package/biz9_config +1 -1
  2. package/index.js +1 -2
  3. package/package.json +1 -1
package/biz9_config CHANGED
@@ -1,4 +1,4 @@
1
- VERSION='8.8.2'
1
+ VERSION='8.8.3'
2
2
  TITLE='BiZ9-Logic';
3
3
  REPO='git@github.com:biz9framework/biz9-logic.git';
4
4
  BRANCH='main';
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:cart.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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "biz9-logic",
3
- "version": "4.9.12",
3
+ "version": "4.9.13",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"