From 5cd73f3f40aec161ed0dc5117eebdc813a5f06cb Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Fri, 19 Jul 2024 11:32:20 +0800 Subject: [PATCH] =?UTF-8?q?feat(ProductLogic):=20=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E7=BB=9F=E8=AE=A1=E9=80=BB=E8=BE=91=E4=BD=BF=E7=94=A8=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E5=BA=93=E8=BF=9E=E6=8E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/statistics/logic/ProductLogic.php | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/app/statistics/logic/ProductLogic.php b/app/statistics/logic/ProductLogic.php index ad7d4c54..87d9f3c1 100644 --- a/app/statistics/logic/ProductLogic.php +++ b/app/statistics/logic/ProductLogic.php @@ -6,24 +6,25 @@ use app\common\logic\BaseLogic; use app\common\model\store_branch_product\StoreBranchProduct; use app\common\model\store_product\StoreProduct; use app\common\model\system_store\SystemStore; +use think\facade\Db; class ProductLogic extends BaseLogic { public static function Count($where, $time) { if (isset($where['store_id']) && $where['store_id'] > 0) { - $todayProductCount = StoreBranchProduct::where($where)->whereDay('create_time', $time)->count(); - $yestertodayProductCount = StoreBranchProduct::where($where)->where('create_time', '<', strtotime($time) - 1)->count(); - $todayNewProductCount = StoreBranchProduct::where($where)->whereDay('create_time', $time)->count(); - $yestertodayNewProductCount = StoreBranchProduct::where($where)->whereDay('create_time', date('Y-m-d', strtotime($time) - 1))->count(); + $todayProductCount = Db::connect('demo')->name('store_branch_product')->where($where)->whereDay('create_time', $time)->count(); + $yestertodayProductCount = Db::connect('demo')->name('store_branch_product')->where($where)->where('create_time', '<', strtotime($time) - 1)->count(); + $todayNewProductCount = Db::connect('demo')->name('store_branch_product')->where($where)->whereDay('create_time', $time)->count(); + $yestertodayNewProductCount = Db::connect('demo')->name('store_branch_product')->where($where)->whereDay('create_time', date('Y-m-d', strtotime($time) - 1))->count(); $where['id']=$where['store_id']; unset($where['store_id']); } else { - $todayProductCount = StoreProduct::whereDay('create_time', $time)->count(); - $yestertodayProductCount = StoreProduct::count(); + $todayProductCount = Db::connect('demo')->name('store_product')->whereDay('create_time', $time)->count(); + $yestertodayProductCount = Db::connect('demo')->name('store_product')->count(); - $todayNewProductCount = StoreProduct::whereDay('create_time', $time)->count(); - $yestertodayNewProductCount = StoreProduct::whereDay('create_time', date('Y-m-d', strtotime($time) - 1))->count(); + $todayNewProductCount = Db::connect('demo')->name('store_product')->whereDay('create_time', $time)->count(); + $yestertodayNewProductCount = Db::connect('demo')->name('store_product')->whereDay('create_time', date('Y-m-d', strtotime($time) - 1))->count(); } if ($yestertodayProductCount == 0 || $todayProductCount == 0) { @@ -63,7 +64,7 @@ class ProductLogic extends BaseLogic public static function sales($where) { - $select = StoreBranchProduct::where($where)->limit(10)->order('sales desc')->field('id,store_name,image,sales')->select(); + $select = Db::connect('demo')->name('store_branch_product')->where($where)->limit(10)->order('sales desc')->field('id,store_name,image,sales')->select(); return $select?->toArray(); } }