|
@@ -128,11 +128,19 @@ class OrdersController extends BaseController
|
|
|
$user = User::getUser($this->uid);
|
|
|
$sendOrderId = getProp($user, 'send_order_id');
|
|
|
if ($sendOrderId) {
|
|
|
- // 方夏青的派单使用,男频充值模板
|
|
|
+ // 获取快应用账号
|
|
|
$qappSendOrder = QappSendOrder::getSendOrderById($sendOrderId);
|
|
|
- if (getProp($qappSendOrder, 'account') === 'fangxq') {
|
|
|
+ $account = getProp($qappSendOrder, 'account');
|
|
|
+
|
|
|
+ // 方夏青的派单使用,男频充值模板
|
|
|
+ if ($account === 'fangxq') {
|
|
|
$template_id = 10666;
|
|
|
}
|
|
|
+
|
|
|
+ // 蒋佳芯
|
|
|
+ if ($account === 'jiangjx') {
|
|
|
+ $template_id = 10679;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
$book_config = null;
|