| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <?php
- // +----------------------------------------------------------------------
- // | likeadmin快速开发前后端分离管理后台(PHP版)
- // +----------------------------------------------------------------------
- // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
- // | 开源版本可自由商用,可去除界面版权logo
- // | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
- // | github下载:https://github.com/likeshop-github/likeadmin
- // | 访问官网:https://www.likeadmin.cn
- // | likeadmin团队 版权所有 拥有最终解释权
- // +----------------------------------------------------------------------
- // | author: likeadminTeam
- // +----------------------------------------------------------------------
- namespace app\common\logic;
- use app\common\enum\PayEnum;
- use app\common\enum\user\AccountLogEnum;
- use app\common\enum\WorkEnum;
- use app\common\model\recharge\RechargeOrder;
- use app\common\model\user\User;
- use app\common\model\works\ServiceWork;
- use think\facade\Db;
- use think\facade\Log;
- /**
- * 支付成功后处理订单状态
- * Class PayNotifyLogic
- * @package app\api\logic
- */
- class PayNotifyLogic extends BaseLogic
- {
- public static function handle($action, $orderSn, $extra = [])
- {
- Db::startTrans();
- try {
- self::$action($orderSn, $extra);
- Db::commit();
- return true;
- } catch (\Exception $e) {
- Db::rollback();
- Log::write(implode('-', [
- __CLASS__,
- __FUNCTION__,
- $e->getFile(),
- $e->getLine(),
- $e->getMessage()
- ]));
- self::setError($e->getMessage());
- return $e->getMessage();
- }
- }
- /**
- * @notes 充值回调
- * @param $orderSn
- * @param array $extra
- */
- public static function recharge($orderSn, array $extra = [])
- {
- $order = RechargeOrder::where('sn', $orderSn)->findOrEmpty();
- // 增加用户累计充值金额及用户余额
- $user = User::findOrEmpty($order->user_id);
- $user->total_recharge_amount += $order->order_amount;
- $user->user_money += $order->order_amount;
- $user->save();
- // 记录账户流水
- AccountLogLogic::add(
- $order->user_id,
- AccountLogEnum::UM_INC_RECHARGE,
- AccountLogEnum::INC,
- $order->order_amount,
- $order->sn,
- '用户充值'
- );
- // 更新充值订单状态
- $order->transaction_id = $extra['transaction_id'] ?? '';
- $order->pay_status = PayEnum::ISPAID;
- $order->pay_time = time();
- $order->save();
- }
- /**
- * @notes 服务回调
- * @param $orderSn
- * @param array $extra
- */
- public static function goods($orderSn, array $extra = [])
- {
- $order = RechargeOrder::where('sn', $orderSn)->findOrEmpty();
- // 更新充值订单状态
- $order->transaction_id = $extra['transaction_id'] ?? '';
- $order->pay_status = PayEnum::ISPAID;
- $order->pay_time = time();
- $order->save();
- $work = ServiceWork::findOrEmpty($order->work_id);
- $work->work_pay_status = WorkEnum::IS_PAY_STATUS;
- $orders = \app\common\model\orders\RechargeOrder::where(['work_id'=>$order->work_id])->select()->toArray();
- $order_total = 0;
- $order_amount = 0;
- foreach ($orders as $k=>$v){
- $order_total += $v['order_total'];
- $order_amount += $v['order_amount'];
- }
- $work->work_total = $order_total;
- $work->work_amount = $order_amount;
- $work->work_status = 7;
- $work->user_confirm_status = 5;
- $work->service_status = 3;
- $work->work_pay_status = 1;
- $work->finished_time = time();
- $work->save();
- }
- }
|