Browse Source

featL退货

snow 1 year ago
parent
commit
b5b50c67ca

+ 2 - 1
src/apis/service/sellOut/returnTransferStock/index.js

@@ -3,6 +3,7 @@ import http from '@/apis/axios'
 const api = 'admin/'
 export default {
   list: (data, params) => http(api + 'thstocklist', data, 'post', params),
-  cgdlist: (data, params) => http(api + "cgdlist", data, "post", params)
+  cgdlist: (data, params) => http(api + "cgdlist", data, "post", params),
+  thstockstatus: (data, params) => http(api + "thstockstatus", data, "post", params)
 }
 

+ 22 - 20
src/views/sellOut/returnTransferStock/columns.js

@@ -2,48 +2,48 @@ export default [
   { type: 'selection', fixed: 'left', _noset_: true },
 
   {
-    prop: 'returnCode',
+    prop: 'thCode',
     label: '退货编号',
     width: '160'
   },
   {
-    prop: 'todo',
+    prop: 'th_type',
     label: '退货类型',
-    width: '100'
+    width: '100',
+    _slot_: "th_type"
   },
   {
-    prop: 'todo',
+    prop: 'th_num',
     label: '退货数量',
     width: '100'
   },
   {
-    prop: 'todo',
-    label: '退货销售订单数量',
-    width: '120'
+    prop: 'good_code',
+    label: '退货商品编号',
+    width: '160'
   },
   {
-    prop: 'todo',
+    prop: 'good_name',
     label: '退货商品名称',
     width: '160'
   },
   {
-    prop: 'order_type',
+    prop: 'todo',
     label: '退货商品类型',
     _slot_: 'order_type',
     width: '100'
   },
   {
-    prop: 'todo',
+    prop: 'supplierName',
     label: '退货商品供应商名称',
     width: '160'
   },
+  // {
+  //   label: '退货商品采购单编号',
+  //   width: '160'
+  // },
   {
-    prop: 'todo',
-    label: '退货商品采购单编号',
-    width: '160'
-  },
-  {
-    prop: 'todo',
+    prop: 'th_cgd_price',
     label: '退货商品采购单价',
     width: '160'
   },
@@ -54,20 +54,22 @@ export default [
     width: '120px'
   },
   {
-    prop: 'todo',
     label: '关联采购单商品编号',
-    width: '130px'
+    width: '160px',
+    _slot_: "cgdNo"
   },
   {
     prop: 'order_source',
     label: '关联采购单商品名称',
-    width: '130px'
+    width: '130px',
+    _slot_: "goodName"
   },
 
   {
     prop: 'num',
     label: '关联采购单入库数量',
-    width: '130px'
+    width: '130px',
+    _slot_:"stockNum"
   },
   {
     prop: '',

+ 65 - 122
src/views/sellOut/returnTransferStock/component/association-modal.vue

@@ -1,63 +1,31 @@
 <template>
-  <el-dialog
-    title="采购单"
-    v-loading="loading"
-    :center="true"
-    align="left"
-    top="2vh"
-    width="1040px"
-    :close-on-click-modal="false"
-    :visible.sync="showModelThis"
-    element-loading-text="拼命加载中"
-    element-loading-spinner="el-icon-loading"
-    element-loading-background="rgba(0, 0, 0, 0.8)"
-    @close="showModelThis = false"
-  >
+  <el-dialog title="采购单" v-loading="loading" :center="true" align="left" top="2vh" width="1040px"
+    :close-on-click-modal="false" :visible.sync="showModelThis" element-loading-text="拼命加载中"
+    element-loading-spinner="el-icon-loading" element-loading-background="rgba(0, 0, 0, 0.8)"
+    @close="showModelThis = false">
     <el-card style="margin-top: -20px">
-      <ex-table
-        v-loading="loading"
-        :table="table"
-        :data="tableData"
-        :columns="columns"
-        :page="pageInfo"
-        :size="size"
-        @page-curr-change="handlePageChange"
-        @page-size-change="handleSizeChange"
-        @screen-reset="
+      <ex-table v-loading="loading" :table="table" :data="tableData" :columns="columns" :page="pageInfo" :size="size"
+        @page-curr-change="handlePageChange" @page-size-change="handleSizeChange" @screen-reset="
           pageInfo.curr = 1;
-          parmValue.page = 1;
-          searchList();
-        "
-        @screen-submit="
-          pageInfo.curr = 1;
-          parmValue.page = 1;
-          searchList();
-        "
-      >
+        parmValue.page = 1;
+        searchList();
+        " @screen-submit="
+  pageInfo.curr = 1;
+parmValue.page = 1;
+searchList();
+">
         <template #table-header="{ selection }">
           <div style="width: 100%">
             <el-row style="padding: 0 0 0 80px">
               <el-col :span="4" style="width: 150px">
-                <el-select
-                  :size="searchSize"
-                  v-model="parmValue.status"
-                  filterable
-                  clearable
-                  disabled
-                  placeholder="采购单状态"
-                  style="width: 100%"
-                  @change="
+                <el-select :size="searchSize" v-model="parmValue.status" filterable clearable placeholder="采购单状态"
+                  style="width: 100%" @change="
                     pageInfo.curr = 1;
-                    parmValue.page = 1;
-                    searchList();
-                  "
-                >
-                  <el-option
-                    v-for="item in statusOptions"
-                    :key="'status' + item.value"
-                    :label="item.label"
-                    :value="item.value"
-                  />
+                  parmValue.page = 1;
+                  searchList();
+                  ">
+                  <el-option v-for="item in statusOptions" :key="'status' + item.value" :label="item.label"
+                    :value="item.value" />
                 </el-select>
               </el-col>
 
@@ -73,50 +41,27 @@
                 </el-dropdown>
               </el-col>
               <el-col :span="4" style="width: 303px; padding: 0 0 0 10px">
-                <period-date-picker
-                  :type="1"
-                  :width="'135px'"
-                  :size="searchSize"
-                  :start="timeOBJ.start"
-                  :end="timeOBJ.end"
-                  @timeReturned="handleTime"
-                />
+                <period-date-picker :type="1" :width="'135px'" :size="searchSize" :start="timeOBJ.start"
+                  :end="timeOBJ.end" @timeReturned="handleTime" />
               </el-col>
               <el-col :span="3" style="width: 66px; float: right">
-                <el-button
-                  :size="searchSize"
-                  type="primary"
-                  style="float: right; margin-left: 5px"
-                  @click="searchList"
-                >刷新</el-button>
+                <el-button :size="searchSize" type="primary" style="float: right; margin-left: 5px"
+                  @click="searchList">刷新</el-button>
               </el-col>
             </el-row>
             <el-row style="padding: 10px 0 0 0">
               <el-col :span="6" style="width: 500px; padding: 0 0 0 0px">
-                <el-input
-                  clearable
-                  placeholder="关键字"
-                  v-model="input"
-                  maxlength="40"
-                  :size="searchSize"
-                  class="input-with-select"
-                  @blur="
+                <el-input clearable placeholder="关键字" v-model="input" maxlength="40" :size="searchSize"
+                  class="input-with-select" @blur="
+                    pageInfo.curr = 1;
+                  parmValue.page = 1;
+                  searchList();
+                  ">
+                  <el-select v-model="select" style="width: 125px" slot="prepend" placeholder="关键字类型" @change="
                     pageInfo.curr = 1;
-                    parmValue.page = 1;
-                    searchList();
-                  "
-                >
-                  <el-select
-                    v-model="select"
-                    style="width: 125px"
-                    slot="prepend"
-                    placeholder="关键字类型"
-                    @change="
-                      pageInfo.curr = 1;
-                      parmValue.page = 1;
-                      searchList();
-                    "
-                  >
+                  parmValue.page = 1;
+                  searchList();
+                  ">
                     <el-option label="采购单编号" value="1"></el-option>
                     <el-option label="商品成本编号" value="4"></el-option>
                     <el-option label="商品名称" value="5"></el-option>
@@ -131,44 +76,29 @@
               </el-col>
               <!-- 暂时注释,下版需要导出 -->
               <el-col :span="4" style="width: 66px; float: right">
-                <el-button
-                  type="primary"
-                  style="margin-left: 30px"
-                  @click="submit(selection)"
-                  :size="searchSize"
-                  class="fr"
-                >提交</el-button>
+                <el-button type="primary" style="margin-left: 30px" @click="submit(selection)" :size="searchSize"
+                  class="fr">提交</el-button>
               </el-col>
             </el-row>
           </div>
         </template>
         <template #good_name="{ scope }">
           <span>{{ scope.row.good_name }}</span>
-          <span
-            v-for="(si, i) in scope.row.speclist"
-            :key="si.spec_id + i"
-          >{{ i === 0 ? "__" : "--" }}{{ si.spec_name }}[{{ si.spec_value }}]</span>
+          <span v-for="(si, i) in scope.row.speclist" :key="si.spec_id + i">{{ i === 0 ? "__" : "--" }}{{ si.spec_name
+          }}[{{ si.spec_value }}]</span>
         </template>
         <template #status="{ scope }">
-          <el-tag
-            :size="tablebtnSize"
-            v-text="
-              (statusOptions.find((item) => item.value == scope.row.status) || {})
-                .label || '--'
-            "
-          ></el-tag>
+          <el-tag :size="tablebtnSize" v-text="(statusOptions.find((item) => item.value == scope.row.status) || {})
+            .label || '--'
+            "></el-tag>
         </template>
 
         <template #order_type="{ scope }">
-          <el-tag
-            :size="tablebtnSize"
-            v-text="
-              (
-                cg_order_type_options.find((item) => item.id == scope.row.order_type) ||
-                {}
-              ).label || '--'
-            "
-          ></el-tag>
+          <el-tag :size="tablebtnSize" v-text="(
+            cg_order_type_options.find((item) => item.id == scope.row.order_type) ||
+            {}
+          ).label || '--'
+            "></el-tag>
         </template>
       </ex-table>
     </el-card>
@@ -185,12 +115,12 @@ import { columns, statusOptions } from "./columns";
 import { cg_order_type_options } from "@/assets/js/statusList";
 export default {
   mixins: [mixinPage, resToken],
-  props: ["showModel"],
+  props: ["showModel", "id"],
   computed: {
     ...mapGetters(["tablebtnSize", "searchSize", "size"])
   },
   watch: {
-    showModel: function(val) {
+    showModel: function (val) {
       this.showModelThis = val;
       if (val) {
         this.restSearch();
@@ -272,6 +202,15 @@ export default {
       }
 
       const { cgdNo } = selection[0];
+      this.loading = true
+      const response = await asyncRequest.thstockstatus({ rela_cgdNo: cgdNo, status: "2", id: this.id })
+      this.loading = false
+      
+      if(Number(response.code) !== 0) {
+        this.$message.warning(response.message)
+        return
+      };
+
       this.showModelThis = false;
       // 刷新
       this.$emit("refresh", cgdNo || "");
@@ -293,7 +232,7 @@ export default {
         apply_name: "", // 申请人
         good_name: "", // 产品名称
         good_code: "", // 产品属性编号
-        status: "0", //状态
+        status: "", //状态
         wsm_code: "", //入货仓库编码
         start: "", //新建起始时间
         end: "", // 新建结束时间
@@ -346,9 +285,12 @@ export default {
       this.parmValue.apply_name = this.select === "6" ? this.input : ""; // 申请人
       this.parmValue.supplierNo = this.select === "7" ? this.input : ""; // 采购供应商编号
       this.parmValue.orderCode = this.select === "8" ? this.input : ""; // 订单编号
-      
+
       // this.wsm_supplierNo = [];
-      const res = await asyncRequest.cgdlist(this.parmValue);
+      const res = await asyncRequest.cgdlist({
+        ...this.parmValue,
+        order_type: "1"
+      });
       if (res && res.code === 0 && res.data) {
         this.tableData = res.data.list;
         this.pageInfo.total = Number(res.data.count);
@@ -378,4 +320,5 @@ export default {
 };
 </script>
 
-<style lang="scss" scoped></style>
+<style lang="scss" scoped>
+</style>

+ 1 - 1
src/views/sellOut/returnTransferStock/component/columns.js

@@ -248,7 +248,7 @@ const statusOptions = [
   { value: "1", label: "待入库" },
   { value: "2", label: "部分入库" },
   { value: "3", label: "入库完成" },
-  { value: "4", label: "已取消订单" },
+  // { value: "4", label: "已取消订单" },
 ];
 
 export { columns, statusOptions, ShowDataTableColumns }

+ 109 - 173
src/views/sellOut/returnTransferStock/index.vue

@@ -1,72 +1,42 @@
 <template>
   <div class="sellReturn pagePadding">
     <div v-if="powers.some((i) => i == '001')">
-      <ex-table
-        v-loading="loading"
-        :table="table"
-        :data="tableData"
-        :columns="columns"
-        :page="pageInfo"
-        :size="size"
-        @page-curr-change="handlePageChange"
-        @page-size-change="handleSizeChange"
-        @selection="handleSelection"
+      <ex-table v-loading="loading" :table="table" :data="tableData" :columns="columns" :page="pageInfo" :size="size"
+        @page-curr-change="handlePageChange" @page-size-change="handleSizeChange" @selection="handleSelection"
         @screen-reset="
           pageInfo.curr = 1;
-          parmValue.page = 1;
-          searchList();
-        "
-        @screen-submit="
-          pageInfo.curr = 1;
-          parmValue.page = 1;
-          searchList();
-        "
-      >
-        <template #table-header="{}">
+        parmValue.page = 1;
+        searchList();
+        " @screen-submit="
+  pageInfo.curr = 1;
+parmValue.page = 1;
+searchList();
+">
+        <template #table-header="{ }">
           <div style="width: 100%">
             <el-row style="padding: 0 0 0 80px">
               <!-- 时间区间 -->
               <el-col :span="6" style="width: 363px; padding: 0 0 0 10px">
-                <period-date-picker
-                  :type="1"
-                  :width="'165px'"
-                  :size="searchSize"
-                  :start="parmValue.start"
-                  :end="parmValue.end"
-                  placeholder="申请"
-                  @timeReturned="handleTime"
-                />
+                <period-date-picker :type="1" :width="'165px'" :size="searchSize" :start="parmValue.start"
+                  :end="parmValue.end" placeholder="申请" @timeReturned="handleTime" />
               </el-col>
-              
+
               <el-col :span="6" style="width: 240px; padding: 0 0 0 10px">
-                <el-input
-                  size="mini"
-                  placeholder="退货销售编号"
-                  @change="
-                    pageInfo.curr = 1;
-                    parmValue.page = 1;
-                    searchList();"
-                />
+                <el-input size="mini" v-model="parmValue.orderCode" placeholder="退货销售编号" @change="
+                  pageInfo.curr = 1;
+                parmValue.page = 1;
+                searchList();" />
               </el-col>
 
               <el-col :span="6" style="width: 240px; padding: 0 0 0 10px">
-                <el-input
-                  size="mini"
-                  placeholder="退货编号"
-                  @change="
-                    pageInfo.curr = 1;
-                    parmValue.page = 1;
-                    searchList();"
-                />
+                <el-input size="mini" placeholder="退货编号" v-model="parmValue.thCode" @change="
+                  pageInfo.curr = 1;
+                parmValue.page = 1;
+                searchList();" />
               </el-col>
 
               <el-col :span="3" style="width: 66px; float: right">
-                <el-button
-                  :size="searchSize"
-                  type="primary"
-                  style="float: right; margin-left: 5px"
-                  @click="searchList"
-                >
+                <el-button :size="searchSize" type="primary" style="float: right; margin-left: 5px" @click="searchList">
                   刷新
                 </el-button>
               </el-col>
@@ -74,55 +44,26 @@
 
             <el-row style="padding: 10px 0 0 0">
               <el-col :span="6" style="width: 240px; padding: 0 10px 0 0">
-                <el-input
-                  size="mini"
-                  placeholder="退货商品编号"
-                  @change="
-                    pageInfo.curr = 1;
-                    parmValue.page = 1;
-                    searchList();"
-                />
+                <el-input size="mini" placeholder="退货商品编号" v-model="parmValue.good_code" @change="
+                  pageInfo.curr = 1;
+                parmValue.page = 1;
+                searchList();" />
               </el-col>
 
-              <el-col :span="4">
-              <search-work-company
-                   :value="parmValue.companyNo"
-                   :placeholder="'业务公司'"
-                   :size="searchSize"
-                   @searchChange="companyNosearchChange"
-               />
-            </el-col>
-
               <el-col :span="4" style="width: 200px;margin-left:10px">
-                <el-select
-                  :size="searchSize"
-                  v-model="parmValue.status"
-                  filterable
-                  clearable
-                  placeholder="状态"
-                  style="width: 100%"
-                  @change="
+                <el-select :size="searchSize" v-model="parmValue.status" filterable clearable placeholder="状态"
+                  style="width: 100%" @change="
                     pageInfo.curr = 1;
-                    parmValue.page = 1;
-                    searchList();
-                  "
-                >
-                  <el-option
-                    v-for="item in statusOptions"
-                    :key="'status' + item.value"
-                    :label="item.label"
-                    :value="item.value"
-                  />
+                  parmValue.page = 1;
+                  searchList();
+                  ">
+                  <el-option v-for="item in statusOptions" :key="'status' + item.value" :label="item.label"
+                    :value="item.value" />
                 </el-select>
               </el-col>
 
               <el-col :span="4" class="fr" style="width: 66px; padding: 0 0 0 10px">
-                <el-button
-                  type="warning"
-                  class="fr"
-                  :size="searchSize"
-                  @click="restSearch"
-                >
+                <el-button type="warning" class="fr" :size="searchSize" @click="restSearch">
                   重置
                 </el-button>
               </el-col>
@@ -130,14 +71,9 @@
           </div>
         </template>
         <template #status="{ scope }">
-          <el-tag
-            :size="tablebtnSize"
-            :type="scope.row.status == '0' ? 'warning' : ''"
-            v-text="
-              (statusOptions.find((item) => item.value == scope.row.status) || {})
-                .label || '--'
-            "
-          ></el-tag>
+          <el-tag :size="tablebtnSize" :type="scope.row.status == '0' ? 'warning' : ''" v-text="(statusOptions.find((item) => item.value == scope.row.status) || {})
+            .label || '--'
+            "></el-tag>
         </template>
 
         <template #use_type="{ scope }">
@@ -149,61 +85,55 @@
           </el-tag>
         </template>
 
-        <template #order_type="{ scope }">
-          <el-tag
-            :size="tablebtnSize"
-            v-text="
-              (
-                xs_order_type_options.find((item) => item.id == scope.row.order_type) ||
-                {}
-              ).label || '--'
-            "
-          ></el-tag>
+        <template #th_type="{ scope }">
+          <el-tag size="mini">
+            {{ scope.row.th_type === "1" ? "售前退货" : "售后退货" }}
+          </el-tag>
         </template>
 
-        <template #order_source="{ scope }">
-          <el-tag
-            :size="tablebtnSize"
-            v-text="
-              (
-                xs_order_source_options.find(
-                  (item) => item.id == scope.row.order_source
-                ) || {}
-              ).label || '--'
-            "
-          ></el-tag>
+        <template #cgdNo="{ scope }">
+          {{ scope.row.purcheaseOrder ? scope.row.purcheaseOrder.cgdNo : '--' }}
+        </template>
+
+        <template #goodName="{ scope }">
+          {{ scope.row.purcheaseOrder ? scope.row.purcheaseOrder.good_name : '--' }}
+        </template>
+
+        <template #stockNum="{ scope }">
+          {{ scope.row.purcheaseOrder ? scope.row.purcheaseOrder.good_num : '--' }}
+        </template>
+
+        <template #order_type="{ scope }">
+          <el-tag :size="tablebtnSize" v-text="(
+            xs_order_type_options.find((item) => item.id == scope.row.order_type) ||
+            {}
+          ).label || '--'
+            "></el-tag>
         </template>
 
         <template #has_account="{ scope }">
-          <el-tag
-            :size="tablebtnSize"
-            :type="
-              (
-                has_account_list.find(
-                  (item) => item.code == scope.row.has_account + ''
-                ) || {}
-              ).type || '--'
-            "
-            v-text="
-              (
-                has_account_list.find(
-                  (item) => item.code == scope.row.has_account + ''
-                ) || {}
-              ).name || '--'
-            "
-          ></el-tag>
+          <el-tag :size="tablebtnSize" :type="(
+            has_account_list.find(
+              (item) => item.code == scope.row.has_account + ''
+            ) || {}
+          ).type || '--' " 
+          v-text="(
+            has_account_list.find(
+              (item) => item.code == scope.row.has_account + ''
+            ) || {}
+          ).name || '--'
+          "></el-tag>
         </template>
         <template #operation="{ scope }">
-          <el-button type="text" size="mini" @click="handleAssociation">关联采购单</el-button>
-          <el-button type="text" size="mini">解除关联</el-button>
+          <el-button type="text" size="mini" @click="handleAssociation(scope)"
+            v-if="scope.row.status === '1'">关联采购单</el-button>
+          <el-button type="text" size="mini" v-if="scope.row.status === '2'"
+            @click="handleSecure(scope.row.id, scope.row.purcheaseOrder.cgdNo)">解除关联</el-button>
         </template>
       </ex-table>
 
-      <AssociationModal
-        :showModel="centerDialogVisible"
-        @refresh="refresh"
-        @cancel="centerDialogVisible = false"
-      />
+      <AssociationModal :id="recordId" :showModel="centerDialogVisible" @refresh="searchList"
+        @cancel="centerDialogVisible = false" />
     </div>
     <div v-else>
       <no-auth></no-auth>
@@ -248,7 +178,7 @@ export default {
       fileUrl: urlConfig.baseURL,
       usetypeOtions,
       has_account_list,
-      centerDialogVisible:false,
+      centerDialogVisible: false,
       select: "returnCode", //默认选择下拉框
       s_input: "", //搜索框内容
       select_list: [],
@@ -256,15 +186,9 @@ export default {
       cancelStatus: ["1", "8", "9", "10"],
       // 状态
       statusOptions: [
-        { value: "1", label: "待业务审批" },
-        { value: "8", label: "供应商已驳回,待采购审核" },
-        { value: "9", label: "待供应商审核" },
-        { value: "10", label: "业务公司修改,待供应商确认" },
-        { value: "11", label: "待设置工单" },
-        { value: "12", label: "待库管收货" },
-        { value: "4", label: "退货完成" },
-        { value: "5", label: "业务驳回" },
-        { value: "13", label: "已取消申请" },
+        { value: "1", label: "待关联" },
+        { value: "2", label: "已关联" },
+        { value: "3", label: "取消关联" }
       ],
       loading: false,
       showModel: false,
@@ -272,8 +196,8 @@ export default {
       modelId: 0,
       parmValue: {
         orderCode: "",
-        thCode:"",
-        good_code:"",
+        thCode: "",
+        good_code: "",
         companyNo: "",
         start: "",
         end: "",
@@ -324,13 +248,11 @@ export default {
   },
 
   methods: {
-    refresh(data){
-      console.log(data);
-    },
-    handleAssociation(){
+    handleAssociation(scope) {
       this.centerDialogVisible = true;
+      this.recordId = scope.row.id
     },
-    companyNosearchChange({code}){
+    companyNosearchChange({ code }) {
       this.parmValue.companyNo = code
       this.searchList();
     },
@@ -399,6 +321,20 @@ export default {
       const { list } = order;
       this.select_list = list;
     },
+    async handleSecure(id, rela_cgdNo) {
+      this.$alert("是否确认解除关联", "", {
+        callback: async () => {
+          this.loading = true
+          const response = await asyncRequest.thstockstatus({ rela_cgdNo, status: "3", id })
+          this.loading = false
+          if (Number(response.code) === 0) {
+            this.searchList();
+          } else {
+            this.$message.warning(response.message)
+          }
+        }
+      })
+    },
     getRouter(toRouter, queryId) {
       if (toRouter && queryId) {
         let model = {
@@ -427,9 +363,9 @@ export default {
       this.select = ""; //清除下拉框选中项
       this.parmValue = {
         orderCode: "",
-        thCode:"",
-        good_code:"",
-        companyNo:"",
+        thCode: "",
+        good_code: "",
+        companyNo: "",
         start: "",
         end: "",
         status: "", //节点状态
@@ -465,11 +401,12 @@ export default {
 
       const res = await asyncRequest.list({
         ...model,
-        customer_code: Array.isArray(this.parmValue.customer_code)
-          ? this.parmValue.customer_code[0]
-          : this.parmValue.customer_code,
-        supplierNo: Array.isArray(model.supplierNo) ? model.supplierNo[0] : model.supplierNo,
-        needRela: true,
+        // customer_code: Array.isArray(this.parmValue.customer_code)
+        //   ? this.parmValue.customer_code[0]
+        //   : this.parmValue.customer_code,
+        // supplierNo: Array.isArray(model.supplierNo) ? model.supplierNo[0] : model.supplierNo,
+        // needRela: true,
+        companyNo: this.currentCompany
       });
 
       if (res && res.code === 0 && res.data) {
@@ -515,6 +452,5 @@ export default {
 };
 </script>
 <style lang="scss" scoped>
-.sellReturn {
-}
+.sellReturn {}
 </style>

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

@@ -195,7 +195,7 @@
                 :newTime="newTime"
                 :disabled="false"
                 :isMust="false"
-                @searchChange="examForm"
+                @searchChange="examForm_supplier"
               />
             </el-collapse-item>
             <el-collapse-item