@bee-hole/server 1.43.15 → 1.43.16

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/main.exe CHANGED
Binary file
package/mainD CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bee-hole/server",
3
- "version": "1.43.15",
3
+ "version": "1.43.16",
4
4
  "description": "www.bee-hole.com",
5
5
  "main": "index.js",
6
6
  "directories": {
@@ -1,2 +1,5 @@
1
1
  UPDATE `admin_menu` SET `path`='/supplyProduct' WHERE (`name`='app.menus.left.supply.productSupply' AND `code`='productSupply');
2
2
  UPDATE `admin_menu` SET `icon` = 'bars', `status` = '1' WHERE `admin_menu`.`id` = 2096;
3
+ ALTER TABLE mall_stockchange_log ADD status TINYINT NOT NULL COMMENT '默认0未支付,1已支付';
4
+ ALTER TABLE mall_stockchange_log MODIFY status TINYINT NOT NULL COMMENT '默认0未支付,1已支付' AFTER change_quantity;
5
+ UPDATE mall_stockchange_log AS a INNER JOIN mall_order AS b ON b.order_id = a.order_id SET a.status = CASE WHEN b.status = 'ORDER_WAIT_PAYMENT' THEN 0 ELSE 1 END;
package/version CHANGED
@@ -1 +1 @@
1
- v1.43.15
1
+ v1.43.16