refactor(app): 优化 DemoLogic 中数据库操作

- 将 StoreProduct 模型替换为 Db 类直接操作 'store_product' 表
- 保留原有的逻辑和功能不变
This commit is contained in:
mkm 2025-01-04 22:49:44 +08:00
parent dfdb3256dc
commit 3310584ca0

View File

@ -13,7 +13,7 @@ class DemoLogic extends BaseLogic
$arr = Db::name('ceshi_two')->select();
foreach ($arr as $k => $v) {
//门店供货、商户、零售
$res=StoreProduct::where('id', $v['product_id'])->update(['purchase' => $v['price'], 'cost' => bcadd($v['price1'], 0, 2), 'vip_price' => bcadd($v['price1'], 0, 2), 'price' => bcadd($v['price6'], 0, 2)]);
$res=Db::name('store_product')->where('id', $v['product_id'])->update(['purchase' => $v['price'], 'cost' => bcadd($v['price1'], 0, 2), 'vip_price' => bcadd($v['price1'], 0, 2), 'price' => bcadd($v['price6'], 0, 2)]);
if($res){
Db::name('ceshi_two')->where('product_id', $v['product_id'])->update(['status' => 1]);
}