diff --git a/agent/admin/controllers/auto/Config.php b/agent/admin/controllers/auto/Config.php index 983719a8..96c9b8a5 100644 --- a/agent/admin/controllers/auto/Config.php +++ b/agent/admin/controllers/auto/Config.php @@ -367,25 +367,7 @@ class Config extends BaseController 修订本政策将通过弹窗公告通知。若您不同意修改,请停止使用服务;继续使用视为接受更新。重大变更时将显著提醒。

- 十、联系我们 -

-

- 个人信息问题反馈: -

-

- 电话:400-XXX-XXXX -

-

- 邮箱:privacy@pinganhaochebu.com -

-

- 15个工作日内回复,争议可向监管机构投诉。 -

-

-   -

-

- 十一、附则 + 十、附则

本政策适用中国法律,争议提交厦门市湖里区人民法院管辖。 @@ -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 ], ]; diff --git a/agent/admin/controllers/auto/Ucenter.php b/agent/admin/controllers/auto/Ucenter.php index f7bbe5e3..9c2b1448 100644 --- a/agent/admin/controllers/auto/Ucenter.php +++ b/agent/admin/controllers/auto/Ucenter.php @@ -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' => '

1. 购车补贴券只适用于平台指定的经销商门店

+

2. 购车补贴券只适用于标注的品牌和车型,不同品牌或车型补贴券不通用

+

3. 购车补贴券有效期90天,用户需在90天内完成购车方可享受补贴

+

4. 完成购车后,需在30天内完成资料上传方可享受补贴

', 'bizTip' => $v->getBizName(), 'typeCn' => '好车补专项补贴', 'btText' => $v->getBtText(), diff --git a/api/controllers/wxapp/licheb/Cusorder.php b/api/controllers/wxapp/licheb/Cusorder.php index 3bc381f3..c8dabb06 100644 --- a/api/controllers/wxapp/licheb/Cusorder.php +++ b/api/controllers/wxapp/licheb/Cusorder.php @@ -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, diff --git a/api/controllers/wxapp/licheb/Customers.php b/api/controllers/wxapp/licheb/Customers.php index 20ad8b3e..6ae83dc8 100644 --- a/api/controllers/wxapp/licheb/Customers.php +++ b/api/controllers/wxapp/licheb/Customers.php @@ -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; diff --git a/common/libraries/entity/AutoUserCouponEntity.php b/common/libraries/entity/AutoUserCouponEntity.php index f154fb9d..62cb8408 100644 --- a/common/libraries/entity/AutoUserCouponEntity.php +++ b/common/libraries/entity/AutoUserCouponEntity.php @@ -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) {