|
@@ -132,6 +132,7 @@ class OrdersController extends BaseController
|
|
|
$qappSendOrder = QappSendOrder::getSendOrderById($sendOrderId);
|
|
|
$account = getProp($qappSendOrder, 'account');
|
|
|
|
|
|
+ // 注意!!!以后模板id加10000内的,不然可能会和渠道自定义的冲突
|
|
|
// 方夏青的派单使用,男频充值模板
|
|
|
if ($account === 'fangxq') {
|
|
|
$template_id = 10666;
|
|
@@ -141,6 +142,10 @@ class OrdersController extends BaseController
|
|
|
if (in_array($account, ['jiangjx', 'yangzh'])) {
|
|
|
$template_id = 10679;
|
|
|
}
|
|
|
+ // 杨子航,zhoulj
|
|
|
+ if (in_array($account, ['18668420256'])) {
|
|
|
+ $template_id = 9998;
|
|
|
+ }
|
|
|
|
|
|
if (in_array($account, ['hanyh', 'liwh', 'caicf', 'wangdd', 'zhangtt', 'hanyh2', 'hanyh33','zhangtt2','zhangtt33','zhangtt4'])) {
|
|
|
$template_id = 9999;
|
|
@@ -170,6 +175,8 @@ class OrdersController extends BaseController
|
|
|
//TODO 长篇小数才有模板2
|
|
|
$uid = $this->uid;
|
|
|
$is_first_recharge = OrderService::judgeUserFirstRecharge($uid);
|
|
|
+
|
|
|
+ \Log::info('qappchargeList:uid:'.$uid.' send_order_id:'.$sendOrderId.' template_id:'.$template_id.' is_first_recharge:'.$is_first_recharge);
|
|
|
|
|
|
$data = [];
|
|
|
$appad = 0;
|