quguofeng 1 year ago
parent
commit
9f484f68cc

+ 1 - 1
app/common/repositories/store/order/StoreOrderRepository.php

@@ -435,7 +435,7 @@ class StoreOrderRepository extends BaseRepository
 
         Queue::push(SendSmsJob::class, ['tempId' => 'ORDER_PAY_SUCCESS', 'id' => $groupOrder->group_order_id]);
         Queue::push(SendSmsJob::class, ['tempId' => 'ADMIN_PAY_SUCCESS_CODE', 'id' => $groupOrder->group_order_id]);
-        //Queue::push(SendSmsJob::class, ['tempId' => 'PAY_PRESELL_CODE', 'id' => $groupOrder->group_order_id]);
+        Queue::push(SendSmsJob::class, ['tempId' => 'PAY_PERCENTAGE_CODE', 'id' => $groupOrder->group_order_id]);
         Queue::push(UserBrokerageLevelJob::class, ['uid' => $groupOrder->uid, 'type' => 'pay_money', 'inc' => $groupOrder->pay_price]);
         Queue::push(UserBrokerageLevelJob::class, ['uid' => $groupOrder->uid, 'type' => 'pay_num', 'inc' => 1]);
         app()->make(UserBrokerageRepository::class)->incMemberValue($groupOrder->uid, 'member_pay_num', $groupOrder->group_order_id);

+ 3 - 1
config/sms.php

@@ -77,7 +77,9 @@ return [
                 //商户申请退回保证金未通过 2.1
                 'REFUND_MARGIN_FAIL' => 710328,
                 //付费会员充值成功提醒 2.1
-                'SVIP_PAY_SUCCESS' => 856046
+                'SVIP_PAY_SUCCESS' => 856046,
+                //预售订单尾款支付 2.1
+                'PAY_PERCENTAGE_CODE' => 693516,
             ],
         ],
         //阿里云

+ 9 - 0
crmeb/services/SmsService.php

@@ -278,6 +278,15 @@ class SmsService
             case 'SVIP_PAY_SUCCESS':
                 self::create()->send($id['phone'], $tempId, ['store_name' => systemConfig('site_name'),'date' => $id['date']]);
                 break;
+                //百分比付款给用户通知
+            case 'PAY_PERCENTAGE_CODE':
+                $order = app()->make(StoreRefundOrderRepository::class)->get($id);
+                if (!$order || !$order->order->user_phone) return;
+                $residue_price = 100;
+                $time = '2023-05-09 12:00:00';
+                $order_id = $order->order->order_sn;
+                self::create()->send($order->order->user_phone, $tempId, compact('residue_price', 'time','order_id'));
+                break;
         }
     }