Browse Source

议价原因取result_code

wufeng 2 years ago
parent
commit
c60dfd37e1
1 changed files with 2 additions and 2 deletions
  1. 2 2
      app/admin/controller/Consult.php

+ 2 - 2
app/admin/controller/Consult.php

@@ -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'] = '';
         }