|
@@ -1191,7 +1191,7 @@ class Consult extends Base
|
|
|
//议价备注
|
|
|
$bargain_remark = isset($this->post['bargain_remark']) && $this->post['bargain_remark'] != "" ? trim($this->post['bargain_remark']) : "";
|
|
|
//议价原因id
|
|
|
- $result_info_id = isset($this->post['result_info_id']) && $this->post['result_info_id'] != "" ? intval($this->post['result_info_id']) : "";
|
|
|
+ $result_info_id = isset($this->post['result_info_id']) && $this->post['result_info_id'] != "" ? $this->post['result_info_id'] : "";
|
|
|
if ($result_info_id != '') {
|
|
|
$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, "议价原因选择不正确");
|