console.log('load stock');/* 分组ID:1,绑定的仓库ID:1,2,3,6,7
分组ID:2,绑定的仓库ID:8
查询的SKU:16BR272
原有总库存:55
分组1库存:55
分组2库存:0
分组3库存:0
分组4库存:0
Array ( [0] => Array ( [sku] => 16BR272 [sid] => 2 [price] => 2.00 [stockpos] => A141-3-2 [stock] => 55 [tem_stock] => 0 [sku_sales] => 225 [status] => 上架 ) ) 更新16BR272库存:55
16BR272,总库存:55
Array ( [16BR272] => Array ( [0] => 2 ) ) 写入1
写入3
写入6
写入7
写入8
Array ( [0] => Array ( [sku] => 16BR272 [sid] => 2 [price] => 2.00 [stockpos] => A141-3-2 [stock] => 55 [tem_stock] => 0 [sku_sales] => 225 [status] => 上架 ) [1] => Array ( [sku] => 16BR272 [sid] => 1 [price] => 0 [stockpos] => [stock] => 0 [sku_sales] => 0 ) [2] => Array ( [sku] => 16BR272 [sid] => 3 [price] => 0 [stockpos] => [stock] => 0 [sku_sales] => 0 ) [3] => Array ( [sku] => 16BR272 [sid] => 6 [price] => 0 [stockpos] => [stock] => 0 [sku_sales] => 0 ) [4] => Array ( [sku] => 16BR272 [sid] => 7 [price] => 0 [stockpos] => [stock] => 0 [sku_sales] => 0 ) [5] => Array ( [sku] => 16BR272 [sid] => 8 [price] => 0 [stockpos] => [stock] => 0 [sku_sales] => 0 ) ) {"sku":"16BR272","sid":"2","price":"2.00","stockpos":"A141-3-2","stock":"55","tem_stock":"0","sku_sales":225,"status":"\u4e0a\u67b6"}
{"sku":"16BR272","sid":1,"price":0,"stockpos":"","stock":0,"sku_sales":0}
{"sku":"16BR272","sid":3,"price":0,"stockpos":"","stock":0,"sku_sales":0}
{"sku":"16BR272","sid":6,"price":0,"stockpos":"","stock":0,"sku_sales":0}
{"sku":"16BR272","sid":7,"price":0,"stockpos":"","stock":0,"sku_sales":0}
{"sku":"16BR272","sid":8,"price":0,"stockpos":"","stock":0,"sku_sales":0}
更新分组:1,SKU:16BR272库存:55
更新分组:1,SKU:16BR272库存:0
更新分组:1,SKU:16BR272库存:0
更新分组:1,SKU:16BR272库存:0
更新分组:1,SKU:16BR272库存:0
更新分组:2,SKU:16BR272库存:0
分组ID:1,SKU:{"16BR272":55}
分组ID:2,SKU:{"16BR272":0}
update `gsp_goods` set goods_storage = case when goods_serial = '16BR272' then 55 END WHERE goods_serial IN ('16BR272')
update `gsp_goods` set goods_storage_1 = case when goods_serial = '16BR272' then 55 END WHERE goods_serial IN ('16BR272');
update `gsp_goods` set goods_storage_2 = case when goods_serial = '16BR272' then 0 END WHERE goods_serial IN ('16BR272');
success at 2024-05-08 12:22:36 */