Browse Source

Merge branch 'v3.0-dev-before' of http://120.46.155.214:3000/xiaodai2022/order-ui-pc into v3.0-dev-before

xiaodai2022 1 year ago
parent
commit
a06d60dafe

+ 8 - 0
src/apis/service/sellOut/returnTransferStock/index.js

@@ -0,0 +1,8 @@
+// 物业管理员
+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)
+}
+

+ 88 - 0
src/views/sellOut/returnTransferStock/columns.js

@@ -0,0 +1,88 @@
+export default [
+  { type: 'selection', fixed: 'left', _noset_: true },
+
+  {
+    prop: 'returnCode',
+    label: '退货编号',
+    width: '160'
+  },
+  {
+    prop: 'todo',
+    label: '退货类型',
+    width: '100'
+  },
+  {
+    prop: 'todo',
+    label: '退货数量',
+    width: '100'
+  },
+  {
+    prop: 'todo',
+    label: '退货销售订单数量',
+    width: '120'
+  },
+  {
+    prop: 'todo',
+    label: '退货商品名称',
+    width: '160'
+  },
+  {
+    prop: 'order_type',
+    label: '退货商品类型',
+    _slot_: 'order_type',
+    width: '100'
+  },
+  {
+    prop: 'todo',
+    label: '退货商品供应商名称',
+    width: '160'
+  },
+  {
+    prop: 'todo',
+    label: '退货商品采购单编号',
+    width: '160'
+  },
+  {
+    prop: 'todo',
+    label: '退货商品采购单价',
+    width: '160'
+  },
+  {
+    prop: 'status',
+    label: '状态',
+    _slot_: 'status',
+    width: '120px'
+  },
+  {
+    prop: 'todo',
+    label: '关联采购单商品编号',
+    width: '130px'
+  },
+  {
+    prop: 'order_source',
+    label: '关联采购单商品名称',
+    width: '130px'
+  },
+
+  {
+    prop: 'num',
+    label: '关联采购单入库数量',
+    width: '130px'
+  },
+  {
+    prop: '',
+    width: 160,
+    label: '操作',
+    fixed: 'right',
+    _noset_: true,
+    _slot_: 'operation'
+  }
+
+]
+// page	是	string	页码
+// size	是	string	页码数
+// cgdNo	是	string	采购单编号
+// returnCode	是	string	退货单编号
+// good_type_code	是	string	商品属性
+// good_name	是	string	商品名称
+// status	是	string	状态

+ 381 - 0
src/views/sellOut/returnTransferStock/component/association-modal.vue

@@ -0,0 +1,381 @@
+<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-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="
+          pageInfo.curr = 1;
+          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="
+                    pageInfo.curr = 1;
+                    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" style="width: 130px; padding: 0 0 0 10px">
+                <el-dropdown @command="handleClick($event)" :size="searchSize">
+                  <el-button :size="searchSize" style="width: 120px">
+                    {{ sselect }}
+                    <i class="el-icon-arrow-down el-icon--right" :size="searchSize"></i>
+                  </el-button>
+                  <el-dropdown-menu slot="dropdown">
+                    <el-dropdown-item v-for="item in options" :key="item" :command="item">{{ item }}</el-dropdown-item>
+                  </el-dropdown-menu>
+                </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"
+                />
+              </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-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="
+                    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-option label="采购单编号" value="1"></el-option>
+                    <el-option label="商品成本编号" value="4"></el-option>
+                    <el-option label="商品名称" value="5"></el-option>
+                    <el-option label="供应商负责人" value="6"></el-option>
+                    <el-option label="采购供应商编号" value="7"></el-option>
+                    <el-option label="订单编号" value="8"></el-option>
+                  </el-select>
+                </el-input>
+              </el-col>
+              <el-col :span="4" style="width: 66px; float: right">
+                <el-button type="warning" class="fr" :size="searchSize" @click="restSearch">重置</el-button>
+              </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-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>
+        </template>
+        <template #status="{ scope }">
+          <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>
+        </template>
+      </ex-table>
+    </el-card>
+  </el-dialog>
+</template>
+
+<script>
+import asyncRequest from "@/apis/service/sellOut/returnTransferStock";
+import mixinPage from "@/mixins/elPaginationHandle";
+import { mapGetters } from "vuex";
+import resToken from "@/mixins/resToken";
+
+import { columns, statusOptions } from "./columns";
+import { cg_order_type_options } from "@/assets/js/statusList";
+export default {
+  mixins: [mixinPage, resToken],
+  props: ["showModel"],
+  computed: {
+    ...mapGetters(["tablebtnSize", "searchSize", "size"])
+  },
+  watch: {
+    showModel: function(val) {
+      this.showModelThis = val;
+      if (val) {
+        this.restSearch();
+      }
+    },
+    showModelThis(val) {
+      if (!val) {
+        this.$emit("cancel");
+      }
+    }
+  },
+  data() {
+    return {
+      showModelThis: this.showModel,
+      select: "1",
+      input: "",
+      timeOBJ: {
+        start: "", //起始时间
+        end: "" // 结束时间
+      },
+      options: ["创建时间", "最晚入库时间"],
+      sselect: "创建时间",
+      // 状态
+      statusOptions: statusOptions,
+      cg_order_type_options,
+
+      loading: false,
+      showModel: false,
+      parmValue: {
+        bk_code: "", // 备库编码
+        orderCode: "", // 订单编号
+        wsm_in_code: "", // 入库单号
+        cgdNo: "", // 采购单编码
+        apply_name: "", // 申请人
+        good_name: "", // 产品名称
+        good_code: "", // 产品属性编号
+        status: "0", //状态
+        wsm_code: "", //入货仓库编码
+        start: "", //新建起始时间
+        end: "", // 新建结束时间
+        last_start: "", //最后入库时间开始
+        last_end: "", //最后入库时间结束
+        page: 1, // 页码
+        size: 15, // 每页显示条数
+        supplierNo: "",
+        wsm_supplierNo: ""
+      },
+      tableData: [],
+      // 表格 - 数据
+      tableData: [],
+      // 表格 - 参数
+      table: {
+        stripe: true,
+        border: true,
+        _defaultHeader_: ["setcol"]
+      },
+      // 表格 - 分页
+      pageInfo: {
+        size: 15,
+        curr: 1,
+        total: 0
+      },
+      // 表格 - 列参数
+      columns: columns
+    };
+  },
+
+  methods: {
+    //提交
+    async submit(selection) {
+      if (selection.length === 0) {
+        this.$message.warning("至少选择一条采购单!");
+        return;
+      }
+
+      if (selection.length != 1) {
+        this.$message.warning("只能选中一条数据!");
+        return;
+      }
+
+      const { cgdNo } = selection[0];
+      this.showModelThis = false;
+      // 刷新
+      this.$emit("refresh", cgdNo || "");
+    },
+
+    restSearch() {
+      this.sselect = "创建时间";
+      this.select = "1";
+      this.input = "";
+      this.timeOBJ = {
+        start: "", //起始时间
+        end: "" // 结束时间
+      };
+      this.parmValue = {
+        bk_code: "", // 备库编码
+        orderCode: "", // 订单编号
+        wsm_in_code: "", // 入库单号
+        cgdNo: "", // 采购单编码
+        apply_name: "", // 申请人
+        good_name: "", // 产品名称
+        good_code: "", // 产品属性编号
+        status: "0", //状态
+        wsm_code: "", //入货仓库编码
+        start: "", //新建起始时间
+        end: "", // 新建结束时间
+        last_start: "", //最后入库时间开始
+        last_end: "", //最后入库时间结束
+        page: 1, // 页码
+        size: 15 // 每页显示条数
+      };
+      // 表格 - 分页
+      this.pageInfo = {
+        size: 15,
+        curr: 1,
+        total: 0
+      };
+      this.searchList();
+    },
+    async handleClick(e) {
+      this.sselect = e;
+      this.parmValue.start = e === "创建时间" ? this.timeOBJ.start : "";
+      this.parmValue.end = e === "创建时间" ? this.timeOBJ.end : "";
+      this.parmValue.last_start = e !== "创建时间" ? this.timeOBJ.start : "";
+      this.parmValue.last_end = e !== "创建时间" ? this.timeOBJ.end : "";
+      if (
+        !(
+          (this.timeOBJ.start !== "" && this.timeOBJ.end === "") ||
+          (this.timeOBJ.start === "" && this.timeOBJ.end !== "")
+        )
+      ) {
+        this.parmValue.page = 1;
+        this.pageInfo.curr = 1;
+        await this.searchList();
+      }
+    },
+
+    async searchList() {
+      if (
+        (this.timeOBJ.start !== "" && this.timeOBJ.end === "") ||
+        (this.timeOBJ.start === "" && this.timeOBJ.end !== "")
+      ) {
+        this.$message.warning("时间区间不完整!");
+        return;
+      }
+
+      this.loading = true;
+      this.parmValue.cgdNo = this.select === "1" ? this.input : ""; // 采购单编码
+      this.parmValue.wsm_in_code = this.select === "2" ? this.input : ""; // 入库单号
+      this.parmValue.bk_code = this.select === "3" ? this.input : ""; // 备库编码
+      this.parmValue.good_code = this.select === "4" ? this.input : ""; // 产品属性编号
+      this.parmValue.good_name = this.select === "5" ? this.input : ""; // 产品名称
+      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);
+      if (res && res.code === 0 && res.data) {
+        this.tableData = res.data.list;
+        this.pageInfo.total = Number(res.data.count);
+      } else if (res && res.code >= 100 && res.code <= 104) {
+        await this.logout();
+      } else {
+        this.tableData = [];
+        this.pageInfo.total = 0;
+      }
+      this.loading = false;
+    },
+    // 时间
+    async handleTime(e) {
+      if (e.startTime !== "") {
+        this.timeOBJ.start = e.startTime;
+      } else {
+        this.timeOBJ.start = "";
+      }
+      if (e.endTime !== "") {
+        this.timeOBJ.end = e.endTime;
+      } else {
+        this.timeOBJ.end = "";
+      }
+      await this.handleClick(this.sselect);
+    }
+  }
+};
+</script>
+
+<style lang="scss" scoped></style>

+ 254 - 0
src/views/sellOut/returnTransferStock/component/columns.js

@@ -0,0 +1,254 @@
+const columns = [
+  // {
+  //   type: "expand",
+  //   _slot_: "expand",
+  //   fixed: "left",
+  //   _noset_: true,
+  // },
+  {
+    type: "selection",
+    fixed: "left",
+    _noset_: true
+  },
+  {
+    prop: "cgdNo",
+    label: "采购单编号",
+    width: "155px",
+  },
+  {
+    prop: "orderCode",
+    label: "订单编号",
+    width: "155px",
+  },
+  // {
+  //   prop: "bkcode",
+  //   label: "备库单编号",
+  //   width: "155px",
+  // },
+
+
+  // {
+  //   prop: "wsm_supplierNo",
+  //   label: "仓库公司编号",
+  //   width: "145px",
+  // },
+  // {
+  //   prop: "wsm_supplier",
+  //   label: "仓库公司名称",
+  //   width: "155px",
+  // },
+  // {
+  //   prop: "wsm_code",
+  //   label: "仓库编号",
+  //   width: "172px",
+  // },
+  // {
+  //   prop: "wsm_name",
+  //   label: "仓库名称",
+  //   width: "80px",
+  // },
+  {
+    prop: "spuCode",
+    label: "商品成本编号",
+    width: "158px",
+  },
+  {
+    prop: "good_name",
+    label: "商品名称",
+    _slot_: "good_name",
+    'min-width': "145px",
+  },
+
+
+  // 
+  // {
+  //   prop: "apply_name",
+  //   label: "申请人",
+  //   width: "60px",
+  // },
+  // {
+  //   prop: "sendtime",
+  //   label: "发货时间",
+  //   width: "60px",
+  // },
+  // {
+  //   prop: "send_num",
+  //   label: "发货数量",
+  //   width: "60px",
+  // },
+  // {
+  //   prop: "post_company",
+  //   label: "物流公司",
+  //   width: "60px",
+  // },
+  // {
+  //   prop: "post_code",
+  //   label: "物流单号",
+  //   width: "60px",
+  // },
+  // {
+  //   prop: "post_fee",
+  //   label: "物流费用",
+  //   width: "60px",
+  // },
+  // {
+  //   prop: "wsm_num",
+  //   label: "入库数量",
+  //   width: "60px",
+  // },
+  //  {
+  //   prop: "error_num",
+  //   label: "异常数量",
+  //   width: "60px",
+  // },
+  // {
+  //   prop: "check_name",
+  //   label: "验货人",
+  //   width: "60px",
+  // },
+  // 
+  {
+    prop: "good_price",
+    label: "单价",
+    width: "110px",
+  },
+  {
+    prop: "good_num",
+    label: "数量",
+    width: "110px",
+  },
+  {
+    prop: "total_fee",
+    label: "总货款",
+    width: "110px",
+  },
+  // {
+  //   prop: "send_num",
+  //   label: "已发货数量",
+  //   width: "110px",
+  // },
+  // {
+  //   prop: "wsend_num",
+  //   label: "未发货数量",
+  //   width: "105px",
+  // },
+  {
+    prop: "status",
+    label: "状态",
+    _slot_: "status",
+    width: "120px",
+  },
+  {
+    prop: "order_type",
+    label: "采购单来源",
+    _slot_: "order_type",
+    width: "110px",
+  },
+
+  {
+    prop: "lasttime",
+    label: "预计最晚入库时间",
+    width: "145px",
+  },
+  {
+    prop: "supplierNo",
+    label: "采购供应商编号",
+    width: "145px",
+  },
+  {
+    prop: "supplier_name",
+    label: "采购供应商名称",
+    width: "155px"
+  },
+  {
+    prop: "cgder",
+    label: "供应商负责人",
+    width: "95",
+  },
+  {
+    prop: "addtime",
+    label: "创建时间",
+    width: "145px",
+  }
+
+]
+const ShowDataTableColumns = [
+  {
+    prop: "cgdNo",
+    label: "采购单编号",
+    span: 6
+  },
+  {
+    prop: "status",
+    label: "采购单状态",
+    _slot_: "status",
+    span: 6
+  },
+  {
+    prop: "order_type",
+    label: "采购单来源",
+    _slot_: "order_type",
+    span: 6
+  },
+  {
+    prop: "lasttime",
+    label: "要求入库时间",
+    span: 6
+  },
+
+  {
+    prop: "supplier_name",
+    label: "销售方公司",
+    _slot_: "supplier_name",
+  },
+  {
+    prop: "company",
+    label: "购买方公司",
+    _slot_: "company",
+  },
+
+  {
+    prop: "wsm",
+    label: "仓库信息",
+    _slot_: "wsm",
+  },
+  {
+    prop: "total_fee",
+    label: "采购总成本",
+    span: 6
+  },
+  {
+    prop: "good_price",
+    label: "采购单价",
+    span: 6
+  },
+  {
+    prop: "good_num",
+    label: "采购总数量",
+    span: 6
+  },
+  {
+    prop: "send_num",
+    label: "已发货数量",
+    span: 6
+  },
+  {
+    prop: "wsend_num",
+    label: "未发货数量",
+    span: 6
+  },
+  {
+    prop: "addtime",
+    label: "创建时间",
+    span: 6
+  },
+]
+const statusOptions = [
+  { value: "0", label: "待与供应商确认" },
+  { value: "1", label: "待入库" },
+  { value: "2", label: "部分入库" },
+  { value: "3", label: "入库完成" },
+  { value: "4", label: "已取消订单" },
+];
+
+export { columns, statusOptions, ShowDataTableColumns }

+ 520 - 0
src/views/sellOut/returnTransferStock/index.vue

@@ -0,0 +1,520 @@
+<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"
+        @screen-reset="
+          pageInfo.curr = 1;
+          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"
+                />
+              </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-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-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-col>
+            </el-row>
+
+            <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-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="
+                    pageInfo.curr = 1;
+                    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>
+              </el-col>
+            </el-row>
+          </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>
+        </template>
+
+        <template #use_type="{ scope }">
+          <el-tag size="mini">
+            {{
+              (usetypeOtions.find(({ value }) => value === scope.row.use_type) || {})
+                .label || "---"
+            }}
+          </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>
+
+        <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>
+
+        <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>
+        </template>
+        <template #operation="{ scope }">
+          <el-button type="text" size="mini" @click="handleAssociation">关联采购单</el-button>
+          <el-button type="text" size="mini">解除关联</el-button>
+        </template>
+      </ex-table>
+
+      <AssociationModal
+        :showModel="centerDialogVisible"
+        @refresh="refresh"
+        @cancel="centerDialogVisible = false"
+      />
+    </div>
+    <div v-else>
+      <no-auth></no-auth>
+    </div>
+  </div>
+</template>
+
+<script>
+import mixinPage from "@/mixins/elPaginationHandle";
+import resToken from "@/mixins/resToken";
+import columns from "./columns";
+import asyncRequest from "@/apis/service/sellOut/returnTransferStock";
+import AssociationModal from "./component/association-modal.vue"
+import { mapGetters } from "vuex";
+import urlConfig from "@/apis/url-config";
+import companyHelper from "@/mixins/companyHelper";
+
+import {
+  xs_order_type_options,
+  xs_order_source_options,
+  has_account_list,
+  usetypeOtions,
+} from "@/assets/js/statusList";
+
+export default {
+  name: "returnTransferStock",
+  mixins: [mixinPage, resToken, companyHelper],
+  components: { AssociationModal },
+  computed: {
+    ...mapGetters(["tablebtnSize", "searchSize", "size", "isSupertube"]),
+    powers() {
+      const { btnList } = this.$store.getters;
+      const tran = btnList.find((item) => item.menu_route == "returnTransferStock") || {};
+      const { action } = tran ?? {};
+      return action ?? [];
+    },
+  },
+  data() {
+    return {
+      xs_order_type_options,
+      xs_order_source_options,
+      fileUrl: urlConfig.baseURL,
+      usetypeOtions,
+      has_account_list,
+      centerDialogVisible:false,
+      select: "returnCode", //默认选择下拉框
+      s_input: "", //搜索框内容
+      select_list: [],
+      sitem: null,
+      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: "已取消申请" },
+      ],
+      loading: false,
+      showModel: false,
+      isDetail: false,
+      modelId: 0,
+      parmValue: {
+        orderCode: "",
+        thCode:"",
+        good_code:"",
+        companyNo: "",
+        start: "",
+        end: "",
+        status: "", //节点状态
+        page: 1, // 页码
+        size: 15, // 每页显示条数
+      },
+      tableData: [],
+      passwordModel: false,
+      passwordModelId: 0,
+      isPasswordDetail: false,
+      // 表格 - 数据
+      tableData: [],
+      // 表格 - 参数
+      table: {
+        stripe: true,
+        border: true,
+        _defaultHeader_: ["setcol"],
+      },
+      // 表格 - 分页
+      pageInfo: {
+        size: 15,
+        curr: 1,
+        total: 0,
+      },
+      // 表格 - 列参数
+      columns: columns,
+    };
+  },
+  mounted() {
+    const { back } = this.$route.query;
+    if (back) {
+      this.parmValue = JSON.parse(back);
+      const { page, size } = this.parmValue;
+      this.pageInfo = {
+        size: size,
+        curr: page,
+        total: 0,
+      };
+      //多选条件
+      this.select = this.parmValue.select;
+      // this.sselect = this.parmValue.sselect;
+      this.s_input = this.parmValue.s_input;
+    } else {
+      this.select = "returnCode";
+    }
+    this.searchList();
+  },
+
+  methods: {
+    refresh(data){
+      console.log(data);
+    },
+    handleAssociation(){
+      this.centerDialogVisible = true;
+    },
+    companyNosearchChange({code}){
+      this.parmValue.companyNo = code
+      this.searchList();
+    },
+    async supplierChange(e) {
+      const { code, label } = e;
+      this.parmValue.supplierNo = code ? [code] : [];
+      this.parmValue.supplierName = label;
+      this.searchList();
+    },
+    customer_code_change(e) {
+      this.parmValue.customer_code = [e.code];
+      this.parmValue.customerName = e.label
+      this.searchList();
+    },
+    handleExport() {
+      if (this.select_list.length === 0) {
+        this.$message.warning("请选择一条退货单");
+        return;
+      }
+
+      const returnCode = this.select_list.map(({ returnCode }) => returnCode);
+      if (!this.loading) {
+        this.loading = true;
+        let httpType = `aplication/zip`;
+        axios({
+          method: "post",
+          url: this.fileUrl + "/admin/reorderExport",
+          responseType: "blob",
+          data: { returnCode },
+          headers: {
+            Accept: httpType,
+          },
+        })
+          .then((res) => {
+            if (res && res.status == 200 && res.data) {
+              let url = window.URL.createObjectURL(
+                new Blob([res.data], { type: httpType })
+              );
+              let link = document.createElement("a");
+              link.style.display = "none";
+              link.href = url;
+              let excelName = "退货单.zip";
+              link.setAttribute("download", excelName);
+              document.body.appendChild(link);
+              link.click();
+              link.remove();
+              window.URL.revokeObjectURL(url); //释放掉blob对象
+              this.$message.success(`导出成功!`);
+              setTimeout(() => {
+                this.loading = false;
+              }, 500);
+            } else {
+              this.$message.error(res.data.message);
+              setTimeout(() => {
+                this.loading = false;
+              }, 500);
+            }
+          })
+          .catch((error) => {
+            console.log(error);
+            this.loading = false;
+          });
+      }
+    },
+    handleSelection(order) {
+      const { list } = order;
+      this.select_list = list;
+    },
+    getRouter(toRouter, queryId) {
+      if (toRouter && queryId) {
+        let model = {
+          id: queryId,
+          // type: 'view',
+        };
+
+        //有多选框的条件
+        this.parmValue.select = this.select;
+        // this.parmValue.sselect = this.sselect ;
+        this.parmValue.s_input = this.s_input;
+        //
+        let routerModel = {
+          options: JSON.parse(JSON.stringify(this.parmValue)),
+          router: this.$route.path,
+        };
+        model.preModel = JSON.stringify(routerModel);
+
+        this.routeGoto(toRouter, model);
+      } else {
+        this.$message.warning("暂未找到相关流程!");
+      }
+    },
+    restSearch() {
+      this.s_input = ""; //清除输入框内容
+      this.select = ""; //清除下拉框选中项
+      this.parmValue = {
+        orderCode: "",
+        thCode:"",
+        good_code:"",
+        companyNo:"",
+        start: "",
+        end: "",
+        status: "", //节点状态
+        page: 1, // 页码
+        size: 15, // 每页显示条数
+      };
+      // 表格 - 分页
+      this.pageInfo = {
+        size: 15,
+        curr: 1,
+        total: 0,
+      };
+      this.searchList();
+    },
+
+    openModal(id, isDetail, sitem) {
+      this.showModel = true;
+      this.modelId = id;
+      this.isDetail = isDetail;
+      this.sitem = sitem;
+    },
+    async searchList() {
+      if (
+        (this.parmValue.start !== "" && this.parmValue.end === "") ||
+        (this.parmValue.start === "" && this.parmValue.end !== "")
+      ) {
+        this.$message.warning("时间区间不完整!");
+        return;
+      }
+      this.loading = true;
+
+      let model = JSON.parse(JSON.stringify(this.parmValue));
+
+      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,
+      });
+
+      if (res && res.code === 0 && res.data) {
+        this.tableData = res.data.list;
+        this.pageInfo.total = Number(res.data.count);
+      } else if (res && res.code >= 100 && res.code <= 104) {
+        await this.logout();
+      } else {
+        this.tableData = [];
+        this.pageInfo.total = 0;
+      }
+      this.loading = false;
+    },
+
+    //物流公司查询
+    async handleCompany(e) {
+      console.log(e, "要求传快递简称,不传id"); //
+      if (e && e.code) {
+        this.parmValue.postCompany = [e.shortName];
+        this.parmValue.page = 1;
+      }
+      await this.searchList();
+    },
+
+    // 时间
+    async handleTime(e) {
+      if (e.startTime !== "") {
+        this.parmValue.start = e.startTime;
+      } else {
+        this.parmValue.start = "";
+      }
+      if (e.endTime !== "") {
+        this.parmValue.end = e.endTime;
+      } else {
+        this.parmValue.end = "";
+      }
+      if (this.parmValue.start !== "" && this.parmValue.end !== "") {
+        this.parmValue.page = 1;
+        await this.searchList();
+      }
+    },
+  },
+};
+</script>
+<style lang="scss" scoped>
+.sellReturn {
+}
+</style>

+ 0 - 0
src/views/sellOut/returnTransferStock/退货转库存品记录


+ 8 - 0
src/views/sellOut/sellAfterApply/detail.vue

@@ -479,6 +479,14 @@ export default {
       this.newTime = new Date().valueOf();
     },
     async handlePurchaseConfirm(data) {
+      // 是否为库存品
+      const isStock = this.sitem.order_type === "1";
+
+      //不是库存品 & 审核通过 = 待客户退货
+      if(data.status === "11" && !isStock){
+        data.status = "4"
+      }
+
       const model = {
         returnCode: this.code,
         ...data,

+ 13 - 8
src/views/sellOut/sellReturn/detail.vue

@@ -140,11 +140,9 @@
                         show-overflow-tooltip
                       >
                         <template slot-scope="scope">
-                          {{ scope.row.contactor }}-{{ scope.row.mobile }}-{{
-                            scope.row.addr_info
-                          }}{{ scope.row.addr }}
-                        </template></el-table-column
-                      >
+                          {{ scope.row.contactor }}-{{ scope.row.mobile }}-{{ scope.row.addr_info }}{{ scope.row.addr }}
+                        </template>
+                      </el-table-column>
                     </el-table>
                   </div>
                   <span v-else>--</span>
@@ -188,8 +186,7 @@
               title="待供应商审核"
               name="4"
               v-if="
-                isHasPermission({ status: '9', process: '9' }) &&
-                String(sitem.has_account) === '0'
+                isHasPermission({ status: '9', process: '9' }) && String(sitem.has_account) === '0'
               "
             >
               <exam-form
@@ -198,7 +195,7 @@
                 :newTime="newTime"
                 :disabled="false"
                 :isMust="false"
-                @searchChange="examForm_supplier"
+                @searchChange="examForm"
               />
             </el-collapse-item>
             <el-collapse-item
@@ -471,6 +468,14 @@ export default {
         });
     },
     async handlePurchaseExam(data) {
+      // 是否为库存品
+      const isStock = this.sitem.order_type === "1";
+
+      // 非库存品且审批通过 = 完成退货
+      if(data.status === "11" && !isStock){
+        data.status = "4";
+      }
+
       let _model = {
         returnCode: this.queryId,
         ...data,

+ 2 - 3
src/views/sellOut/sellReturn/index.vue

@@ -475,7 +475,7 @@ export default {
       const returnCode = this.select_list.map(({ returnCode }) => returnCode);
       if (!this.loading) {
         this.loading = true;
-        let httpType = `aplication/zip`;
+        let httpType = `application/zip`;
         axios({
           method: "post",
           url: this.fileUrl + "/admin/reorderExport",
@@ -484,8 +484,7 @@ export default {
           headers: {
             Accept: httpType,
           },
-        })
-          .then((res) => {
+        }).then((res) => {
             if (res && res.status == 200 && res.data) {
               let url = window.URL.createObjectURL(
                 new Blob([res.data], { type: httpType })