修改文案显示 && 增加操作日志用户 && bug修复
This commit is contained in:
@@ -367,25 +367,7 @@ class Config extends BaseController
|
||||
修订本政策将通过弹窗公告通知。若您不同意修改,请停止使用服务;继续使用视为接受更新。重大变更时将显著提醒。
|
||||
</p>
|
||||
<p class="MsoNormal">
|
||||
<b>十、联系我们</b>
|
||||
</p>
|
||||
<p class="MsoNormal" style="text-indent:21.0000pt;">
|
||||
个人信息问题反馈:
|
||||
</p>
|
||||
<p class="MsoNormal" style="text-indent:21.0000pt;">
|
||||
<span>电话:</span><span>400-XXX-XXXX</span>
|
||||
</p>
|
||||
<p class="MsoNormal" style="text-indent:21.0000pt;">
|
||||
<span>邮箱:</span><span>privacy@pinganhaochebu.com</span>
|
||||
</p>
|
||||
<p class="MsoNormal" style="text-indent:21.0000pt;">
|
||||
<span>15</span><span>个工作日内回复,争议可向监管机构投诉。</span>
|
||||
</p>
|
||||
<p class="MsoNormal" style="text-indent:21.0000pt;">
|
||||
|
||||
</p>
|
||||
<p class="MsoNormal">
|
||||
<b>十一、附则</b>
|
||||
<b>十、附则</b>
|
||||
</p>
|
||||
<p class="MsoNormal" style="text-indent:21.0000pt;">
|
||||
本政策适用中国法律,争议提交厦门市湖里区人民法院管辖。
|
||||
@@ -566,7 +548,7 @@ class Config extends BaseController
|
||||
],
|
||||
"buy_contract" => [
|
||||
"title" => "查看示例",
|
||||
"content" => "https://img.liche.cn/space/agent/admin/202506/p_760ad21bfc51e60a6ebfb7db0d9dd9c9.jpg",
|
||||
"content" => "",
|
||||
"type" => 2
|
||||
],
|
||||
];
|
||||
|
||||
@@ -75,7 +75,10 @@ class Ucenter extends BaseController
|
||||
'price' => intval($v->price),
|
||||
'timeStart' => date('Y-m-d', strtotime($v->timeStart)),
|
||||
'timeEnd' => date('Y-m-d', strtotime($v->timeEnd)),
|
||||
'rule' => $autoProductCouponEntity->rule,
|
||||
'rule' => '<p>1. 购车补贴券只适用于平台指定的经销商门店</p>
|
||||
<p>2. 购车补贴券只适用于标注的品牌和车型,不同品牌或车型补贴券不通用</p>
|
||||
<p>3. 购车补贴券有效期90天,用户需在90天内完成购车方可享受补贴</p>
|
||||
<p>4. 完成购车后,需在30天内完成资料上传方可享受补贴</p>',
|
||||
'bizTip' => $v->getBizName(),
|
||||
'typeCn' => '好车补专项补贴',
|
||||
'btText' => $v->getBtText(),
|
||||
|
||||
@@ -603,7 +603,7 @@ class Cusorder extends Wxapp
|
||||
'if_insure' => $row['if_insure'],
|
||||
'if_equity' => $row['if_equity'],
|
||||
'delry_time' => date('Y-m-d', strtotime($row['delry_time'])),
|
||||
'money_json' => json_decode($row['money_json'], true),
|
||||
'money_json' => $row['money_json'] ? json_decode($row['money_json'], true) : [],
|
||||
'downpayment_type' => $row['downpayment_type'],
|
||||
'cardid' => $row['card_id'],
|
||||
'edit_info_status' => $edit_info_status,
|
||||
|
||||
@@ -1027,10 +1027,11 @@ class Customers extends Wxapp
|
||||
$logList = [];
|
||||
if ($param['show_log']) {
|
||||
$logRows = $this->customer_oplogs_model->select(['customer_id' => $val['id']], 'id desc', 1, 3,
|
||||
'id,log,type,c_time');
|
||||
'id,uname,log,type,c_time');
|
||||
if ($logRows) {
|
||||
foreach ($logRows as $key2 => $val2) {
|
||||
$logRows[$key2]['content'] = $val['type'] == 2 ? '拨打电话' : $val2['log'];
|
||||
$content = $val['type'] == 2 ? '拨打电话' : $val2['log'];
|
||||
$logRows[$key2]['content'] = "【" . $val2['uname'] . "】 " . $content;
|
||||
$logRows[$key2]['c_time'] = date('Y.m.d H:i', $val2['c_time']);
|
||||
}
|
||||
$logList = $logRows;
|
||||
|
||||
@@ -164,7 +164,7 @@ class AutoUserCouponEntity
|
||||
throw new Exception('更新核销码状态失败', API_CODE_FAIL);
|
||||
}
|
||||
//跟新客户为订单客户
|
||||
$this->receiver_customers_model->update(['status' => 3], ['id' => $customersRow['id']]);
|
||||
$this->ci->receiver_customers_model->update(['status' => 3], ['id' => $customersRow['id']]);
|
||||
$this->ci->db->trans_commit();
|
||||
return new MyRESPONSE(EXIT_SUCCESS, '核销成功');
|
||||
} catch (Exception $e) {
|
||||
|
||||
Reference in New Issue
Block a user