From bded87e5e09fda2cc39bd5d0ee820a3c6d2c3d0c Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Sat, 13 Jul 2024 17:54:48 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E4=BA=86=E8=AE=A2?= =?UTF-8?q?=E5=8D=95=E6=94=AF=E4=BB=98=E7=B1=BB=E5=9E=8B=E4=BD=99=E9=A2=9D?= =?UTF-8?q?=E4=B8=8D=E8=B6=B3=E7=9A=84=E5=BC=82=E5=B8=B8=E5=A4=84=E7=90=86?= =?UTF-8?q?=E5=92=8C=E9=97=A8=E5=BA=97=E7=BB=9F=E8=AE=A1=E7=9B=B8=E5=85=B3?= =?UTF-8?q?=E5=8A=9F=E8=83=BD=E7=9A=84=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/logic/order/OrderLogic.php | 3 + app/statistics/controller/IndexController.php | 78 +++++++++++++------ 2 files changed, 57 insertions(+), 24 deletions(-) diff --git a/app/api/logic/order/OrderLogic.php b/app/api/logic/order/OrderLogic.php index 2e98524d..ad7de541 100644 --- a/app/api/logic/order/OrderLogic.php +++ b/app/api/logic/order/OrderLogic.php @@ -296,6 +296,9 @@ class OrderLogic extends BaseLogic if ($params['shipping_type'] == 2) { $_order['status'] = 1; } + if ($_order['pay_type']==PayEnum::BALANCE_PAY && $user!=null&&$user['now_money'] < $_order['pay_price']) { + throw new \Exception('余额不足'); + } //生成核销码 $generator = new BarcodeGeneratorPNG(); $barcode = $generator->getBarcode($verify_code, $generator::TYPE_CODE_128); diff --git a/app/statistics/controller/IndexController.php b/app/statistics/controller/IndexController.php index c6884770..1723c937 100644 --- a/app/statistics/controller/IndexController.php +++ b/app/statistics/controller/IndexController.php @@ -5,8 +5,10 @@ namespace app\statistics\controller; use app\admin\logic\statistic\TradeStatisticLogic; use app\common\controller\BaseLikeController; use app\common\model\store_branch_product\StoreBranchProduct; +use app\common\model\store_order\StoreOrder; use app\common\model\store_order_cart_info\StoreOrderCartInfo; use app\common\model\store_product\StoreProduct; +use app\common\model\system_store\SystemStore; use app\common\model\user\User; use app\common\model\user_recharge\UserRecharge; use app\statistics\logic\OrderLogic; @@ -63,35 +65,36 @@ class IndexController extends BaseLikeController /** * 门店统计 */ - public function sotre_count(){ - $data=[ - ['street_name'=>'喻寺镇','merchant_count'=>1], - ['street_name'=>'立石镇','merchant_count'=>1], - ['street_name'=>'百和镇','merchant_count'=>1], - ['street_name'=>'得胜镇','merchant_count'=>1], - ['street_name'=>'玄滩镇','merchant_count'=>1], - ['street_name'=>'云锦镇','merchant_count'=>1], + public function sotre_count() + { + $data = [ + ['street_name' => '喻寺镇', 'merchant_count' => 1], + ['street_name' => '立石镇', 'merchant_count' => 1], + ['street_name' => '百和镇', 'merchant_count' => 1], + ['street_name' => '得胜镇', 'merchant_count' => 1], + ['street_name' => '玄滩镇', 'merchant_count' => 1], + ['street_name' => '云锦镇', 'merchant_count' => 1], ]; - return $this->success('ok', ['merchatCountList'=>$data,'merchantTotalCount'=>count($data)]); + return $this->success('ok', ['merchatCountList' => $data, 'merchantTotalCount' => count($data)]); } - public function product_count_sotre_count(){ - $data=[ - ['street_name'=>'喻寺镇','product_count'=>1], - ['street_name'=>'立石镇','product_count'=>1], - ['street_name'=>'百和镇','product_count'=>1], - ['street_name'=>'得胜镇','product_count'=>1], - ['street_name'=>'玄滩镇','product_count'=>1], - ['street_name'=>'云锦镇','product_count'=>1], + public function product_count_sotre_count() + { + $data = [ + ['street_name' => '喻寺镇', 'product_count' => 1], + ['street_name' => '立石镇', 'product_count' => 1], + ['street_name' => '百和镇', 'product_count' => 1], + ['street_name' => '得胜镇', 'product_count' => 1], + ['street_name' => '玄滩镇', 'product_count' => 1], + ['street_name' => '云锦镇', 'product_count' => 1], ]; - $townProductCount=StoreProduct::count(); - $product_count=StoreBranchProduct::group('product_id')->order('total_sales desc')->limit(20)->field('image,product_id,store_name,sum(sales) as total_sales')->select(); - $productRankingTotal=0; - foreach($product_count as $item){ - $productRankingTotal+=$item['total_sales']; + $townProductCount = StoreProduct::count(); + $product_count = StoreBranchProduct::group('product_id')->order('total_sales desc')->limit(20)->field('image,product_id,store_name,sum(sales) as total_sales')->select(); + $productRankingTotal = 0; + foreach ($product_count as $item) { + $productRankingTotal += $item['total_sales']; } - return $this->success('ok', ['townProductCountList'=>$data,'productRankingList'=>$product_count,'townProductCount'=>$townProductCount,'productRankingTotal'=>$productRankingTotal]); - + return $this->success('ok', ['townProductCountList' => $data, 'productRankingList' => $product_count, 'townProductCount' => $townProductCount, 'productRankingTotal' => $productRankingTotal]); } public function user() { @@ -222,4 +225,31 @@ class IndexController extends BaseLikeController } return $this->success('ok', $res); } + + public function store_order_day() + { + $arr = SystemStore::where('is_show', 1)->field('id,name street_name')->select() + ->each(function($item){ + $res = StoreOrder::where('paid', 1)->where('refund_status', 0)->where('store_id', $item['id'])->whereDay('create_time')->field('count(id) count,sum(pay_price) price')->find(); + $month = StoreOrder::where('paid', 1)->where('refund_status', 0)->where('store_id', $item['id'])->whereMonth('create_time')->field('count(id) count,sum(pay_price) price')->find(); + $item['dayOrderAmount']=$res['price']??0; + $item['dayOrderCount']=$res['count']??0; + $item['monthOrderAmount']=$month['price']??0; + $item['monthOrderCount']=$month['count']??0; + return $item; + }); + return $this->success('ok', $arr?->toArray()); + } + public function store_order_day_two() + { + $arr = SystemStore::where('is_show', 1)->field('id,name street_name')->select() + ->each(function($item){ + $today_order_amount = StoreOrder::where('paid', 1)->where('refund_status', 0)->where('store_id', $item['id'])->whereDay('create_time')->sum('pay_price'); + $yesterday_order_amount = StoreOrder::where('paid', 1)->where('refund_status', 0)->where('store_id', $item['id'])->whereMonth('create_time','yesterday')->sum('pay_price'); + $item['today_order_amount']=$today_order_amount; + $item['yesterday_order_amount']=$yesterday_order_amount; + return $item; + }); + return $this->success('ok', $arr?->toArray()); + } }