|
@@ -127,13 +127,11 @@ class OrdersController extends BaseController
|
|
|
// 获取派单id
|
|
|
$user = User::getUser($this->uid);
|
|
|
$sendOrderId = getProp($user, 'send_order_id');
|
|
|
- myLog('chargeList')->info('1', [$this->uid, $sendOrderId]);
|
|
|
if ($sendOrderId) {
|
|
|
// 获取快应用账号
|
|
|
$qappSendOrder = QappSendOrder::getSendOrderById($sendOrderId);
|
|
|
$account = getProp($qappSendOrder, 'account');
|
|
|
|
|
|
- myLog('chargeList')->info('2', [$this->uid, $sendOrderId, $account]);
|
|
|
// 方夏青的派单使用,男频充值模板
|
|
|
if ($account === 'fangxq') {
|
|
|
$template_id = 10666;
|
|
@@ -159,7 +157,6 @@ class OrdersController extends BaseController
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- myLog('chargeList')->info('3', [$this->uid, $sendOrderId, $account, $template_id]);
|
|
|
$res = ProductService::getChargeProduct($template_id);
|
|
|
if (!$res) {
|
|
|
return response()->error('WAP_SYS_ERROR');
|