From 342a5b74f7afc416502b2dda8a04c72359bca44d Mon Sep 17 00:00:00 2001 From: luofei <604446095@qq.com> Date: Mon, 22 May 2023 13:52:15 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E6=8A=BC=E9=87=91=E8=87=AA?= =?UTF-8?q?=E5=8A=A8=E6=89=A3=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../store/order/StoreOrderRepository.php | 4 +- .../system/financial/FinancialRepository.php | 20 +++--- .../system/merchant/MerchantRepository.php | 17 +++-- .../system/serve/ServeOrderRepository.php | 4 ++ crmeb/jobs/AutoMarginJob.php | 67 +++++++++++++++++++ 5 files changed, 96 insertions(+), 16 deletions(-) create mode 100644 crmeb/jobs/AutoMarginJob.php diff --git a/app/common/repositories/store/order/StoreOrderRepository.php b/app/common/repositories/store/order/StoreOrderRepository.php index 118555c3..6f12aa0a 100644 --- a/app/common/repositories/store/order/StoreOrderRepository.php +++ b/app/common/repositories/store/order/StoreOrderRepository.php @@ -38,6 +38,7 @@ use app\common\repositories\user\UserBillRepository; use app\common\repositories\user\UserBrokerageRepository; use app\common\repositories\user\UserMerchantRepository; use app\common\repositories\user\UserRepository; +use crmeb\jobs\AutoMarginJob; use crmeb\jobs\PayGiveCouponJob; use crmeb\jobs\ProductImportJob; use crmeb\jobs\SendSmsJob; @@ -53,7 +54,6 @@ use crmeb\services\SwooleTaskService; use Exception; use FormBuilder\Factory\Elm; use FormBuilder\Form; -use http\Exception\InvalidArgumentException; use think\db\exception\DataNotFoundException; use think\db\exception\DbException; use think\db\exception\ModelNotFoundException; @@ -485,7 +485,7 @@ class StoreOrderRepository extends BaseRepository 'mer_id' => $order->mer_id, 'financial_record_sn' => $financeSn . $index ]; - $merchant->save(['paid_margin' => bcadd($merchant['paid_margin'], $margin, 2)]); + Queue::push(AutoMarginJob::class, ['merId' => $order->mer_id, 'margin' => $margin]); } } diff --git a/app/common/repositories/system/financial/FinancialRepository.php b/app/common/repositories/system/financial/FinancialRepository.php index 04148751..ae192965 100644 --- a/app/common/repositories/system/financial/FinancialRepository.php +++ b/app/common/repositories/system/financial/FinancialRepository.php @@ -317,14 +317,14 @@ class FinancialRepository extends BaseRepository $res = app()->make(MerchantRepository::class)->get($merId); if ($res['is_margin'] == -1) throw new ValidateException('请勿重复申请'); - if (!in_array($res['is_margin'],[10,-10]) || $res['margin'] <= 0) + if (!in_array($res['is_margin'],[10,-10]) || $res['paid_margin'] <= 0) throw new ValidateException('无可退保证金'); $order = app()->make(ServeOrderRepository::class)->getWhere([ - 'mer_id' => $res['mer_id'], - 'status' => 1, - 'type' => 10, - ]); + 'mer_id' => $res['mer_id'], + 'status' => 1, + 'type' => 10, + ]); if (!$order) throw new ValidateException('未查询到支付订单'); $financial_account = [ 'name' => '保证金退款', @@ -341,7 +341,7 @@ class FinancialRepository extends BaseRepository 'mer_id' => $merId, 'mer_money' => 0, 'financial_sn' => $sn, - 'extract_money' => $res['margin'], + 'extract_money' => $res['paid_margin'], 'financial_type' => 1, 'financial_account' => json_encode($financial_account,JSON_UNESCAPED_UNICODE), 'financial_status' => 0, @@ -373,7 +373,7 @@ class FinancialRepository extends BaseRepository $where['is_del'] = 0; $query = $this->dao->search($where)->with([ 'merchant' => function($query){ - $query->field('mer_id,mer_name,is_trader,mer_avatar,type_id,mer_phone,mer_address,is_margin,margin,real_name'); + $query->field('mer_id,mer_name,is_trader,mer_avatar,type_id,mer_phone,mer_address,is_margin,margin,real_name,paid_margin'); $query->with([ 'merchantType', 'marginOrder' => function($query){ @@ -383,7 +383,9 @@ class FinancialRepository extends BaseRepository } ]); $count = $query->count(); - $list = $query->page($page, $limit)->select(); + $list = $query->page($page, $limit)->select()->each(function ($item){ + return $item->merchant->margin = $item->merchant->paid_margin; + }); return compact('count','list'); } @@ -629,7 +631,7 @@ class FinancialRepository extends BaseRepository break; } - return $this->dao->update($id, $data); + return $this->dao->update($id, $data); } public function refundShow($id) diff --git a/app/common/repositories/system/merchant/MerchantRepository.php b/app/common/repositories/system/merchant/MerchantRepository.php index cd6ecbb7..eb531ce3 100644 --- a/app/common/repositories/system/merchant/MerchantRepository.php +++ b/app/common/repositories/system/merchant/MerchantRepository.php @@ -57,6 +57,12 @@ use think\Model; class MerchantRepository extends BaseRepository { + const WithoutMargin = 0; //不需要保证金 + const NeedMargin = 1; //需要保证金 + const PaidMargin = 10; //已支付保证金 + const RefundMargin = -1; //申请退还保证金 + const RefuseMargin = -10; //拒绝退还保证金 + /** * MerchantRepository constructor. * @param MerchantDao $dao @@ -598,8 +604,8 @@ class MerchantRepository extends BaseRepository $form->setRule([ Elm::input('mer_name', '商户名称', $merchant->mer_name)->disabled(true), Elm::input('mer_id', '商户ID', $merchant->mer_id)->disabled(true), - Elm::input('margin', '商户剩余保证金', $merchant->margin)->disabled(true), - Elm::number('number', '保证金扣除金额', 0)->max($merchant->margin)->precision(2)->required(), + Elm::input('margin', '商户剩余保证金', $merchant->paid_margin)->disabled(true), + Elm::number('number', '保证金扣除金额', 0)->max($merchant->paid_margin)->precision(2)->required(), Elm::text('mark', '保证金扣除原因')->required(), ]); return $form->setTitle('扣除保证金'); @@ -622,14 +628,15 @@ class MerchantRepository extends BaseRepository throw new ValidateException('扣除保证金额不能小于0'); } - if (bccomp($merechant->margin, $data['number'], 2) == -1) { + if (bccomp($merechant->paid_margin, $data['number'], 2) == -1) { throw new ValidateException('扣除保证金额不足'); } - $data['balance'] = bcsub($merechant->margin, $data['number'], 2); + $data['balance'] = bcsub($merechant->paid_margin, $data['number'], 2); Db::transaction(function () use ($merechant, $data) { - $merechant->margin = $data['balance']; + $merechant->paid_margin = $data['balance']; + $merechant->ot_margin = $data['balance']; $merechant->save(); app()->make(UserBillRepository::class)->bill(0, 'mer_margin', $data['type'], 0, $data); }); diff --git a/app/common/repositories/system/serve/ServeOrderRepository.php b/app/common/repositories/system/serve/ServeOrderRepository.php index 77dce61d..d0d02a85 100644 --- a/app/common/repositories/system/serve/ServeOrderRepository.php +++ b/app/common/repositories/system/serve/ServeOrderRepository.php @@ -43,6 +43,10 @@ class ServeOrderRepository extends BaseRepository //同城配送delivery const TYPE_DELIVERY = 20; + const PAY_TYPE_WECHAT = 1; //微信支付 + const PAY_TYPE_ALI = 2; //支付宝支付 + const PAY_TYPE_BALANCE = 3; //余额支付 + /** * TODO 购买一号通 支付 diff --git a/crmeb/jobs/AutoMarginJob.php b/crmeb/jobs/AutoMarginJob.php new file mode 100644 index 00000000..7f591f73 --- /dev/null +++ b/crmeb/jobs/AutoMarginJob.php @@ -0,0 +1,67 @@ + +// +---------------------------------------------------------------------- + + +namespace crmeb\jobs; + + +use app\common\dao\system\serve\ServeOrderDao; +use app\common\repositories\store\order\StoreOrderRepository; +use app\common\repositories\system\merchant\MerchantRepository; +use app\common\repositories\system\serve\ServeOrderRepository; +use crmeb\interfaces\JobInterface; +use think\facade\Log; + +class AutoMarginJob implements JobInterface +{ + + public function fire($job, $data) + { + Log::info('utoMarginStart:' . var_export($data, 1)); + try { + $merchant = app()->make(MerchantRepository::class)->get($data['merId']); + $orderInfo = [ + 'type_id' => $merchant['type_id'], + 'is_margin' => $merchant['is_margin'], + 'margin' => $data['margin'], + ]; + $values = [ + 'status' => 1, + 'is_del' => 0, + 'mer_id' => $merchant['mer_id'], + 'type' => ServeOrderRepository::TYPE_MARGIN, + 'meal_id'=> $merchant['type_id'], + 'pay_type' => ServeOrderRepository::PAY_TYPE_BALANCE, + 'order_info' => json_encode($orderInfo,JSON_UNESCAPED_UNICODE), + 'pay_price' => $data['margin'], + ]; + $values['order_sn'] = app()->make(StoreOrderRepository::class)->getNewOrderId('cs'); + $values['pay_time'] = date('y_m-d H:i:s', time()); + if (!app()->make(ServeOrderDao::class)->create($values)) { + throw new \Exception('serve_order 保存出错'); + } + $merchant->paid_margin = bcadd($data['margin'], $merchant->paid_margin, 2); + $merchant->ot_margin = $merchant->paid_margin; + $merchant->is_margin = MerchantRepository::PaidMargin; + $merchant->save(); + } catch (\Exception $exception) { + Log::info('更新商户保证金出错:' . var_export($exception, 1)); + } finally { + Log::info('autoMarginEnd:' . var_export($data, 1)); + } + } + + public function failed($data) + { + // TODO: Implement failed() method. + } +}