|
@@ -1193,7 +1193,7 @@ class Consult extends Base
|
|
|
//议价原因id
|
|
|
$result_info_id = isset($this->post['result_info_id']) && $this->post['result_info_id'] != "" ? intval($this->post['result_info_id']) : "";
|
|
|
if ($result_info_id != '') {
|
|
|
- $temp = Db::name('result_info')->field('id')->where(['id' => $result_info_id, 'type' => 7, 'status' => 1, 'is_del' => 0])->find();//type 7议价原因
|
|
|
+ $temp = Db::name('result_info')->field('id')->where(['result_code' => $result_info_id, 'type' => 7, 'status' => 1, 'is_del' => 0])->find();//type 7议价原因
|
|
|
if (empty($temp)) return error_show(1004, "议价原因选择不正确");
|
|
|
}
|
|
|
|
|
@@ -1456,7 +1456,7 @@ class Consult extends Base
|
|
|
|
|
|
//获取议价原因
|
|
|
if ($info['result_info_id'] != 0) {
|
|
|
- $info['result_info'] = Db::name('result_info')->where(['id' => $info['result_info_id'], 'type' => 7, 'status' => 1, 'is_del' => 0])->value('result');
|
|
|
+ $info['result_info'] = Db::name('result_info')->where(['result_code' => $info['result_info_id'], 'type' => 7, 'status' => 1, 'is_del' => 0])->value('result');
|
|
|
} else {
|
|
|
$info['result_info'] = '';
|
|
|
}
|