snow пре 1 година
родитељ
комит
76e6c4d200

+ 0 - 1
src/components/globalComponents/project-manager/main.vue

@@ -113,7 +113,6 @@ export default {
         label: this.options[index].nickname
       };
 
-      // console.log(model);
       this.$emit("searchChange", model);
       this.loading = false;
     },

+ 4 - 13
src/views/netOrderEntry/netOrderEnter/addEdit.vue

@@ -724,7 +724,7 @@ export default {
       this.$refs.ruleForm.validateField("tax");
     },
     unitsearchChange(e) {
-      const { id, code, label } = e;
+      const { code } = e;
       this.ruleForm.goodUnit = code ? [code] : [];
       this.$refs.ruleForm.validateField("goodUnit");
     },
@@ -765,16 +765,17 @@ export default {
     },
     async getDetail() {
       this.detailLoading = true;
+
       const { orderCode } = this.sitem;
       const { data } = await asyncRequest.detail({ orderCode });
 
       const {
+        khNo,
+        khName,
         cat_id,
         buyerid,
-        khNo,
         supplierNo,
         supplierNanme,
-        khName,
         goodUnit,
         tax,
         addr_code,
@@ -807,16 +808,6 @@ export default {
       this.pay_name = pay_name || "";
       this.$refs.ruleForm.validateField("platform_id");
     },
-    // async getAccounts() {
-    //   const res = await asyncRequest.accountall(this.dataForm);
-    //   if (res && res.code === 0 && res.data) {
-    //     this.accounts = res.data;
-    //   } else if (res && res.code >= 100 && res.code <= 104) {
-    //     await this.logout();
-    //   } else {
-    //     this.$message.warning(res.message);
-    //   }
-    // },
     async goods_class_change(e) {
       const { id } = e;
       this.ruleForm.cat_id = id ? [id] : [];

+ 75 - 103
src/views/netOrderEntry/netOrderEnter/detail-modal.vue

@@ -33,9 +33,9 @@
             <el-row>
               <el-col :span="12">
                 <el-form-item label="销售方公司:" label-width="100px" prop="companyNo">
-                  <p style="font-size: 14px; color: #606266; font-weight: 700">
-                    {{ getCompanyWithCode(ruleForm.companyNo).name }}
-                  </p>
+                  <p
+                    style="font-size: 14px; color: #606266; font-weight: 700"
+                  >{{ getCompanyWithCode(ruleForm.companyNo).name }}</p>
                   <!-- <search-work-company
                     disabled
                     :value="ruleForm.companyNo"
@@ -43,7 +43,7 @@
                     :size="'mini'"
                     :placeholder="'销售方公司'"
                     @searchChange="handleCompanyChange"
-                  /> -->
+                  />-->
                 </el-form-item>
               </el-col>
 
@@ -73,7 +73,7 @@
                     @searchChange="handleHandoverName"
                   />
                 </el-form-item>
-              </el-col> -->
+              </el-col>-->
               <el-col :span="12">
                 <el-form-item label="商品分类" prop="cat_id">
                   <company-sort
@@ -229,7 +229,7 @@
                 <el-form-item label="销售总额" prop="sale_total">
                   <!-- <el-input v-model="ruleForm.sale_total" placeholder="销售总额">
                     <template #append>元</template>
-                  </el-input> -->
+                  </el-input>-->
                   <el-input-number
                     v-model="ruleForm.sale_total"
                     :disabled="id !== '003' || disabledField"
@@ -261,18 +261,6 @@
               </el-col>
               <el-col :span="6">
                 <el-form-item label="采购毛利率" label-width="100px" prop="cgd_tax">
-                  <!-- <el-input-number
-                    v-model="ruleForm.cgd_tax"
-                    style="width: 100%"
-                    :disabled="id === '007'"
-                    controls-position="right"
-                    placeholder="采购毛利率"
-                    :precision="2"
-                    :min="0"
-                    :max="100"
-                    :step="0.01"
-                    @change="number_change($event, 2)"
-                  /> -->
                   <digital-input
                     :values="ruleForm.cgd_tax"
                     :placeholder="'采购毛利率'"
@@ -351,29 +339,24 @@
           </el-form>
         </el-col>
         <el-col :span="24" style="text-align: right">
-          <el-button v-if="id !== '007'" type="primary" @click="submitForm"
-            >保 存</el-button
-          >
-          <el-button @click="showModelThis = false">
-            {{ id == "007" ? "关 闭" : "取 消" }}
-          </el-button>
+          <el-button v-if="id !== '007'" type="primary" @click="submitForm">保 存</el-button>
+          <el-button @click="showModelThis = false">{{ id == "007" ? "关 闭" : "取 消" }}</el-button>
         </el-col>
       </el-row>
     </el-card>
   </el-dialog>
 </template>
 <script>
+import { accMul, accDiv, accSub, isPhone, isMobile } from "@/utils/validate";
 import asyncRequest from "@/apis/service/netOrderEntry/netOrderEnter";
 import companyHelper from "@/mixins/companyHelper";
-import { accMul, accDiv, accSub, isPhone, isMobile } from "@/utils/validate";
 import resToken from "@/mixins/resToken";
 
 const defaultData = {
+  tax: "",
   addr_code: [],
   cgd_total: "",
   cgdPrice: "",
-  // buyerid: "",
-  // buyer_name: "",
   platform_id: "",
   cgd_tax: "",
   workCode: "",
@@ -390,8 +373,7 @@ const defaultData = {
   goodNum: "",
   goodPrice: "",
   sale_total: "",
-  goodUnit: "",
-  tax: "",
+  goodUnit: ""
 };
 
 export default {
@@ -399,7 +381,7 @@ export default {
   mixins: [resToken, companyHelper],
   props: ["showModel", "id", "sitem"],
   data() {
-    const validatemobile = (rule, value, callback) => {
+    const validatemobile = (_, value, callback) => {
       if (value !== "") {
         if (isPhone(value) || isMobile(value)) {
           callback();
@@ -420,7 +402,7 @@ export default {
       cat_id_name: "",
       showModelThis: this.showModel,
       pickerOptions: {
-        disabledDate: (time) => time.getTime() > new Date(),
+        disabledDate: time => time.getTime() > new Date()
       },
       names: [],
       unit_name: "",
@@ -432,163 +414,146 @@ export default {
           {
             required: true,
             message: "请选择单位",
-            trigger: "blur",
-          },
+            trigger: "blur"
+          }
         ],
-        // addr_code: [
-        //   {
-        //     type: "array",
-        //     required: true,
-        //     message: "请选择收货省市区",
-        //     trigger: "blur",
-        //   },
-        // ],
         platform_id: [
           {
             required: true,
             message: "请输入所属平台",
-            trigger: "blur",
-          },
+            trigger: "blur"
+          }
         ],
 
         cgd_tax: [
           {
             required: true,
             message: "请输入采购毛利率",
-            trigger: "blur",
-          },
+            trigger: "blur"
+          }
         ],
         cat_id: [
           {
             required: true,
             message: "请选择商品分类",
-            trigger: "change",
-          },
+            trigger: "change"
+          }
         ],
         supplierNo: [
           {
             type: "array",
             required: true,
             message: "请选择供应商公司",
-            trigger: "change",
-          },
+            trigger: "change"
+          }
         ],
         qrdType: [
           {
             required: true,
             message: "请输入订单来源",
-            trigger: "blur",
-          },
+            trigger: "blur"
+          }
         ],
         sale_total: [
           {
             required: true,
             message: "请输入销售总额",
-            trigger: "blur",
-          },
+            trigger: "blur"
+          }
         ],
-        // workCode: [
-        //   {
-        //     required: true,
-        //     message: '请输入单据号',
-        //     trigger: 'blur'
-        //   }
-        // ],
         poCode: [
           {
             required: true,
             message: "请输入PO编号",
-            trigger: "blur",
-          },
+            trigger: "blur"
+          }
         ],
         khNo: [
           {
             type: "array",
             required: true,
             message: "请选择购买方公司",
-            trigger: "change",
-          },
+            trigger: "change"
+          }
         ],
         tax: [
           {
             required: true,
             message: "请选择税率",
-            trigger: "change",
-          },
+            trigger: "change"
+          }
         ],
         companyNo: [
           {
             required: true,
             message: "请选择销售方公司",
-            trigger: "change",
-          },
+            trigger: "change"
+          }
         ],
         contactor: [
           {
             required: true,
             message: "请输入收货人",
-            trigger: "blur",
-          },
+            trigger: "blur"
+          }
         ],
         mobile: [
           {
             required: true,
             validator: validatemobile,
-            trigger: "blur",
-          },
+            trigger: "blur"
+          }
         ],
         addr: [
           {
             required: true,
             message: "请输入联系地址",
-            trigger: "blur",
-          },
+            trigger: "blur"
+          }
         ],
-
         sendtime: [
           {
             required: true,
             message: "请输入发货时间",
-            trigger: "change",
-          },
+            trigger: "change"
+          }
         ],
-
         goodName: [
           {
             required: true,
             message: "请输入商品名称",
-            trigger: "blur",
-          },
+            trigger: "blur"
+          }
         ],
         goodPrice: [
           {
             required: true,
             message: "请输入销售单价",
-            trigger: "blur",
-          },
+            trigger: "blur"
+          }
         ],
         cgdPrice: [
           {
             required: true,
             message: "请选择采购单价",
-            trigger: "blur",
-          },
+            trigger: "blur"
+          }
         ],
         goodNum: [
           {
             required: true,
             message: "请输入数量",
-            trigger: "blur",
-          },
+            trigger: "blur"
+          }
         ],
         cgd_total: [
           {
             required: true,
             message: "请输入采购总额",
-            trigger: "blur",
-          },
-        ],
-      },
+            trigger: "blur"
+          }
+        ]
+      }
     };
   },
   computed: {
@@ -603,10 +568,10 @@ export default {
     cgdTotalWatchSource() {
       const { goodNum, cgdPrice } = this.ruleForm;
       return { goodNum, cgdPrice };
-    },
+    }
   },
   watch: {
-    showModel: function (val) {
+    showModel: function(val) {
       this.showModelThis = val;
       if (val) {
         this.initForm();
@@ -626,7 +591,7 @@ export default {
 
         this.ruleForm.sale_total = accMul(goodPrice, goodNum);
       },
-      deep: true,
+      deep: true
     },
     cgdTotalWatchSource: {
       handler({ cgdPrice, goodNum }) {
@@ -637,8 +602,8 @@ export default {
 
         this.ruleForm.cgd_total = accMul(cgdPrice, goodNum);
       },
-      deep: true,
-    },
+      deep: true
+    }
   },
   methods: {
     async handleHandoverName(e) {
@@ -742,7 +707,10 @@ export default {
     number_change_total(current, prop) {
       const isCgdTotal = prop === "cgd_total";
       const { goodNum } = this.ruleForm;
-      this.ruleForm[isCgdTotal ? "cgdPrice" : "goodPrice"] = accDiv(current, goodNum);
+      this.ruleForm[isCgdTotal ? "cgdPrice" : "goodPrice"] = accDiv(
+        current,
+        goodNum
+      );
       this.ruleForm[prop] = current;
 
       let tax = 0;
@@ -782,7 +750,7 @@ export default {
         supplierNo: supplierNo ? [supplierNo] : [],
         khNo: khNo ? [khNo] : [],
         tax: tax ? tax + "%" : "",
-        goodUnit: goodUnit ? [goodUnit] : "",
+        goodUnit: goodUnit ? [goodUnit] : ""
       };
 
       this.cat_id_name = cat_id.map(({ name }) => name).join("_");
@@ -815,7 +783,7 @@ export default {
       this.$refs.ruleForm.validateField("cat_id");
     },
     async submitForm() {
-      await this.$refs.ruleForm.validate(async (valid) => {
+      await this.$refs.ruleForm.validate(async valid => {
         if (valid) {
           if (this.loading) {
             return;
@@ -825,8 +793,12 @@ export default {
           const model = JSON.parse(JSON.stringify(this.ruleForm));
           model.supplierNo = model.supplierNo[0];
           model.khNo = model.khNo[0];
-          model.buyerid = Array.isArray(model.buyerid) ? model.buyerid[0] : model.buyerid;
-          model.cat_id = model.cat_id ? model.cat_id[model.cat_id.length - 1] : "";
+          model.buyerid = Array.isArray(model.buyerid)
+            ? model.buyerid[0]
+            : model.buyerid;
+          model.cat_id = model.cat_id
+            ? model.cat_id[model.cat_id.length - 1]
+            : "";
           model.addr_code = model.addr_code.join(",");
           model.tax = model.tax.split("%")[0];
           model.pay_name = this.pay_name;
@@ -846,7 +818,7 @@ export default {
             const title = this.id === "003" ? "添加成功!" : "修改成功!";
             this.$notify.success({
               title,
-              message: "",
+              message: ""
             });
             this.showModelThis = false;
             // 刷新
@@ -861,8 +833,8 @@ export default {
           return false;
         }
       });
-    },
-  },
+    }
+  }
 };
 </script>
 

+ 18 - 11
src/views/sellOut/filing/config/columns.js

@@ -218,7 +218,12 @@ export const editColumns = [
   {
     prop: 'plat_code',
    label: '平台商品编号',
-   span: 12
+   span: 6
+  },
+  {
+   prop: 'manager',
+   label: '项目经理',
+   span: 6
   },
   {
     prop: 'platform_name',
@@ -267,28 +272,21 @@ export const coveColumns = [
     prop: "tax",
     label: "税点",
     append: "%",
-    span: 6,
+    span: 6
   },
   {
     prop: "pay_way",
     label: "付款方式",
     _slot_: "pay_way",
-    span: 6,
+    span: 6
   },
 
   {
     prop: "weight",
     label: "商品总克重",
     append: "g",
-    span: 6,
+    span: 6
   },
-
-  // {
-  //   prop: "addtime",
-  //   label: "反馈时间",
-  //   span: 6,
-  // },
-
   {
     prop: "preservation_day",
     label: "有效期",
@@ -740,6 +738,14 @@ const validate_good_name = (rule, value, callback) => {
   }
 };
 const rules = {
+  managerid:[
+    {
+      type:'array',
+      required: true,
+      message: "请选择项目经理",
+      trigger: "blur",
+    }
+  ],
   fill_url:[
     {
       required: true,
@@ -1123,6 +1129,7 @@ const other_ruleForm = {
   is_diff: "0",
 };
 const ruleForm1 = {
+  managerid:[],
   manager:"",
   customerName:"",
   fill_url:"",

+ 29 - 11
src/views/sellOut/filing/cpns/baseForm.vue

@@ -59,12 +59,13 @@
               @searchChange="supplierNosearchChange"
             />
           </el-form-item>
-          <el-form-item label="项目经理" prop="manager">
+          <el-form-item label="项目经理" prop="managerid">
             <project-manager
               size="mini"
               :isDetail="true"
-              :value="ruleForm.manager"
-              @searchChange="managerChange"
+              :names="ruleForm.manager"
+              :value="ruleForm.managerid"
+              @searchChange="manageridChange"
             />
           </el-form-item>
 
@@ -634,6 +635,7 @@ import { add_sum, accMul, accDiv, accSub } from "@/utils/validate";
 import companyHelper from "@/mixins/companyHelper";
 
 import {
+  rules,
   options1,
   options2,
   options3,
@@ -645,7 +647,6 @@ import {
   options9,
   options10,
   options11,
-  rules,
   ruleForm1,
   other_ruleForm
 } from "../config/columns";
@@ -777,9 +778,11 @@ export default {
       }
       return isJPG && isLt2M;
     },
-    managerChange(e) {
-      const { id } = e;
-      this.ruleForm.manager = id ? [id] : [];
+    manageridChange(e) {
+      const { id , label } = e
+      this.ruleForm.manager = label
+      this.ruleForm.managerid = id ? [id] : []
+      this.$refs.ruleForm.validateField("managerid")
     },
     //图片悬浮删除
     closeImg(index, key) {
@@ -1014,6 +1017,8 @@ export default {
           model.spec_list = [];
           model.supplierNo = model.supplierNo.toString();
 
+          model.managerid = Array.isArray(model.managerid) ? model.managerid[0] : model.managerid
+
           delete model.originPlace;
           let list = JSON.parse(JSON.stringify(this.spec_tableData));
           list.forEach(a => {
@@ -1026,9 +1031,19 @@ export default {
 
           let res = {};
           if (this.type === "add") {
-            res = await asyncRequest.add(model);
+            res = await asyncRequest.add({
+              ...model,
+              managerid: Array.isArray(model.managerid) 
+                ? model.managerid[0] 
+                : model.managerid
+            });
           } else {
-            res = await asyncRequest.update(model);
+            res = await asyncRequest.update({
+              ...model,
+              managerid: Array.isArray(model.managerid) 
+                ? model.managerid[0] 
+                : model.managerid
+            });
           }
 
           const { code } = await this.useResHandle(res);
@@ -1054,7 +1069,6 @@ export default {
         this.ruleForm.expect_service_proportion = e;
         this.$refs.ruleForm.validateField("expect_service_proportion");
         const {
-          price,
           cgd_charge,
           is_determine_price,
           expect_service_proportion
@@ -1168,7 +1182,9 @@ export default {
               noble_metal,
               config,
               gold_weight,
-              other_config
+              other_config,
+              managerid,
+              manager
             } = data;
 
             if (Number(gold_weight) !== 0) {
@@ -1177,6 +1193,8 @@ export default {
 
             this.ruleForm = {
               ...ruleForm1,
+              manager,
+              managerid:managerid ? [managerid] : [], 
               other_config: other_config || "",
               gold_weight: gold_weight || "",
               noble_metal: noble_metal || "",

+ 6 - 3
src/views/sellOut/salesOrder/components/ShowDataTableColumns.js

@@ -208,13 +208,16 @@ const showColumns = [
     _slot_: 'send_type',
     span: 6
   },
-
+  {
+    prop:'manager',
+    label:'项目经理',
+    span:6
+  },
   {
     prop: 'useage',
     label: '订单用途',
-    span: 24
+    span: 16
   },
-
   {
     prop: 'remark',
     label: '备注',

+ 228 - 258
src/views/sellOut/salesOrder/components/addEdit.vue

@@ -39,17 +39,12 @@
                       )
                     "
                     :placeholder="'商品分类'"
-                  /> -->
+                  />-->
                 </el-form-item>
               </el-col>
               <el-col :span="12">
                 <el-form-item label="商品名称" prop="good_code">
-                  <el-input
-                    v-model="ruleForm.good_name"
-                    readonly
-                    maxlength="200"
-                    @focus="hand"
-                  />
+                  <el-input v-model="ruleForm.good_name" readonly maxlength="200" @focus="hand" />
                 </el-form-item>
               </el-col>
               <el-col :span="12">
@@ -102,6 +97,7 @@
                 label="发货公司名称"
                 min-width="145"
               />
+
               <el-table-column prop="wsm_code" label="发货仓库编码" width="180" />
               <el-table-column
                 show-overflow-tooltip
@@ -119,11 +115,7 @@
                     :size="'mini'"
                     style="margin-bottom: 0"
                   >
-                    <el-input
-                      v-model="scope.row.num"
-                      maxlength="10"
-                      :disabled="!scope.row.edit"
-                    />
+                    <el-input v-model="scope.row.num" maxlength="10" :disabled="!scope.row.edit" />
                   </el-form-item>
                 </template>
               </el-table-column>
@@ -131,25 +123,12 @@
 
               <el-table-column fixed="right" width="80" label="操作">
                 <template slot-scope="scope">
-                  <el-tooltip
-                    v-if="!scope.row.edit"
-                    effect="dark"
-                    content="编辑"
-                    placement="top"
-                  >
+                  <el-tooltip v-if="!scope.row.edit" effect="dark" content="编辑" placement="top">
                     <i class="el-icon-edit tb-icon" @click="editRow(scope.$index)" />
                   </el-tooltip>
 
-                  <el-tooltip
-                    v-if="scope.row.edit"
-                    effect="dark"
-                    content="保存"
-                    placement="top"
-                  >
-                    <i
-                      class="el-icon-circle-check tb-icon"
-                      @click="checkStockRow(scope.$index)"
-                    />
+                  <el-tooltip v-if="scope.row.edit" effect="dark" content="保存" placement="top">
+                    <i class="el-icon-circle-check tb-icon" @click="checkStockRow(scope.$index)" />
                   </el-tooltip>
 
                   <el-tooltip effect="dark" content="删除" placement="top">
@@ -182,12 +161,9 @@
               row-key="key"
             >
               <el-table-column prop="receipt_quantity" label="收货总数" min-width="125" />
-
               <el-table-column prop="arrive_time" label="最晚收货日期" width="150" />
               <el-table-column prop="contactor" label="收件联系人" min-width="110" />
-
               <el-table-column prop="mobile" label="收货联系电话" min-width="130" />
-
               <el-table-column prop="addr_code" label="收货省市区" min-width="230" />
               <el-table-column prop="addr" label="详细地址" min-width="170" />
               <el-table-column fixed="right" width="80">
@@ -208,16 +184,8 @@
                   </el-tooltip>
                 </template>
                 <template slot-scope="scope">
-                  <el-tooltip
-                    v-if="!scope.row.edit"
-                    effect="dark"
-                    content="编辑"
-                    placement="top"
-                  >
-                    <i
-                      class="el-icon-edit tb-icon"
-                      @click="openHouseModal(scope.$index)"
-                    />
+                  <el-tooltip v-if="!scope.row.edit" effect="dark" content="编辑" placement="top">
+                    <i class="el-icon-edit tb-icon" @click="openHouseModal(scope.$index)" />
                   </el-tooltip>
                   <el-tooltip effect="dark" content="删除" placement="top">
                     <i
@@ -246,102 +214,102 @@
           />
         </el-col>
         <el-col :span="24" style="text-align: right">
-          <el-button :size="'mini'" type="primary" @click="submitForm">保 存 </el-button>
+          <el-button :size="'mini'" type="primary" @click="submitForm">保 存</el-button>
         </el-col>
       </el-row>
     </el-card>
   </el-dialog>
 </template>
 <script>
-import resToken from '@/mixins/resToken'
-import asyncRequest from '@/apis/service/sellOut/salesOrder/detail'
-import searchStockGoodModal from '@/components/search-stock-good-modal'
+import resToken from "@/mixins/resToken";
+import asyncRequest from "@/apis/service/sellOut/salesOrder/detail";
+import searchStockGoodModal from "@/components/search-stock-good-modal";
 import {
-  isnumber,
-  isMobile,
-  isChinese,
-  isEmoticon,
   isSpecialSymbol,
+  isEmoticon,
+  isChinese,
   hasSpace,
+  isMobile,
+  isnumber,
   isAddr
-} from '@/utils/validate'
-import inAddrModel from '@/components/in-addr-model'
-import AddrAddEditModal from '@/components/addr-add-edit-modal'
+} from "@/utils/validate";
+import inAddrModel from "@/components/in-addr-model";
+import AddrAddEditModal from "@/components/addr-add-edit-modal";
 export default {
-  name: 'Allot',
+  name: "Allot",
   components: { searchStockGoodModal, inAddrModel, AddrAddEditModal },
   mixins: [resToken],
-  props: ['showModel', 'id'],
+  props: ["showModel", "id"],
   data() {
     const validatemobile = (rule, value, callback) => {
-      if (value === '') {
-        callback(new Error('手机号不能为空!'))
+      if (value === "") {
+        callback(new Error("手机号不能为空!"));
       } else {
         if (!isMobile(value)) {
-          callback(new Error('手机号格式不正确!'))
+          callback(new Error("手机号格式不正确!"));
         } else {
-          callback()
+          callback();
         }
       }
-    }
+    };
     const validateWeight = (rule, value, callback) => {
-      if (value === '') {
-        callback(new Error('收货总数不能为空!'))
+      if (value === "") {
+        callback(new Error("收货总数不能为空!"));
       } else {
         if (!isnumber(value)) {
-          callback(new Error('收货总数仅支持整数!'))
+          callback(new Error("收货总数仅支持整数!"));
         } else {
-          callback()
+          callback();
         }
       }
-    }
+    };
     const validatecontactor = (rule, value, callback) => {
-      if (value === '') {
-        callback(new Error('联系人不能为空!'))
+      if (value === "") {
+        callback(new Error("联系人不能为空!"));
       } else {
         if (value.length < 2 || value.length > 10) {
-          callback(new Error('联系人规则为2~10位汉字!'))
+          callback(new Error("联系人规则为2~10位汉字!"));
         } else {
           if (!isChinese(value)) {
-            callback(new Error('联系人规则为2~10位汉字!'))
+            callback(new Error("联系人规则为2~10位汉字!"));
           } else if (isEmoticon(value)) {
-            callback(new Error('联系人规则为2~10位汉字!'))
+            callback(new Error("联系人规则为2~10位汉字!"));
           } else {
-            callback()
+            callback();
           }
         }
       }
-    }
+    };
     const validateAddr = (rule, value, callback) => {
-      if (value === '') {
-        callback(new Error('详细地址不能为空!'))
+      if (value === "") {
+        callback(new Error("详细地址不能为空!"));
       } else {
         if (hasSpace(value)) {
-          callback(new Error('不能出现/回车/换行符!'))
+          callback(new Error("不能出现/回车/换行符!"));
         } else if (isSpecialSymbol(value)) {
-          callback(new Error('不能使用英文特殊字符!'))
+          callback(new Error("不能使用英文特殊字符!"));
         } else if (isAddr(value)) {
-          callback()
+          callback();
         } else {
-          callback(new Error('详细地址填写不规范!'))
+          callback(new Error("详细地址填写不规范!"));
         }
       }
-    }
+    };
     return {
       showAddrAddEditModal: false,
       AddrAddEditModalIndex: -1,
       AddrAddEditModalSitem: {},
       loading: false,
       addrmodel: false,
-      title: '新建销售订单',
+      title: "新建销售订单",
       showModelThis: this.showModel,
       showGoodsModel: false,
-      stock_code: '',
-      cat_id: '',
+      stock_code: "",
+      cat_id: "",
       ruleForm: {
         goods_class: [],
-        good_name: '',
-        good_code: '', // 商品选择
+        good_name: "",
+        good_code: "", // 商品选择
         customer_code: [], // 企业客户选择
         sell_code: [] // 销售方选择
       },
@@ -349,33 +317,33 @@ export default {
       rules: {
         goods_class: [
           {
-            type: 'array',
+            type: "array",
             required: true,
-            message: '请选择商品分类',
-            trigger: 'change'
+            message: "请选择商品分类",
+            trigger: "change"
           }
         ],
         good_code: [
           {
             required: true,
-            message: '请选择商品',
-            trigger: 'blur'
+            message: "请选择商品",
+            trigger: "blur"
           }
         ],
         customer_code: [
           {
-            type: 'array',
+            type: "array",
             required: true,
-            message: '请选择企业客户',
-            trigger: 'change'
+            message: "请选择企业客户",
+            trigger: "change"
           }
         ],
         sell_code: [
           {
-            type: 'array',
+            type: "array",
             required: true,
-            message: '请选择供应商公司',
-            trigger: 'change'
+            message: "请选择供应商公司",
+            trigger: "change"
           }
         ]
       },
@@ -386,22 +354,22 @@ export default {
         arrive_time: [
           {
             required: true,
-            message: '最晚收货日期不能为空',
-            trigger: 'change'
+            message: "最晚收货日期不能为空",
+            trigger: "change"
           }
         ],
         receipt_quantity: [
           {
             required: true,
             validator: validateWeight,
-            trigger: 'blur'
+            trigger: "blur"
           }
         ],
 
         contactor: [
           {
             required: true,
-            trigger: 'blur',
+            trigger: "blur",
             validator: validatecontactor
           }
         ],
@@ -409,23 +377,23 @@ export default {
           {
             required: true,
             validator: validatemobile,
-            trigger: 'blur'
+            trigger: "blur"
           }
         ],
 
         addr_code: [
           {
-            type: 'array',
+            type: "array",
             required: true,
-            message: '收货省市区不能为空',
-            trigger: 'change'
+            message: "收货省市区不能为空",
+            trigger: "change"
           }
         ],
         addr: [
           {
             required: true,
             validator: validateAddr,
-            trigger: 'blur'
+            trigger: "blur"
           }
         ]
       },
@@ -433,75 +401,75 @@ export default {
         good_stock: [] // 出货仓库
       },
       loading: false,
-      id: ''
-    }
+      id: ""
+    };
   },
   watch: {
     showModel: function(val) {
-      this.showModelThis = val
+      this.showModelThis = val;
       if (val) {
-        this.rulesThis = this.rules
-        this.resetForm()
+        this.rulesThis = this.rules;
+        this.resetForm();
       }
     },
     showModelThis(val) {
       if (!val) {
-        this.$emit('cancel')
+        this.$emit("cancel");
       }
     }
   },
   methods: {
     closeModel() {
-      console.log('closeModel!!')
-      this.showModelThis = false
+      console.log("closeModel!!");
+      this.showModelThis = false;
     },
     hand() {
       if (this.ruleForm.goods_class.length === 0) {
-        this.$message.warning('请选择商品分类!')
-        return
+        this.$message.warning("请选择商品分类!");
+        return;
       }
-      this.showGoodsModel = true
+      this.showGoodsModel = true;
     },
     addrRefresh(e) {
-      const { list } = e
-      this.addrForm.order_addr.push(...list)
+      const { list } = e;
+      this.addrForm.order_addr.push(...list);
     },
 
     goods_class_change(e) {
-      this.ruleForm.goods_class = e
-      this.cat_id = e.length > 0 ? e[e.length - 1] : ''
-      this.$refs.ruleForm.validateField('goods_class')
-      this.ruleForm.good_code = ''
-      this.ruleForm.good_name = ''
-      this.$refs.ruleForm.validateField('good_code')
+      this.ruleForm.goods_class = e;
+      this.cat_id = e.length > 0 ? e[e.length - 1] : "";
+      this.$refs.ruleForm.validateField("goods_class");
+      this.ruleForm.good_code = "";
+      this.ruleForm.good_name = "";
+      this.$refs.ruleForm.validateField("good_code");
     },
     refresh(e) {
-      this.showModelThis = e
-      this.$emit('refresh', true)
+      this.showModelThis = e;
+      this.$emit("refresh", true);
     },
     async getstock(code) {
-      this.loading = true
+      this.loading = true;
       const model = {
-        wsm_code: '',
+        wsm_code: "",
         page: 1,
         size: 100,
         type_code: code,
-        good_code: '',
-        good_name: '',
-        supplierNo: '',
-        stock_low: '',
-        stock_up: '',
-        warn_low: '',
-        warn_up: '',
-        stock_max: '1'
-      }
-      const res = await asyncRequest.getGoodStock(model)
+        good_code: "",
+        good_name: "",
+        supplierNo: "",
+        stock_low: "",
+        stock_up: "",
+        warn_low: "",
+        warn_up: "",
+        stock_max: "1"
+      };
+      const res = await asyncRequest.getGoodStock(model);
       if (res && res.code === 0 && res.data) {
         this.stockForm = {
           good_stock: [] // 出货仓库
-        }
-        const { list } = res.data
-        list.forEach((v) => {
+        };
+        const { list } = res.data;
+        list.forEach(v => {
           const model = {
             num: v.usable_stock,
             usable_stock: v.usable_stock,
@@ -511,56 +479,56 @@ export default {
             wsm_code: v.wsm_code,
             original_price: v.original_price,
             edit: false
-          }
-          this.stockForm.good_stock.push(model)
-        })
+          };
+          this.stockForm.good_stock.push(model);
+        });
       } else if (res && res.code >= 100 && res.code <= 104) {
-        await this.logout()
+        await this.logout();
       } else {
-        this.$message.warning(res.message)
+        this.$message.warning(res.message);
       }
-      this.loading = false
+      this.loading = false;
     },
 
     getNewTime() {
-      this.newTime = new Date().valueOf()
+      this.newTime = new Date().valueOf();
     },
     async resetForm() {
       // 重置
       await this.$nextTick(() => {
         if (this.$refs.ruleForm) {
-          this.$refs.ruleForm.resetFields()
-          this.$refs.ruleForm.clearValidate()
-          this.cat_id = ''
+          this.$refs.ruleForm.resetFields();
+          this.$refs.ruleForm.clearValidate();
+          this.cat_id = "";
           this.ruleForm = {
             goods_class: [],
-            good_code: '', // 商品选择
+            good_code: "", // 商品选择
             customer_code: [], // 企业客户选择
             sell_code: [] // 销售方公司
-          }
+          };
         }
         if (this.$refs.stockForm) {
-          this.$refs.stockForm.resetFields()
-          this.$refs.stockForm.clearValidate()
+          this.$refs.stockForm.resetFields();
+          this.$refs.stockForm.clearValidate();
 
           this.stockForm = {
             good_stock: [] // 出货仓库
-          }
+          };
         }
         if (this.$refs.addrForm) {
-          this.$refs.addrForm.resetFields()
-          this.$refs.addrForm.clearValidate()
+          this.$refs.addrForm.resetFields();
+          this.$refs.addrForm.clearValidate();
           this.addrForm = {
             order_addr: []
-          }
+          };
         }
-      })
+      });
     },
     showAddrAddEditModalRefresh(e) {
-      const { index, item } = e
+      const { index, item } = e;
 
       if (index === -1) {
-        this.addrForm.order_addr.push(JSON.parse(JSON.stringify(item)))
+        this.addrForm.order_addr.push(JSON.parse(JSON.stringify(item)));
       } else {
         const {
           arrive_time,
@@ -571,91 +539,91 @@ export default {
           addr_code_name,
           addr,
           id
-        } = JSON.parse(JSON.stringify(item))
-        this.addrForm.order_addr[index].receipt_quantity = receipt_quantity
-        this.addrForm.order_addr[index].arrive_time = arrive_time
-        this.addrForm.order_addr[index].contactor = contactor
-        this.addrForm.order_addr[index].mobile = mobile
-        this.addrForm.order_addr[index].addr_code = addr_code
-        this.addrForm.order_addr[index].addr_code_name = addr_code_name
-        this.addrForm.order_addr[index].addr = addr
-        this.addrForm.order_addr[index].id = id
+        } = JSON.parse(JSON.stringify(item));
+        this.addrForm.order_addr[index].receipt_quantity = receipt_quantity;
+        this.addrForm.order_addr[index].arrive_time = arrive_time;
+        this.addrForm.order_addr[index].contactor = contactor;
+        this.addrForm.order_addr[index].mobile = mobile;
+        this.addrForm.order_addr[index].addr_code = addr_code;
+        this.addrForm.order_addr[index].addr_code_name = addr_code_name;
+        this.addrForm.order_addr[index].addr = addr;
+        this.addrForm.order_addr[index].id = id;
       }
-      this.$refs.addrForm.validateField('addrlist')
+      this.$refs.addrForm.validateField("addrlist");
     },
     async addGoodsRes(e) {
       if (e && e.length === 1) {
-        this.ruleForm.good_name = e[0].good_name
-        this.ruleForm.good_code = e[0].type_code
+        this.ruleForm.good_name = e[0].good_name;
+        this.ruleForm.good_code = e[0].type_code;
       } else {
-        this.ruleForm.good_name = ''
-        this.ruleForm.good_code = ''
+        this.ruleForm.good_name = "";
+        this.ruleForm.good_code = "";
       }
-      this.$refs.ruleForm.validateField('good_code')
-      if (this.ruleForm.good_code !== '' && this.id === 'add') {
-        await this.getstock(this.ruleForm.good_code)
+      this.$refs.ruleForm.validateField("good_code");
+      if (this.ruleForm.good_code !== "" && this.id === "add") {
+        await this.getstock(this.ruleForm.good_code);
       } else {
         this.stockForm = {
           good_stock: [] // 出货仓库
-        }
+        };
       }
     },
     editRow(index) {
-      const findex = this.stockForm.good_stock.findIndex((v) => v.edit === true)
+      const findex = this.stockForm.good_stock.findIndex(v => v.edit === true);
       if (findex !== -1) {
-        this.$message.warning('当前已有发货仓库信息在编辑,请保存后再试!')
-        return
+        this.$message.warning("当前已有发货仓库信息在编辑,请保存后再试!");
+        return;
       } else {
-        this.stockForm.good_stock[index].edit = true
+        this.stockForm.good_stock[index].edit = true;
       }
     },
     checkStockRow(index) {
-      const total = parseInt(this.stockForm.good_stock[index].usable_stock)
-      const num = parseInt(this.stockForm.good_stock[index].num)
+      const total = parseInt(this.stockForm.good_stock[index].usable_stock);
+      const num = parseInt(this.stockForm.good_stock[index].num);
       if (total === 0) {
-        this.$message.warning('该仓库已无该商品库存!不能销售!')
-        return
+        this.$message.warning("该仓库已无该商品库存!不能销售!");
+        return;
       } else {
         if (num > total) {
-          this.$message.warning('销售数量不能大于可用库存!')
-          return
+          this.$message.warning("销售数量不能大于可用库存!");
+          return;
         } else {
-          this.stockForm.good_stock[index].edit = false
+          this.stockForm.good_stock[index].edit = false;
         }
       }
     },
     customer_code_change(e) {
       if (e && e.code) {
-        this.ruleForm.customer_code = [e.code]
+        this.ruleForm.customer_code = [e.code];
       } else {
-        this.ruleForm.customer_code = []
+        this.ruleForm.customer_code = [];
       }
-      this.$refs.ruleForm.validateField('customer_code')
+      this.$refs.ruleForm.validateField("customer_code");
     },
     supplierChange(e) {
       if (e && e.id) {
-        this.ruleForm.sell_code = [e.code]
+        this.ruleForm.sell_code = [e.code];
         // this.wsm_supplierNo = [e.code];
       } else {
-        this.ruleForm.sell_code = []
+        this.ruleForm.sell_code = [];
         // this.wsm_supplierNo = [];
       }
       // this.parmValue.wsm_code = "";
       // this.wsm_code = [];
       // this.parmValue.page = 1;
       // this.pageInfo.curr = 1;
-      this.$refs.ruleForm.validateField('sell_code')
+      this.$refs.ruleForm.validateField("sell_code");
     },
     openHouseModal(index) {
-      this.AddrAddEditModalIndex = index
+      this.AddrAddEditModalIndex = index;
       if (index === -1) {
-        this.AddrAddEditModalSitem = {}
+        this.AddrAddEditModalSitem = {};
       } else {
         this.AddrAddEditModalSitem = JSON.parse(
           JSON.stringify(this.addrForm.order_addr[index])
-        )
+        );
       }
-      this.showAddrAddEditModal = true
+      this.showAddrAddEditModal = true;
       // let findex = this.addrForm.order_addr.findIndex((v) => v.edit === true);
       // if (findex !== -1) {
       //   this.$message.warning("当前已有地址在编辑,请保存后再试!");
@@ -678,66 +646,66 @@ export default {
     },
     // 省市区选择
     select_area_change(e, index) {
-      this.addrForm.order_addr[index].addr_code = e
+      this.addrForm.order_addr[index].addr_code = e;
     },
     // 省市区保存某一行
     checkRow(rowIndex) {
-      this.$refs.addrForm.validate((valid) => {
+      this.$refs.addrForm.validate(valid => {
         if (valid) {
-          this.addrForm.order_addr[rowIndex].edit = false
+          this.addrForm.order_addr[rowIndex].edit = false;
         } else {
-          console.log('error submit!!')
-          return false
+          console.log("error submit!!");
+          return false;
         }
-      })
+      });
     },
     // 省市区删除行操作
     deleteRow(index, rows) {
-      rows.splice(index, 1)
+      rows.splice(index, 1);
     },
     async submitForm() {
-      await this.$refs.ruleForm.validate(async(valid) => {
+      await this.$refs.ruleForm.validate(async valid => {
         if (valid) {
           if (this.loading) {
-            return
+            return;
           }
-          this.loading = true
+          this.loading = true;
           const { good_code, customer_code, sell_code } = JSON.parse(
             JSON.stringify(this.ruleForm)
-          )
-          const { good_stock } = JSON.parse(JSON.stringify(this.stockForm))
-          const { order_addr } = JSON.parse(JSON.stringify(this.addrForm))
+          );
+          const { good_stock } = JSON.parse(JSON.stringify(this.stockForm));
+          const { order_addr } = JSON.parse(JSON.stringify(this.addrForm));
           const model = {
             good_code,
-            supplierNo: sell_code.join(','),
-            customer_code: customer_code.join(','), // 账号
+            supplierNo: sell_code.join(","),
+            customer_code: customer_code.join(","), // 账号
             order_addr: [],
             good_stock: []
-          }
-          let stockT = 0
-          let addrT = 0
-          let isStockOk = true
-          let isSEdit = false
-          let isAEdit = false
-          good_stock.forEach((v1) => {
+          };
+          let stockT = 0;
+          let addrT = 0;
+          let isStockOk = true;
+          let isSEdit = false;
+          let isAEdit = false;
+          good_stock.forEach(v1 => {
             if (v1.edit) {
-              isSEdit = true
+              isSEdit = true;
             }
             if (parseInt(v1.usable_stock) < parseInt(v1.num)) {
-              isStockOk = false
+              isStockOk = false;
             }
-            stockT += parseInt(v1.num)
+            stockT += parseInt(v1.num);
             const model1 = {
               num: v1.num,
               wsm_code: v1.wsm_code
-            }
-            model.good_stock.push(model1)
-          })
-          order_addr.forEach((v2) => {
+            };
+            model.good_stock.push(model1);
+          });
+          order_addr.forEach(v2 => {
             if (v2.edit) {
-              isAEdit = true
+              isAEdit = true;
             }
-            addrT += parseInt(v2.receipt_quantity)
+            addrT += parseInt(v2.receipt_quantity);
             const model2 = {
               contactor: v2.contactor,
               mobile: v2.mobile,
@@ -745,54 +713,56 @@ export default {
               addr: v2.addr,
               receipt_quantity: v2.receipt_quantity,
               addr_code: v2.addr_code
-            }
-            model.order_addr.push(model2)
-          })
+            };
+            model.order_addr.push(model2);
+          });
           if (isSEdit) {
-            this.$message.warning('请保存仓库信息!')
-            this.loading = false
-            return
+            this.$message.warning("请保存仓库信息!");
+            this.loading = false;
+            return;
           }
           if (isAEdit) {
-            this.$message.warning('请保存地址信息!')
-            this.loading = false
-            return
+            this.$message.warning("请保存地址信息!");
+            this.loading = false;
+            return;
           }
           if (!isStockOk) {
-            this.$message.warning('部分仓库销售数量已大于可用数量!')
-            this.loading = false
-            return
+            this.$message.warning("部分仓库销售数量已大于可用数量!");
+            this.loading = false;
+            return;
           }
           if (stockT !== addrT) {
-            this.$message.warning('库存出库总数量,与收货地址信息中的总数量不一致!')
-            this.loading = false
-            return
+            this.$message.warning(
+              "库存出库总数量,与收货地址信息中的总数量不一致!"
+            );
+            this.loading = false;
+            return;
           }
 
-          const res = await asyncRequest.add(model)
+          const res = await asyncRequest.add(model);
 
-          this.loading = false
+          this.loading = false;
           if (res && res.code === 0) {
             this.$notify.success({
-              title: '添加成功',
-              message: ''
-            })
-            this.showModelThis = false
+              title: "添加成功",
+              message: ""
+            });
+            this.showModelThis = false;
             // 刷新
-            this.$emit('refresh')
+            this.$emit("refresh");
           } else if (res && res.code >= 100 && res.code <= 104) {
-            await this.logout()
+            await this.logout();
           } else {
-            this.$message.warning(res.message)
+            this.$message.warning(res.message);
           }
         } else {
-          console.log('error submit!!')
-          return false
+          console.log("error submit!!");
+          return false;
         }
-      })
+      });
     }
   }
-}
+};
 </script>
 
 <style lang="scss" scoped>

+ 45 - 28
src/views/sellOut/salesOrder/components/addForm.vue

@@ -164,17 +164,6 @@
               </el-form-item>
             </el-col>
 
-            <el-col :span="12">
-              <el-form-item label="项目经理">
-                <project-manager
-                  size="mini"
-                  :isDetail="true"
-                  :value="ruleForm.manager"
-                  @searchChange="managerChange"
-                />
-              </el-form-item>
-            </el-col>
-
             <el-col :span="12" v-show="ruleForm.good_code">
               <el-row>
                 <el-col :span="12">
@@ -336,6 +325,17 @@
               </el-form-item>
             </el-col>
 
+            <el-col :span="12">
+              <el-form-item label="项目经理" prop="managerid">
+                <project-manager
+                  size="mini"
+                  :isDetail="true"
+                  :value="ruleForm.managerid"
+                  @searchChange="manageridChange"
+                />
+              </el-form-item>
+            </el-col>
+
             <el-col :span="ruleForm.good_code ? 12 : 24">
               <el-form-item label="订单备注" prop="remark">
                 <el-input
@@ -378,6 +378,7 @@
             row-key="key"
           >
             <el-table-column type="index" width="50" show-overflow-tooltip />
+
             <el-table-column
               prop="receipt_quantity"
               label="收货总数"
@@ -594,14 +595,14 @@ import {
   hasSpace,
   isAddr
 } from "@/utils/validate";
-import inAddrModel from "@/components/in-addr-model";
 import showVoucherModel from "@/components/show-voucher-model";
 import searchGoodOnlineModal from "@/components/search-good-online-modal";
+import inAddrModel from "@/components/in-addr-model";
 import { addColumns } from "./ShowDataTableColumns";
-import { mapGetters } from "vuex";
-import { accMul } from "@/utils/validate";
 import companyHelper from "@/mixins/companyHelper";
 import { replaceTextWrapAndSpace } from "@/utils";
+import { accMul } from "@/utils/validate";
+import { mapGetters } from "vuex";
 
 export default {
   name: "salesOrderDetail",
@@ -759,10 +760,17 @@ export default {
         sendtype: "1", //发货方式
         remark: "", //备注
         good_code: "", // 商品编号
-        manager: []
+        managerid: []
       },
       rulesThis: this.rules,
       rules: {
+        managerid: [
+          {
+            required: true,
+            message: "请选择项目经理",
+            trigger: "change"
+          }
+        ],
         supplierNo: [
           {
             required: true,
@@ -894,10 +902,11 @@ export default {
     this.initForm();
   },
   methods: {
-    managerChange(e) {
-      const { id } = e;
-      this.ruleForm.manager = id ? [id] : [];
-      // this.ruleForm.manager_name = label ?? "";
+    manageridChange(e) {
+      console.log(e);
+      const { id, label } = e;
+      this.ruleForm.managerid = id ? [id] : [];
+      this.ruleForm.manager = label || "";
     },
     priceAccMul(a, b) {
       return accMul(a, b);
@@ -921,7 +930,7 @@ export default {
           this.$refs.ruleForm.clearValidate();
 
           this.ruleForm = {
-            manager: [],
+            managerid: [],
             order_type: "1",
             supplierNo: this.currentCompany || "", //销售方编码
             customer_code: [], // 企业客户选择
@@ -1020,11 +1029,13 @@ export default {
     },
     async get_goods_active() {
       const { good_code, supplierNo, platform_id } = this.ruleForm;
+
       let model = {
+        platform_id,
         skuCode: good_code,
-        companyNo: supplierNo,
-        platform_id
+        companyNo: supplierNo
       };
+
       const { code, data, message } = await asyncRequest.goods_active(model);
       if (code === 0) {
         const { act, good } = data;
@@ -1056,10 +1067,10 @@ export default {
       });
       if (code === 0) {
         this.goods_sitem = data;
-        // console.log("1111111111111111", this.goods_sitem);
         this.goods_sitem.good_info_img = this.goods_sitem.good_info_img.split(
           ","
         );
+
         const { weight } = this.goods_sitem;
         let kgnum = parseInt((weight * 1) / 1000);
         let gnum = (weight * 1) % 1000;
@@ -1072,6 +1083,7 @@ export default {
           new_weight = weight;
           weight_unit = "g";
         }
+
         this.goods_sitem.new_weight = new_weight;
         this.goods_sitem.weight_unit = weight_unit;
         this.ruleForm.good_code = this.goods_sitem.good_code;
@@ -1108,11 +1120,12 @@ export default {
         console.log(key + "----" + this.ruleForm.new_good_price);
       }
       const { good_num } = this.ruleForm;
-      //key === "good_num"
+
       if (Number(good_num ?? "0") !== 0) {
         await this.get_new_price();
         await this.get_goods_active();
       }
+
       if (this.$refs.ruleForm) {
         this.$refs.ruleForm.validateField(key);
       }
@@ -1133,9 +1146,7 @@ export default {
       }
 
       const { ogood_type, ogood_num } = this.order_good_num;
-      console.log(
-        `oldGood_type${oldGood_type}-ogood_type${ogood_type}-good_num${good_num}-ogood_num${ogood_num}`
-      );
+
       if (oldGood_type === ogood_type && good_num === ogood_num) {
         this.order_good_num = {
           ogood_type: goodtype.length === 2 ? goodtype[1] : "",
@@ -1360,7 +1371,13 @@ export default {
             }
           });
 
-          let res = await asyncRequest.add(model);
+          let res = await asyncRequest.add({
+            ...model,
+            managerid: Array.isArray(model.managerid)
+              ? model.managerid[0]
+              : model.managerid
+          });
+
           this.loading = false;
           if (res && res.code === 0) {
             this.$notify.success({

+ 1 - 0
src/views/sellOut/salesOrder/detail.vue

@@ -373,5 +373,6 @@ export default {
 </script>
 <style lang="scss" scoped>
 .salesOrderDetail {
+  // text-overflow: ellipsis;
 }
 </style>

+ 18 - 14
src/views/sellOut/zixunOrder/components/buyGoodModal.vue

@@ -58,7 +58,6 @@
             <el-row>
               <el-col :span="5">
                 <el-form-item label="数量" prop="good_num">
-                  <!--:min="sitem.in_num"-->
                   <digital-input
                     :values="ruleForm.good_num"
                     :placeholder="'数量'"
@@ -289,10 +288,10 @@
               </el-col>
 
               <el-col :span="12">
-                <el-form-item label="项目经理" prop="manager" label-width="115px">
+                <el-form-item label="项目经理" prop="managerid" label-width="115px">
                   <project-manager
                     :size="'mini'"
-                    v-model.value="ruleForm.manager"
+                    v-model.value="ruleForm.managerid"
                     @searchChange="managerChange"
                     style="width: 100%"
                   />
@@ -656,6 +655,8 @@ export default {
       stock_code: "",
       cat_id: "",
       ruleForm: {
+        managerid: [],
+        manager: "",
         bidNo: "", // 竞价单反馈编号
         good_num: "", // 商品数量
         sale_price: "",
@@ -665,7 +666,6 @@ export default {
         platform_order: "", // 平台订单号
         workNo: "", // 其他单号
         companyNo: "",
-        manager: []
       },
       manager_name: "",
       rulesThis: this.rules,
@@ -691,7 +691,7 @@ export default {
             trigger: "blur"
           }
         ],
-        manager: [
+        managerid: [
           {
             required: true,
             message: "请选择项目经理",
@@ -806,11 +806,13 @@ export default {
   },
   methods: {
     managerChange(e) {
-      console.log(e);
       const { id, label } = e;
-      this.ruleForm.manager = id ? [id] : [];
-      this.$refs.ruleForm.validateField("manager");
-      this.manager_name = label ?? "";
+      this.ruleForm.manager = label;
+      this.ruleForm.managerid = id ? [id] : []
+
+      console.log(this.ruleForm)
+      this.$refs.ruleForm.validateField("managerid");
+      // this.manager_name = label ?? "";
     },
     // 修改日期校验
     mdDate() {
@@ -886,10 +888,9 @@ export default {
             in_num,
             in_arrival_time,
             sale_price,
-            remark,
             in_companyNo
           } = this.sitem;
-          console.log(this.sitem);
+   
           this.ruleForm = {
             bidNo: bidNo || "", // 竞价单反馈编号
             good_num: in_num || "0", // 商品数量
@@ -901,7 +902,8 @@ export default {
             proof_url: "", // 驳回至
             companyNo: in_companyNo || "",
             goodtype: Number(sale_price) === 0 ? "2" : "1",
-            manager: []
+            managerid: [],
+            manager: ""
           };
         }
 
@@ -945,7 +947,6 @@ export default {
       this.addrForm.order_addr[index].addr_code = code ? code.split(",") : [];
       this.addrForm.order_addr[index].code = area_code ? [area_code] : [];
       this.addrForm.order_addr[index].label = label ? [label] : [];
-      // this.$refs.ruleForm.validateField('addr_code')
     },
     // 省市区选择
     // async select_area_change(e, index) {
@@ -1043,7 +1044,10 @@ export default {
           });
           model.manager = manager.toString();
 
-          const res = await asyncRequest.consultorder(model);
+          const res = await asyncRequest.consultorder({
+            ...model,
+            managerid:Array.isArray(model.managerid) ? model.managerid[0] : model.manager
+          });
 
           if (res && res.code === 0) {
             this.$notify.success({

+ 1 - 14
src/views/sellOut/zixunOrder/components/editForm.vue

@@ -30,20 +30,7 @@
           </el-select>
         </el-form-item>
       </el-col>
-<!--      <el-col :span="6">-->
-<!--        <el-form-item label="支付渠道" prop="pay_id">-->
-<!--          <search-pay-->
-<!--            :value="ruleForm.pay_id"-->
-<!--            :disabled="type === 'view' || ruleForm.is_project === '1'"-->
-<!--            :size="'mini'"-->
-<!--            :is_show="'1'"-->
-<!--            :isDetail="type === 'view' || ruleForm.is_project === '1'"-->
-<!--            :names="pay_name"-->
-<!--            :placeholder="'支付渠道'"-->
-<!--            @searchChange="pay_id_change"-->
-<!--          />-->
-<!--        </el-form-item>-->
-<!--      </el-col>-->
+      
       <el-col :span="6">
         <el-form-item label="竞价截止时间" label-width="110px" prop="endtime">
           <el-date-picker

+ 1 - 1
src/views/sellOut/zixunOrder/detail.vue

@@ -19,7 +19,7 @@
           ></el-tag>
           <el-tooltip
             effect="dark"
-            content="停止招标任务"
+            content="停止招标任务" 
             placement="top"
             v-if="
               sitem.status + '' === '1' && powers.some((i) => i == '066') && !isSupertube

+ 14 - 7
src/views/supplierSellOut/supplierFiling/config/columns.js

@@ -218,7 +218,12 @@ export const editColumns = [
   {
     prop: 'plat_code',
    label: '平台商品编号',
-   span: 12
+   span: 6
+  },
+  {
+    prop: 'manager',
+   label: '项目经理',
+   span: 6
   },
   {
     prop: 'platform_name',
@@ -740,11 +745,12 @@ const validate_good_name = (rule, value, callback) => {
   }
 };
 const rules = {
-  manager:[
+  managerid:[
     {
-      required:true,
-      message:'请选择项目经理',
-      trigger:'change'
+      type:'array',
+      required: true,
+      message: '请选择项目经理',
+      trigger: 'chanage'
     }
   ],
   fill_url:[
@@ -1125,8 +1131,9 @@ const other_ruleForm = {
 };
 
 const ruleForm1 = {
-  manager:[],
-  customerName:"",
+  manager: "",
+  managerid: [],
+  customerName: "",
   fill_url:"",
   companyName: "",
   supplierNo: [],

+ 0 - 5
src/views/supplierSellOut/supplierFiling/config/rules.js

@@ -94,11 +94,6 @@ export const addressRules = {
 }
 
 export const createRules = {
-  manager:{
-    reuqired:true,
-    message:'请选择项目经理',
-    trigger:'chanage'
-  },
   customerCode: {
     required: true,
     message: '业务公司不能为空',

+ 8 - 7
src/views/supplierSellOut/supplierFiling/cpns/baseForm.vue

@@ -59,12 +59,12 @@
             />
           </el-form-item>
 
-          <el-form-item label="项目经理" prop="manager">
+          <el-form-item label="项目经理" prop="managerid">
             <project-manager
               size="mini"
-              :value="ruleForm.manager"
+              :value="ruleForm.managerid"
               placeholder="项目经理"
-              @searchChange="managerChange"
+              @searchChange="manageridChange"
               style="width:100%"
             />
           </el-form-item>
@@ -635,6 +635,7 @@ import { add_sum, accMul, accDiv, accSub } from "@/utils/validate";
 import companyHelper from "@/mixins/companyHelper";
 
 import {
+  rules,
   options1,
   options2,
   options3,
@@ -646,7 +647,6 @@ import {
   options9,
   options10,
   options11,
-  rules,
   ruleForm1,
   other_ruleForm
 } from "../config/columns";
@@ -731,9 +731,11 @@ export default {
     this.initForm();
   },
   methods: {
-    managerChange(e) {
+    manageridChange(e) {
       const { id, label } = e;
-      this.ruleForm.manager = id ? [id] : [];
+      this.ruleForm.managerid = id ? [id] : [];
+      this.ruleForm.manager = label
+      this.$refs.ruleForm.validateField("managerid")
     },
     // 其他文件上传成功
     async UploadSuccessOtherproof_url(data) {
@@ -742,7 +744,6 @@ export default {
         await this.logout();
       } else {
         this.ruleForm.fill_url = url;
-
         this.$message.success("文件成功!");
       }
     },