snow 2 years ago
parent
commit
1c7b1b5e86

File diff suppressed because it is too large
+ 0 - 0
dist/static/js/0.js


+ 10 - 0
src/views/sellOut/beforeReturnGoodWorkOrder/columns.js

@@ -32,6 +32,16 @@ export default [
     _slot_: 'order_type',
     width: '100px'
   },
+  {
+    prop: 'good_code',
+    label: '商品编码',
+    width: '160px'
+  },
+  {
+    prop: 'good_name',
+    label: '商品名称',
+    width: '160px'
+  },
   {
     prop: 'return_wsm_code',
     label: '退回仓库编码',

+ 58 - 28
src/views/sellOut/beforeReturnGoodWorkOrder/index.vue

@@ -28,38 +28,38 @@
           <div style="width: 100%">
             <el-row style="padding: 0 0 0 80px">
               <el-col :span="24">
-                <!-- 时间区间 -->
-              <el-col :span="4" style="margin-right:10px">
-                <el-input v-model="parmValue.saleReturnChildCode"  placeholder="售前退货工单编号" size="mini"  clearable @change="pageInfo.curr=1;parmValue.page=1;searchList()" />
+              <el-col :span="8" style="margin-right:10px">
+                <el-input placeholder="关键字" size="mini" v-model="queryValue" @blur="pageInfo.curr=1;parmValue.page=1;searchList()">
+                  <template #prepend>
+                    <el-select style="width:160px" v-model="queryKey" @change="pageInfo.curr=1;parmValue.page=1;searchList()">
+                      <el-option value="saleReturnChildCode" label="售前退货工单编码" />
+                      <el-option value="returnCode" label="售前退货单编码" />
+                      <el-option value="orderCode" label="订单编码" />
+                      <el-option value="outChildCode" label="发货工单编码" />
+                      <el-option value="return_wsm_code" label="退货仓库编码" />
+                    </el-select>
+                  </template>
+                </el-input>
               </el-col>
 
               <el-col :span="4">
-                <el-select placeholder="退货工单状态" size="mini" clearable v-model="parmValue.status" @change="pageInfo.curr=1;parmValue.page=1;searchList()">
-                  <el-option label="待收货" value="1" />
-                  <el-option label="已收货" value="2" />
-                </el-select>
+                <search-supplier
+                  :size="'mini'"
+                  style="width: 100%"
+                  :value="supplierNo"
+                  :disabled="false"
+                  :placeholder="'供应商名称'"
+                  :names="''"
+                  :isDetail="false"
+                  :noDisabled="true"
+                  @searchChange="supplierChange"
+                />
               </el-col>
 
-              <el-col :span="4" style="width: 150px;margin-left:10px">
-                <el-select
-                  :size="searchSize"
-                  v-model="parmValue.order_type"
-                  filterable
-                  clearable
-                  placeholder="商品类型"
-                  style="width: 100%"
-                  @change="
-                    pageInfo.curr = 1;
-                    parmValue.page = 1;
-                    searchList();
-                  "
-                >
-                  <el-option
-                    v-for="item in xs_order_type_options"
-                    :key="'orderstatus' + item.id"
-                    :label="item.label"
-                    :value="item.id"
-                  />
+              <el-col :span="4">
+                <el-select style="width:100%;margin-left:10px" placeholder="退货工单状态" size="mini" clearable v-model="parmValue.status" @change="pageInfo.curr=1;parmValue.page=1;searchList()">
+                  <el-option label="待收货" value="1" />
+                  <el-option label="已收货" value="2" />
                 </el-select>
               </el-col>
 
@@ -87,6 +87,31 @@
                     刷新
                   </el-button>
                 </el-col>
+
+                <el-col :span="24">
+                  <el-col :span="4" style="width: 150px;margin-top:10px">
+                    <el-select
+                      :size="searchSize"
+                      v-model="parmValue.order_type"
+                      filterable
+                      clearable
+                      placeholder="商品类型"
+                      style="width: 100%"
+                      @change="
+                        pageInfo.curr = 1;
+                        parmValue.page = 1;
+                        searchList();
+                      "
+                    >
+                      <el-option
+                        v-for="item in xs_order_type_options"
+                        :key="'orderstatus' + item.id"
+                        :label="item.label"
+                        :value="item.id"
+                      />
+                    </el-select>
+                   </el-col>
+                </el-col>
               </el-col>
             </el-row>
           </div>
@@ -215,12 +240,15 @@ export default {
       select: "outChildCode", //默认选择下拉框
       s_input: "", //搜索框内容
       select_list:[],
+      supplierNo:[],
       sitem: null,
       // 状态
       statusOptions: [
         { value: "1", label: "待收货" },
         { value: "2", label: "已收货" },
       ],
+      queryKey: "saleReturnChildCode",
+      queryValue: "",
       loading: false,
       showModel: false,
       isDetail: false,
@@ -449,9 +477,11 @@ export default {
       const res = await asyncRequest.list({
         ...model,
         [this.select]: this.s_input,
+        [this.queryKey]: this.queryValue,
         customer_code: Array.isArray(this.parmValue.customer_code) ? this.parmValue.customer_code[0] : this.parmValue.customer_code,
         supplierNo: Array.isArray(this.supplierNo) ? this.supplierNo[0] : this.supplierNo,
-        needRela: true
+        companyNo: this.currentCompany,
+        noRelation: true
       });
 
       if (res && res.code === 0 && res.data) {

+ 10 - 0
src/views/sellOut/returnGoodWorkOrder/columns.js

@@ -52,6 +52,16 @@ export default [
     _slot_: 'order_type',
     width: '100px'
   },
+  {
+    prop: 'good_code',
+    label: '商品编码',
+    width: '160px'
+  },
+  {
+    prop: 'good_name',
+    label: '商品名称',
+    width: '160px'
+  },
   {
     prop: 'return_wsm_code',
     label: '退货仓库编码',

+ 34 - 5
src/views/sellOut/returnGoodWorkOrder/index.vue

@@ -28,11 +28,34 @@
           <div style="width: 100%">
             <el-row style="padding: 0 0 0 80px">
               <el-col :span="24">
-              <el-col :span="4" style="margin-right:10px" >
-                <el-input v-model="parmValue.returnCode"  placeholder="售后退货单号" size="mini" clearable @change="pageInfo.curr=1;parmValue.page=1;searchList()" />
+                <el-col :span="6" style="margin-right:10px">
+                <el-input placeholder="关键字" size="mini" v-model="queryValue" @blur="pageInfo.curr=1;parmValue.page=1;searchList()">
+                  <template #prepend>
+                    <el-select style="width:130px" v-model="queryKey" @change="pageInfo.curr=1;parmValue.page=1;searchList()">
+                      <el-option value="returnCode" label="售后退货单编码" />
+                      <el-option value="orderCode" label="订单编码" />
+                      <el-option value="outChildCode" label="发货工单编码" />
+                      <el-option value="return_wsm_code" label="退货仓库编码" />
+                    </el-select>
+                  </template>
+                </el-input>
               </el-col>
 
-              <el-col :span="4" style="margin-right:10px">
+              <el-col :span="4">
+                <search-supplier
+                  :size="'mini'"
+                  style="width: 100%"
+                  :value="supplierNo"
+                  :disabled="false"
+                  :placeholder="'供应商名称'"
+                  :names="''"
+                  :isDetail="false"
+                  :noDisabled="true"
+                  @searchChange="supplierChange"
+                />
+              </el-col>
+
+              <el-col :span="4" style="margin:0px 10px">
                 <el-select style="width:100%" placeholder="仓库类型" size="mini" clearable v-model="parmValue.type" @change="pageInfo.curr=1;parmValue.page=1;searchList()">
                   <el-option label="销售仓" value="1" />
                   <el-option label="次品仓" value="2" />
@@ -237,7 +260,7 @@ export default {
     powers() {
       const tran =
         this.$store.getters.btnList.find(
-          (item) => item.menu_route == "deliveryWorkOrder"
+          (item) => item.menu_route == "returnGoodWorkOrder"
         ) || {};
       const { action } = tran ?? {};
       return action ?? [];
@@ -251,6 +274,7 @@ export default {
       select: "outChildCode", //默认选择下拉框
       s_input: "", //搜索框内容
       select_list:[],
+      supplierNo:[],
       sitem: null,
       // 状态
       statusOptions: [
@@ -270,6 +294,8 @@ export default {
         size: 15, // 每页显示条数
         // order_type: "",
       },
+      queryKey: "returnCode",
+      queryValue: "",
       tableData: [],
       passwordModel: false,
       passwordModelId: 0,
@@ -487,8 +513,11 @@ export default {
         ...model,
         is_authority: "1",
         [this.select]: this.s_input,
+        [this.queryKey]: this.queryValue,
+        companyNo: this.currentCompany,
+        supplierNo:Array.isArray(this.supplierNo) ? this.supplierNo[0] : this.supplierNo,
         customer_code: Array.isArray(this.parmValue.customer_code) ? this.parmValue.customer_code[0] : this.parmValue.customer_code,
-        needRela: true
+        noRelation: true
       });
 
       if (res && res.code === 0 && res.data) {

+ 10 - 0
src/views/supplierSellOut/supplierBeforeReturnGoodWorkOrder/columns.js

@@ -38,6 +38,16 @@ export default [
     _slot_: 'order_type',
     width: '100px'
   },
+  {
+    prop: 'good_code',
+    label: '商品编码',
+    width: '160px'
+  },
+  {
+    prop: 'good_name',
+    label: '商品名称',
+    width: '160px'
+  },
   {
     prop: 'return_wsm_code',
     label: '退回仓库编码',

+ 70 - 40
src/views/supplierSellOut/supplierBeforeReturnGoodWorkOrder/index.vue

@@ -28,40 +28,36 @@
           <div style="width: 100%">
             <el-row style="padding: 0 0 0 80px">
               <el-col :span="24">
-              <el-col :span="4" style="margin-right:10px">
-                <el-input v-model="parmValue.saleReturnChildCode"  placeholder="售前退货工单编号" size="mini"  clearable @change="pageInfo.curr=1;parmValue.page=1;searchList()" />
+              <el-col :span="6" style="margin-right:10px">
+                <el-input placeholder="关键字" size="mini" v-model="queryValue" @blur="pageInfo.curr=1;parmValue.page=1;searchList()">
+                  <template #prepend>
+                    <el-select style="width:160px" v-model="queryKey" @change="pageInfo.curr=1;parmValue.page=1;searchList()">
+                      <el-option value="saleReturnChildCode" label="售前退货工单编码" />
+                      <el-option value="returnCode" label="退货单编码" />
+                      <el-option value="orderCode" label="订单编码" />
+                      <el-option value="outChildCode" label="发货工单编码" />
+                      <el-option value="return_wsm_code" label="退货仓库编码" />
+                    </el-select>
+                  </template>
+                </el-input>
               </el-col>
-              
+
               <el-col :span="4">
-                <el-select style="width:100%" placeholder="退货工单状态" size="mini" clearable v-model="parmValue.status" @change="pageInfo.curr=1;parmValue.page=1;searchList()">
+                <search-work-company
+                :value="companyNo"
+                :placeholder="'业务公司'"
+                :size="searchSize"
+                @searchChange="companyNosearchChange"
+              />
+              </el-col>
+
+              <el-col :span="4">
+                <el-select style="width:100%;margin-left:10px" placeholder="退货工单状态" size="mini" clearable v-model="parmValue.status" @change="pageInfo.curr=1;parmValue.page=1;searchList()">
                   <el-option label="待收货" value="1" />
                   <el-option label="已收货" value="2" />
                 </el-select>
               </el-col>
 
-              <el-col :span="4" style="width: 150px;margin-left:10px">
-                <el-select
-                  :size="searchSize"
-                  v-model="parmValue.order_type"
-                  filterable
-                  clearable
-                  placeholder="商品类型"
-                  style="width: 100%"
-                  @change="
-                    pageInfo.curr = 1;
-                    parmValue.page = 1;
-                    searchList();
-                  "
-                >
-                  <el-option
-                    v-for="item in xs_order_type_options"
-                    :key="'orderstatus' + item.id"
-                    :label="item.label"
-                    :value="item.id"
-                  />
-                </el-select>
-              </el-col>
-              
                <el-col
                   :span="4"
                   class="fr"
@@ -86,6 +82,31 @@
                     刷新
                   </el-button>
                 </el-col>
+
+                <el-col :span="24">
+                  <el-col :span="4" style="width: 150px;margin-top:10px">
+                    <el-select
+                      :size="searchSize"
+                      v-model="parmValue.order_type"
+                      filterable
+                      clearable
+                      placeholder="商品类型"
+                      style="width: 100%"
+                      @change="
+                        pageInfo.curr = 1;
+                        parmValue.page = 1;
+                        searchList();
+                      "
+                    >
+                      <el-option
+                        v-for="item in xs_order_type_options"
+                        :key="'orderstatus' + item.id"
+                        :label="item.label"
+                        :value="item.id"
+                      />
+                    </el-select>
+                   </el-col>
+                </el-col>
               </el-col>
             </el-row>
           </div>
@@ -131,10 +152,14 @@
           <span>{{ scope.row.return_wsm_name }}</span>
         </template>
 
+        <template #type="{scope}">
+          <el-tag size="mini">{{ scope.row.type === '1' ? '未发货退货' : '售后退货' }}</el-tag>
+        </template>
+
         <template #stock_type="{scope}">
           <el-tag size="mini">{{scope.row.type === '1' ? '销售仓' : '次品仓'}}</el-tag>
         </template>
-        
+
         <template #order_type="{ scope }">
           <el-tag
             :size="tablebtnSize"
@@ -181,7 +206,6 @@
     </div>
   </div>
 </template>
-
    <script>
 import mixinPage from "@/mixins/elPaginationHandle";
 import resToken from "@/mixins/resToken";
@@ -209,27 +233,33 @@ export default {
   },
   data() {
     return {
+      companyNo:"",
       xs_order_type_options,
       xs_order_source_options,
       fileUrl: urlConfig.baseURL,
       select: "outChildCode", //默认选择下拉框
       s_input: "", //搜索框内容
       select_list:[],
+      supplierNo:[],
       sitem: null,
       // 状态
       statusOptions: [
-        { value: "1", label: "收货" },
+        { value: "1", label: "收货" },
         { value: "2", label: "已收货" },
       ],
+      queryKey: "saleReturnChildCode",
+      queryValue: "",
       loading: false,
       showModel: false,
       isDetail: false,
       modelId: 0,
       parmValue: {
-        status: "", //节点状态
+        order_type:"",
+        saleReturnChildCode: "",
+        status: "",
         page: 1, // 页码
         size: 15, // 每页显示条数
-        order_type: "",
+        // order_type: "",
       },
       tableData: [],
       passwordModel: false,
@@ -281,9 +311,9 @@ export default {
   },
 
   methods: {
-    async supplierChange(e) {
-      const { code, label } = e;
-      this.supplierNo = code ? [code] : [];
+    async companyNosearchChange(e) {
+      const { code } = e
+      this.companyNo = code || ''
       this.searchList()
     },
     customer_code_change(e) {
@@ -298,7 +328,7 @@ export default {
       if (!this.loading) {
         this.loading = true;
         let httpType = `aplication/zip`;
-  
+
         let model = JSON.parse(JSON.stringify(this.parmValue));
         delete model['s_input']
 
@@ -369,12 +399,11 @@ export default {
         model.preModel = JSON.stringify(routerModel);
 
         this.routeGoto(toRouter, model);
-      } 
+      }
     },
     restSearch() {
       this.s_input = ""; //清除输入框内容
       this.select = "outChildCode"; //清除下拉框选中项
-
       this.parmValue = {
         order_type: "",
         company_name: "", //申请人部门
@@ -388,7 +417,7 @@ export default {
         page: 1, // 页码
         size: 15, // 每页显示条数
       };
-      
+
       // 表格 - 分页
       this.pageInfo = {
         size: 15,
@@ -448,8 +477,10 @@ export default {
       const res = await asyncRequest.list({
         ...model,
         [this.select]: this.s_input,
+        [this.queryKey]: this.queryValue,
         customer_code: Array.isArray(this.parmValue.customer_code) ? this.parmValue.customer_code[0] : this.parmValue.customer_code,
         supplierNo: this.currentCompany,
+        companyNo: this.companyNo,
         noRelation: true
       });
 
@@ -505,4 +536,3 @@ export default {
 .sellReturn {
 }
 </style>
-   

+ 10 - 0
src/views/supplierSellOut/supplierReturnWorkOrder/columns.js

@@ -47,6 +47,16 @@ export default [
     _slot_: 'order_type',
     width: '100px'
   },
+  {
+    prop: 'good_code',
+    label: '商品编码',
+    width: '160px'
+  },
+  {
+    prop: 'good_name',
+    label: '商品名称',
+    width: '160px'
+  },
   {
     prop: 'return_wsm_code',
     label: '退货仓库编码',

+ 170 - 149
src/views/supplierSellOut/supplierReturnWorkOrder/index.vue

@@ -1,6 +1,8 @@
 <template>
   <div class="sellReturn pagePadding">
-    <div v-if="powers.some((i) => i == '001')">
+    <div
+      v-if=" powers.some((i) => i == '001')"
+    >
       <ex-table
         v-loading="loading"
         :table="table"
@@ -26,62 +28,63 @@
           <div style="width: 100%">
             <el-row style="padding: 0 0 0 80px">
               <el-col :span="24">
-                <el-col :span="4" style="margin-right: 10px">
-                  <el-input
-                    v-model="parmValue.returnCode"
-                    placeholder="售后退货单号"
-                    size="mini"
-                    clearable
-                    @change="
-                      pageInfo.curr = 1;
-                      parmValue.page = 1;
-                      searchList();
-                    "
-                  />
-                </el-col>
+                <el-col :span="6" style="margin-right:10px">
+                <el-input placeholder="关键字" size="mini" v-model="queryValue" @blur="pageInfo.curr=1;parmValue.page=1;searchList()">
+                  <template #prepend>
+                    <el-select style="width:120px" v-model="queryKey" @change="pageInfo.curr=1;parmValue.page=1;searchList()">
+                      <el-option value="returnCode" label="退货单编码" />
+                      <el-option value="orderCode" label="订单编码" />
+                      <el-option value="outChildCode" label="发货工单编码" />
+                      <el-option value="return_wsm_code" label="退货仓库编码" />
+                    </el-select>
+                  </template>
+                </el-input>
+              </el-col>
 
-                <el-col :span="4" style="margin-right: 10px">
-                  <el-select
-                    style="width: 100%"
-                    placeholder="仓库类型"
-                    size="mini"
-                    clearable
-                    v-model="parmValue.type"
-                    @change="
-                      pageInfo.curr = 1;
-                      parmValue.page = 1;
-                      searchList();
-                    "
-                  >
-                    <el-option label="销售仓" value="1" />
-                    <el-option label="次品仓" value="2" />
-                  </el-select>
-                </el-col>
+              <el-col :span="4">
+                <search-work-company
+                :value="companyNo"
+                :placeholder="'业务公司'"
+                :size="searchSize"
+                @searchChange="companyNosearchChange"
+              />
+              </el-col>
 
-                <el-col :span="4" style="margin-left: 10px">
-                  <el-select
-                    :size="searchSize"
-                    v-model="parmValue.order_type"
-                    filterable
-                    clearable
-                    placeholder="商品类型"
-                    style="width: 100%"
-                    @change="
-                      pageInfo.curr = 1;
-                      parmValue.page = 1;
-                      searchList();
-                    "
-                  >
-                    <el-option
-                      v-for="item in xs_order_type_options"
-                      :key="'orderstatus' + item.id"
-                      :label="item.label"
-                      :value="item.id"
-                    />
-                  </el-select>
-                </el-col>
+              <el-col :span="4" style="margin:0px 10px">
+                <el-select style="width:100%" placeholder="仓库类型" size="mini" clearable v-model="parmValue.type" @change="pageInfo.curr=1;parmValue.page=1;searchList()">
+                  <el-option label="销售仓" value="1" />
+                  <el-option label="次品仓" value="2" />
+                </el-select>
+              </el-col>
 
-                <el-col :span="4" class="fr" style="width: 66px; padding: 0 0 0 10px">
+              <el-col :span="4" style="width: 150px;margin-left:10px">
+                <el-select
+                  :size="searchSize"
+                  v-model="parmValue.order_type"
+                  filterable
+                  clearable
+                  placeholder="商品类型"
+                  style="width: 100%"
+                  @change="
+                    pageInfo.curr = 1;
+                    parmValue.page = 1;
+                    searchList();
+                  "
+                >
+                  <el-option
+                    v-for="item in xs_order_type_options"
+                    :key="'orderstatus' + item.id"
+                    :label="item.label"
+                    :value="item.id"
+                  />
+                </el-select>
+              </el-col>
+              
+               <el-col
+                  :span="4"
+                  class="fr"
+                  style="width: 66px; padding: 0 0 0 10px"
+                >
                   <el-button
                     type="warning"
                     class="fr"
@@ -116,37 +119,87 @@
           ></el-tag>
         </template>
 
-        <template #returnWsm="{ scope }">
+        <template #returnWsm="{scope}">
+          <el-popover placement="top" width="360" trigger="hover">
+             <i class="el-icon-warning-outline" slot="reference"></i>
+             <ul>
+               <li><h3>退货仓库</h3></li>
+               <li>
+                 <span>编号:</span
+                 ><span>{{ scope.row.return_wsm_code }}</span>
+               </li>
+               <li>
+                 <span>名称:</span
+                 ><span>{{ scope.row.return_wsm_name}}</span>
+               </li>
+               <li>
+                 <span>负责人:</span
+                 ><span>{{ scope.row.return_contactor_name}}</span>
+               </li>
+               <li>
+                 <span>供应商编码:</span
+                 ><span>{{ scope.row.return_supplierNo }}</span>
+               </li>
+               <li>
+                 <span>供应商名称:</span
+                 ><span>{{ scope.row.return_supplierName }}</span>
+               </li>
+             </ul>
+           </el-popover>
+           <span>{{ scope.row.return_wsm_name }}</span>
+        </template>
+
+        <template #order_type="{scope}">
+          <el-tag size="mini">{{(xs_order_type_options.find(({id}) => id === scope.row.order_type) || {})?.label || '--'}}</el-tag>
+        </template>
+
+        <template #stock_type="{scope}">
+          <el-tag size="mini">{{scope.row.type === '1' ? '销售仓' : '次品仓'}}</el-tag>
+        </template>
+
+        <template #sendWsm="{scope}">
           <el-popover placement="top" width="360" trigger="hover">
             <i class="el-icon-warning-outline" slot="reference"></i>
-            <ul>
-              <li><h3>退货仓库</h3></li>
-              <li>
-                <span>编号:</span><span>{{ scope.row.return_wsm_code }}</span>
-              </li>
-              <li>
-                <span>名称:</span><span>{{ scope.row.return_wsm_name }}</span>
-              </li>
-              <li>
-                <span>负责人:</span><span>{{ scope.row.return_contactor_name }}</span>
-              </li>
-              <li>
-                <span>供应商编码:</span><span>{{ scope.row.return_supplierNo }}</span>
-              </li>
-              <li>
-                <span>供应商名称:</span><span>{{ scope.row.return_supplierName }}</span>
-              </li>
-            </ul>
-          </el-popover>
-          <span>{{ scope.row.return_wsm_name }}</span>
+             <ul>
+               <li><h3>退货仓库</h3></li>
+               <li>
+                 <span>编号:</span
+                 ><span>{{ scope.row.send_wsm_code }}</span>
+               </li>
+               <li>
+                 <span>名称:</span
+                 ><span>{{ scope.row.send_wsm_name}}</span>
+               </li>
+               <li>
+                 <span>负责人:</span
+                 ><span>{{ scope.row.send_contactor_name}}</span>
+               </li>
+               <li>
+                 <span>供应商编码:</span
+                 ><span>{{ scope.row.send_supplierNo }}</span>
+               </li>
+               <li>
+                 <span>供应商名称:</span
+                 ><span>{{ scope.row.send_supplierName }}</span>
+               </li>
+             </ul>
+           </el-popover>
+           <span>{{ scope.row.send_wsm_name }}</span>
         </template>
 
+        <template #type="{scope}">
+          <el-tag size="mini">{{ scope.row.type === '1' ? '未发货退货' : '售后退货' }}</el-tag>
+        </template>
+        
         <template #order_type="{ scope }">
           <el-tag
-            size="mini"
+            :size="tablebtnSize"
             v-text="
-              (xs_order_type_options.find((id) => id === scope.row.order_type) || {})
-                .label || '--'
+              (
+                xs_order_type_options.find(
+                  (item) => item.id == scope.row.order_type
+                ) || {}
+              ).label || '--'
             "
           ></el-tag>
         </template>
@@ -156,47 +209,13 @@
             :size="tablebtnSize"
             v-text="
               (
-                xs_order_source_options.find(
+              xs_order_source_options.find(
                   (item) => item.id == scope.row.order_source
                 ) || {}
               ).label || '--'
             "
           ></el-tag>
         </template>
-        <template #stock_type="{ scope }">
-          <el-tag size="mini">{{ scope.row.type === "1" ? "销售仓" : "次品仓" }}</el-tag>
-        </template>
-
-        <template #sendWsm="{ scope }">
-          <el-popover placement="top" width="360" trigger="hover">
-            <i class="el-icon-warning-outline" slot="reference"></i>
-            <ul>
-              <li><h3>退货仓库</h3></li>
-              <li>
-                <span>编号:</span><span>{{ scope.row.send_wsm_code }}</span>
-              </li>
-              <li>
-                <span>名称:</span><span>{{ scope.row.send_wsm_name }}</span>
-              </li>
-              <li>
-                <span>负责人:</span><span>{{ scope.row.send_contactor_name }}</span>
-              </li>
-              <li>
-                <span>供应商编码:</span><span>{{ scope.row.send_supplierNo }}</span>
-              </li>
-              <li>
-                <span>供应商名称:</span><span>{{ scope.row.send_supplierName }}</span>
-              </li>
-            </ul>
-          </el-popover>
-          <span>{{ scope.row.send_wsm_name }}</span>
-        </template>
-
-        <template #type="{ scope }">
-          <el-tag size="mini">{{
-            scope.row.type === "1" ? "未发货退货" : "售后退货"
-          }}</el-tag>
-        </template>
 
         <template #operation="{ scope }">
           <el-tooltip
@@ -218,13 +237,12 @@
     </div>
   </div>
 </template>
-
-<script>
+   <script>
 import mixinPage from "@/mixins/elPaginationHandle";
 import resToken from "@/mixins/resToken";
 import asyncRequest from "@/apis/service/sellOut/returnGoodWorkOrder";
-import { xs_order_type_options, xs_order_source_options } from "@/assets/js/statusList";
-import companyHelper from "@/mixins/companyHelper";
+import { xs_order_type_options ,xs_order_source_options} from "@/assets/js/statusList";
+import companyHelper from "@/mixins/companyHelper"
 import urlConfig from "@/apis/url-config";
 import { mapGetters } from "vuex";
 import columns from "./columns";
@@ -237,7 +255,7 @@ export default {
     powers() {
       const tran =
         this.$store.getters.btnList.find(
-          (item) => item.menu_route == "supplierDeliveryWorkOrder"
+          (item) => item.menu_route == "supplierReturnWorkOrder"
         ) || {};
       const { action } = tran ?? {};
       return action ?? [];
@@ -245,12 +263,14 @@ export default {
   },
   data() {
     return {
+      companyNo: "",
       xs_order_type_options,
       xs_order_source_options,
       fileUrl: urlConfig.baseURL,
       select: "outChildCode", //默认选择下拉框
       s_input: "", //搜索框内容
-      select_list: [],
+      select_list:[],
+      supplierNo:[],
       sitem: null,
       // 状态
       statusOptions: [
@@ -262,12 +282,16 @@ export default {
       isDetail: false,
       modelId: 0,
       parmValue: {
-        returnCode: "",
-        status: "", //节点状态
+        type:'',
+        order_type: "",
+        returnCode:"",
+        status: "",
         page: 1, // 页码
         size: 15, // 每页显示条数
         // order_type: "",
       },
+      queryKey: "returnCode",
+      queryValue: "",
       tableData: [],
       passwordModel: false,
       passwordModelId: 0,
@@ -318,10 +342,10 @@ export default {
   },
 
   methods: {
-    async supplierChange(e) {
-      const { code, label } = e;
-      this.supplierNo = code ? [code] : [];
-      this.searchList();
+    async companyNosearchChange(e) {
+      const { code } = e
+      this.companyNo = code || ''
+      this.searchList()
     },
     customer_code_change(e) {
       if (e && e.code) {
@@ -331,26 +355,23 @@ export default {
       }
       this.searchList();
     },
-    handleExport() {
+    handleExport(){
       if (!this.loading) {
         this.loading = true;
         let httpType = `aplication/zip`;
-
+  
         let model = JSON.parse(JSON.stringify(this.parmValue));
-        delete model["s_input"];
+        delete model['s_input']
 
         axios({
           method: "post",
-          url: this.fileUrl + "/admin/child_export",
+          url: this.fileUrl +  "/admin/child_export",
           responseType: "blob",
           data: {
             ...model,
             [this.select]: this.s_input,
-            customer_code: Array.isArray(this.parmValue.customer_code)
-              ? this.parmValue.customer_code[0]
-              : this.parmValue.customer_code,
-            supplierNo: this.currentCompany,
-            noRelation: true,
+            customer_code: Array.isArray(this.parmValue.customer_code) ? this.parmValue.customer_code[0] : this.parmValue.customer_code,
+            needRela: true
           },
           headers: {
             Accept: httpType,
@@ -387,8 +408,8 @@ export default {
           });
       }
     },
-    handleSelection(order) {
-      const { list } = order;
+    handleSelection(order){
+      const { list } = order
       this.select_list = list;
     },
     getRouter(toRouter, queryId) {
@@ -408,7 +429,7 @@ export default {
         model.preModel = JSON.stringify(routerModel);
 
         this.routeGoto(toRouter, model);
-      }
+      } 
     },
     restSearch() {
       this.s_input = ""; //清除输入框内容
@@ -417,7 +438,7 @@ export default {
       this.parmValue = {
         order_type: "",
         company_name: "", //申请人部门
-        good_code: "",
+        good_code:"",
         returnCode: "", //销售退货code
         orderCode: "", //销售订单code
         apply_name: "", //申请人
@@ -427,7 +448,7 @@ export default {
         page: 1, // 页码
         size: 15, // 每页显示条数
       };
-
+      
       // 表格 - 分页
       this.pageInfo = {
         size: 15,
@@ -452,7 +473,7 @@ export default {
         .then(async () => {
           const model = {
             id: id,
-            status: status + "" === "1" ? "0" : "1",
+            status: status + '' === "1" ? "0" : "1",
           };
           const res = await asyncRequest.status(model);
           if (res && res.code === 0) {
@@ -482,17 +503,16 @@ export default {
       this.loading = true;
 
       let model = JSON.parse(JSON.stringify(this.parmValue));
-      delete model["s_input"];
+      delete model['s_input']
 
       const res = await asyncRequest.list({
         ...model,
-        [this.select]: this.s_input,
         is_authority: "1",
-        customer_code: Array.isArray(this.parmValue.customer_code)
-          ? this.parmValue.customer_code[0]
-          : this.parmValue.customer_code,
-        supplierNo: this.currentCompany,
-        noRelation: true,
+        [this.select]: this.s_input,
+        [this.queryKey]: this.queryValue,
+        companyNo: this.companyNo,
+        supplierNo:this.currentCompany,
+        noRelation: true
       });
 
       if (res && res.code === 0 && res.data) {
@@ -520,7 +540,7 @@ export default {
     company_idsearchChange(e) {
       const { code } = e;
       this.parmValue.companyNo = code || "";
-      this.searchList();
+      this.searchList()
     },
 
     // 时间
@@ -543,7 +563,8 @@ export default {
   },
 };
 </script>
-<style lang="scss" scoped>
+   <style lang="scss" scoped>
 .sellReturn {
 }
 </style>
+   

+ 3 - 1
src/views/youzan/othgoodsOnline/components/online-exam-form.vue

@@ -372,7 +372,7 @@ export default {
           {
             type:'array',
             required: true,
-            trigger:'blur',
+            trigger:'change',
             message:'请选择支持的配送方式'
           }
         ],
@@ -619,7 +619,9 @@ export default {
                   this.loading = false;
                   return;
                 }
+                console.log(sale_good_price * 100,final_price * 100)
                 if (sale_good_price * 100 > final_price * 100) {
+                  console.log('join----')
                   this.$message.warning("销售起订量不小于采购起订量!");
                   this.loading = false;
                   return;

Some files were not shown because too many files changed in this diff