Forráskód Böngészése

feat(业务公司权限 -> 账号角色查询):没有设置业务公司的账号禁止查看和编辑

snow 2 éve
szülő
commit
6bf3328e94

+ 20 - 5
src/layout/components/Navbar.vue

@@ -50,10 +50,21 @@
         <div class="avatar-wrapper">
           <img :src="avatar + '?imageView2/1/w/80/h/80'" class="user-avatar">
 
-          <div class="username">
-            {{ userInfo.nickname }}
-            <i class="el-icon-caret-bottom" />
-          </div>
+          <template v-if="userInfo.nickname && userInfo.nickname.length <= 3">
+            <div class="username">
+              {{ userInfo.nickname }}
+              <i class="el-icon-caret-bottom" />
+            </div>
+          </template>
+
+          <template v-if="userInfo.nickname && userInfo.nickname.length > 3">
+            <el-tooltip class="item" effect="dark" :content="userInfo.nickname" placement="left-start">
+              <div class="username">
+                {{ getUserName(userInfo.nickname) }}
+                <i class="el-icon-caret-bottom" />
+              </div>
+            </el-tooltip>
+          </template>
         </div>
 
         <el-dropdown-menu slot="dropdown">
@@ -189,6 +200,7 @@ import {
 import CryptoJS from 'crypto-js'
 import { userStoreActions } from '@/store/modules/user'
 import { accountLevels } from '@/assets/js/statusList'
+import { userInfo } from 'os'
 
 export default {
   computed: {
@@ -226,6 +238,10 @@ export default {
     this.openNotice(true)
   },
   methods: {
+    getUserName(username) {
+      const chunks = username.split('')
+      return chunks[0] + chunks[1] + '...'
+    },
     openSettlementSystem: function() {
       // 加密token
       const encJson = CryptoJS.AES.encrypt(JSON.stringify({ token: getToken() }), config.secretKey)
@@ -451,7 +467,6 @@ export default {
 
   .right-menu {
     height: 100%;
-    width:700px;
     line-height: 50px;
     display: flex;
     flex-wrap: nowrap;

+ 1 - 1
src/views/goodStore/goodsCost/columns.js

@@ -554,7 +554,7 @@ const basicColumns = [
   {
     prop: 'good_info_img',
     _slot_: 'good_info_img',
-    label: '详情介绍',
+    label: '详情图片',
     span: 8
   },
   {

+ 5 - 5
src/views/goodStore/goodsOnline/columns.js

@@ -74,11 +74,11 @@ const listCol = [
   //   label: "平台编号",
   //   width: "170px",
   // },
-  {
-    prop: 'supplierName',
-    label: '供应商',
-    width: '150px'
-  },
+  // {
+  //   prop: 'supplierName',
+  //   label: '供应商',
+  //   width: '150px'
+  // },
   {
     prop: 'platform_name',
     label: '平台名称',

+ 6 - 0
src/views/interest/accountQuery/index.vue

@@ -290,6 +290,12 @@ export default {
     },
 
     openModal(id, isDetail, sitem) {
+      if(!sitem.companyCode){
+        const suffix = isDetail ? "查看。" : "编辑。"
+        this.$message.warning("账号 " + sitem.mobile + " 没有设置业务公司,请设置业务公司后再进行" + suffix);
+        return
+      }
+
       this.showModel = true;
       this.modelId = id;
       this.isDetail = isDetail;

+ 6 - 7
src/views/sellOut/deliveryWorkOrder/detail.vue

@@ -18,7 +18,7 @@
                       (statusOptions.find((item) => item.value == sitem.status) || {})
                         .label || '--'
                     "
-                  ></el-tag>
+                  />
                 </template>
                 
 
@@ -32,7 +32,7 @@
                         ) || {}
                       ).label || '--'
                     "
-                  ></el-tag>
+                  />
                 </template>
 
                 <template slot="supplierName">
@@ -74,7 +74,8 @@
               </show-data-table>
             </el-collapse-item>
 
-            <el-collapse-item title="待库管发货" name="2" v-if="sitem.status === '1' && !isSupertube">
+            <!-- v-if="sitem.status === '1' && !isSupertube" -->
+            <el-collapse-item title="待库管发货" name="2" v-if="sitem.status === '1' && !isSupertube && powers.includes('080')">
               <express-node @refresh="() => initData()" :sitem="sitem" />
             </el-collapse-item>
           </el-collapse>
@@ -101,10 +102,8 @@ export default {
   computed: {
     ...mapGetters(['isSupertube']),
     powers() {
-      const tran =
-        this.$store.getters.btnList.find(
-          (item) => item.menu_route == "deliveryWorkOrderDetail"
-        ) || {};
+      const { btnList } = this.$store.getters;
+      const tran = btnList.find((item) => item.menu_route == "deliveryWorkOrderDetail" ) || {};
       const { action } = tran ?? {};
       return action ?? [];
     },

+ 1 - 1
src/views/sellOut/deliveryWorkOrder/index.vue

@@ -321,7 +321,7 @@ export default {
       statusOptions: [
         { value: "0", label: "不可拆单" },
         { value: "1", label: "可拆单" },
-        { value: "2", label: "已拆单发货" },
+        { value: "2", label: "已拆单发货" },
         { value: '3', label: '部分发货' },
         { value: '4', label: '全部发货' },
         { value: '5', label: '已收货' },

+ 1 - 1
src/views/sellOut/hawbWorkbench/index.vue

@@ -201,7 +201,7 @@ export default {
     sendStatusOptions: [
       { value: '0', label: '不可拆单' },
       { value: '1', label: '可拆单' },
-      { value: '2', label: '已拆单发货' },
+      { value: '2', label: '已拆单发货' },
       { value: '3', label: '部分发货' },
       { value: '4', label: '全部发货' },
       { value: '5', label: '已收货' },

+ 1 - 1
src/views/sellOut/hawbWorkbench/search-modal.vue

@@ -187,7 +187,7 @@ export default {
     sendStatusOptions: [
       { value: '0', label: '不可拆单' },
       { value: '1', label: '可拆单' },
-      { value: '2', label: '已拆单发货' },
+      { value: '2', label: '已拆单发货' },
       { value: '3', label: '部分发货' },
       { value: '4', label: '全部发货' },
       { value: '5', label: '已收货' },

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

@@ -20,7 +20,6 @@
                     "
                   ></el-tag>
                 </template>
-                
 
                 <template slot="order_type">
                   <el-tag

+ 264 - 265
src/views/sellOut/salesOrder/components/addEdit.vue

@@ -1,18 +1,18 @@
 <template>
   <el-dialog
+    v-loading="loading"
     :title="title"
     :center="true"
     align="left"
     top="5vh"
     width="1040px"
-    @close="showModelThis = false"
     :close-on-click-modal="false"
     :visible.sync="showModelThis"
-    v-loading="loading"
     element-loading-text="拼命加载中"
     element-loading-spinner="el-icon-loading"
     element-loading-background="rgba(0, 0, 0, 0.8)"
     append-to-body
+    @close="showModelThis = false"
   >
     <el-card style="margin-top: -20px">
       <el-row :gutter="10">
@@ -59,7 +59,7 @@
                     :size="searchSize"
                     :value="ruleForm.sell_code"
                     :disabled="false"
-                    :isDetail="false"
+                    :is-detail="false"
                     @searchChange="supplierChange"
                   />
                 </el-form-item>
@@ -86,7 +86,7 @@
           </el-form>
         </el-col>
         <el-col :span="24" style="padding: 0 0 20px 0">
-          <el-form :model="stockForm" ref="stockForm" :size="'mini'">
+          <el-form ref="stockForm" :model="stockForm" :size="'mini'">
             <el-table
               :data="stockForm.good_stock"
               border
@@ -132,31 +132,31 @@
               <el-table-column fixed="right" width="80" label="操作">
                 <template slot-scope="scope">
                   <el-tooltip
+                    v-if="!scope.row.edit"
                     effect="dark"
                     content="编辑"
-                    v-if="!scope.row.edit"
                     placement="top"
                   >
-                    <i class="el-icon-edit tb-icon" @click="editRow(scope.$index)"></i>
+                    <i class="el-icon-edit tb-icon" @click="editRow(scope.$index)" />
                   </el-tooltip>
 
                   <el-tooltip
+                    v-if="scope.row.edit"
                     effect="dark"
                     content="保存"
-                    v-if="scope.row.edit"
                     placement="top"
                   >
                     <i
                       class="el-icon-circle-check tb-icon"
                       @click="checkStockRow(scope.$index)"
-                    ></i>
+                    />
                   </el-tooltip>
 
                   <el-tooltip effect="dark" content="删除" placement="top">
                     <i
                       class="el-icon-delete tb-icon"
                       @click="deleteRow(scope.$index, stockForm.good_stock)"
-                    ></i>
+                    />
                   </el-tooltip>
                 </template>
               </el-table-column>
@@ -169,12 +169,11 @@
             <el-button
               type="primary"
               size="mini"
-              @click="addrmodel = true"
               style="margin: 0 0 0 10px"
-              >导入收货地址</el-button
-            >
+              @click="addrmodel = true"
+            >导入收货地址</el-button>
           </div>
-          <el-form :model="addrForm" ref="addrForm" :size="'mini'">
+          <el-form ref="addrForm" :model="addrForm" :size="'mini'">
             <el-table
               :data="addrForm.order_addr"
               border
@@ -205,26 +204,26 @@
                       class="el-icon-circle-plus-outline tb-icon"
                       style="color: #6954f0"
                       @click="openHouseModal(-1)"
-                    ></i>
+                    />
                   </el-tooltip>
                 </template>
                 <template slot-scope="scope">
                   <el-tooltip
+                    v-if="!scope.row.edit"
                     effect="dark"
                     content="编辑"
-                    v-if="!scope.row.edit"
                     placement="top"
                   >
                     <i
                       class="el-icon-edit tb-icon"
                       @click="openHouseModal(scope.$index)"
-                    ></i>
+                    />
                   </el-tooltip>
                   <el-tooltip effect="dark" content="删除" placement="top">
                     <i
                       class="el-icon-delete tb-icon"
                       @click="deleteRow(scope.$index, addrForm.order_addr)"
-                    ></i>
+                    />
                   </el-tooltip>
                 </template>
               </el-table-column>
@@ -239,7 +238,7 @@
             @refresh="addrRefresh"
           />
           <addr-add-edit-modal
-            :showModel="showAddrAddEditModal"
+            :show-model="showAddrAddEditModal"
             :index="AddrAddEditModalIndex"
             :sitem="AddrAddEditModalSitem"
             @cancel="showAddrAddEditModal = false"
@@ -254,9 +253,9 @@
   </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,
@@ -264,246 +263,246 @@ import {
   isEmoticon,
   isSpecialSymbol,
   hasSpace,
-  isAddr,
-} from "@/utils/validate";
-import inAddrModel from "@/components/in-addr-model";
-import AddrAddEditModal from "@/components/addr-add-edit-modal";
+  isAddr
+} from '@/utils/validate'
+import inAddrModel from '@/components/in-addr-model'
+import AddrAddEditModal from '@/components/addr-add-edit-modal'
 export default {
-  name: "allot",
-  props: ["showModel", "id"],
-  mixins: [resToken],
+  name: 'Allot',
   components: { searchStockGoodModal, inAddrModel, AddrAddEditModal },
+  mixins: [resToken],
+  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: [], //销售方选择
+        sell_code: [] // 销售方选择
       },
       rulesThis: this.rules,
       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'
+          }
+        ]
       },
       addrForm: {
-        order_addr: [], //收货地址
+        order_addr: [] // 收货地址
       },
       addrRules: {
         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",
-            validator: validatecontactor,
-          },
+            trigger: 'blur',
+            validator: validatecontactor
+          }
         ],
         mobile: [
           {
             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'
+          }
+        ]
       },
       stockForm: {
-        good_stock: [], //出货仓库
+        good_stock: [] // 出货仓库
       },
       loading: false,
-      id: "",
-    };
+      id: ''
+    }
   },
   watch: {
-    showModel: function (val) {
-      this.showModelThis = val;
+    showModel: function(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;
-      let model = {
-        wsm_code: "",
+      this.loading = true
+      const model = {
+        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;
+          good_stock: [] // 出货仓库
+        }
+        const { list } = res.data
         list.forEach((v) => {
-          let model = {
+          const model = {
             num: v.usable_stock,
             usable_stock: v.usable_stock,
             wsm_name: v.wsm_name,
@@ -511,57 +510,57 @@ export default {
             wsm_supplierNo: v.wsm_supplierNo,
             wsm_code: v.wsm_code,
             original_price: v.original_price,
-            edit: false,
-          };
-          this.stockForm.good_stock.push(model);
-        });
+            edit: false
+          }
+          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: [], //销售方公司
-          };
+            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: [], //出货仓库
-          };
+            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: [],
-          };
+            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,92 +570,92 @@ export default {
           addr_code,
           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;
+          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: [], //出货仓库
-        };
+          good_stock: [] // 出货仓库
+        }
       }
     },
     editRow(index) {
-      let 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) {
-      let total = parseInt(this.stockForm.good_stock[index].usable_stock),
-        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("当前已有地址在编辑,请保存后再试!");
@@ -677,123 +676,123 @@ 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) => {
         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));
-          let model = {
+          )
+          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,
-            addrT = 0,
-            isStockOk = true,
-            isSEdit = false,
-            isAEdit = false;
+            good_stock: []
+          }
+          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);
-            let model1 = {
+            stockT += parseInt(v1.num)
+            const model1 = {
               num: v1.num,
-              wsm_code: v1.wsm_code,
-            };
-            model.good_stock.push(model1);
-          });
+              wsm_code: v1.wsm_code
+            }
+            model.good_stock.push(model1)
+          })
           order_addr.forEach((v2) => {
             if (v2.edit) {
-              isAEdit = true;
+              isAEdit = true
             }
-            addrT += parseInt(v2.receipt_quantity);
-            let model2 = {
+            addrT += parseInt(v2.receipt_quantity)
+            const model2 = {
               contactor: v2.contactor,
               mobile: v2.mobile,
               arrive_time: v2.arrive_time,
               addr: v2.addr,
               receipt_quantity: v2.receipt_quantity,
-              addr_code: v2.addr_code,
-            };
-            model.order_addr.push(model2);
-          });
+              addr_code: v2.addr_code
+            }
+            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
           }
 
-          let 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>

+ 19 - 0
src/views/sellOut/salesOrder/components/addForm.vue

@@ -650,6 +650,7 @@ import { addColumns } from "./ShowDataTableColumns";
 import { mapGetters } from "vuex";
 import { accMul } from "@/utils/validate";
 import companyHelper from "@/mixins/companyHelper";
+import { replaceTextWrapAndSpace } from "@/utils";
 
 export default {
   name: "salesOrderDetail",
@@ -1375,6 +1376,24 @@ export default {
           model.is_activity = key_0 === "is_activity_0" ? "0" : "1";
           model.goodtype = key_0 === "is_activity_1" ? "1" : key_1;
           model.act_code = key_0 === "is_activity_1" ? key_1 : "";
+
+          const keys = Object.keys(model);
+          keys.forEach(key => {
+            if(typeof model[key] === 'string'){
+              model[key] = replaceTextWrapAndSpace(model[key])
+            }
+          });
+
+          if(model.addrlist && model.addrlist.length > 0){
+            model['addrlist'].forEach((_,index) => {
+              model.addrlist[index].addr = replaceTextWrapAndSpace(model.addrlist[index].addr);
+              model.addrlist[index].contactor = replaceTextWrapAndSpace(model.addrlist[index].contactor);
+              model.addrlist[index].mobile = replaceTextWrapAndSpace(model.addrlist[index].mobile);
+            })
+          }
+
+          console.log(model);
+          return
           let res = await asyncRequest.add(model);
           this.loading = false;
           if (res && res.code === 0) {

+ 2 - 1
src/views/supplierSellOut/supplierDeliveryWorkOrder/detail.vue

@@ -74,7 +74,8 @@
               </show-data-table>
             </el-collapse-item>
 
-            <el-collapse-item title="待库管发货" name="2" v-if="sitem.status === '1' && !isSupertube">
+            <!-- v-if="sitem.status === '1' && !isSupertube" -->
+            <el-collapse-item title="待库管发货" name="2">
               <express-node @refresh="() => initData()" :sitem="sitem" />
             </el-collapse-item>
           </el-collapse>

+ 3 - 2
src/views/supplierSellOut/supplierReturnWorkOrder/components/wait-stockman.vue

@@ -7,12 +7,13 @@
     label-width="90px"
   >
     <el-row>
-      <el-col :span="12"
-        ><el-form-item label="货物情况" prop="post_name">
+      <el-col :span="12">
+        <el-form-item label="货物情况" prop="post_name">
           <el-select placeholder="货物情况" style="width:100%" value="0">
             <el-option v-for="opt in statusOptions" :key="opt.value" :value="opt.value" :label="opt.label" />
           </el-select>
         </el-form-item>
+
         <el-form-item label="丢失数量" prop="post_fee">
           <digital-input
             :values="ruleForm.post_fee"

+ 3 - 4
src/views/supplierSellOut/supplierReturnWorkOrder/detail.vue

@@ -18,9 +18,8 @@
                       (statusOptions.find((item) => item.value == sitem.status) || {})
                         .label || '--'
                     "
-                  ></el-tag>
+                  />
                 </template>
-                
 
                 <template slot="order_type">
                   <el-tag
@@ -32,7 +31,7 @@
                         ) || {}
                       ).label || '--'
                     "
-                  ></el-tag>
+                  />
                 </template>
 
                 <template slot="supplierName">
@@ -109,7 +108,7 @@ export default {
     powers() {
       const tran =
         this.$store.getters.btnList.find(
-          (item) => item.menu_route == "supplierReturnWorkOrderDetail"
+          (item) => item.menu_route == "supplierReturnWorkOrder"
         ) || {};
       const { action } = tran ?? {};
       return action ?? [];