123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383 |
- <template>
- <div style="padding:10px">
- <ex-table
- v-if="powers.some((i) => i == '001')"
- v-loading="loading"
- :table="table"
- :data="tableData"
- :columns="table4"
- :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();
- "
- @selection="selection_change"
- >
- <template #table-header="{}">
- <div style="width: 100%">
- <el-row style="padding: 0 0 0 80px">
- <el-col :span="6" style="width: 363px;">
- <periodDatePickerActive
- :start="parmValue.order_order_start_day"
- :end="parmValue.order_end_day"
- :placeholder="'下单'"
- @timeReturned="time"
- :size="searchSize"
- :width="'165px'"
- />
- </el-col>
- <el-col :span="4" style="width: 350px">
- <search-supplier
- :size="'mini'"
- :value="parmValue.supplierNo"
- :disabled="false"
- :placeholder="'供应商名称'"
- :names="parmValue.supplierName"
- :is-detail="true"
- :no-disabled="true"
- @searchChange="supplierChange"
- />
- </el-col>
- <el-col :span="4" style="width: 66px; float: right">
- <el-button
- type="primary"
- style="margin-left:30px;"
- :size="searchSize"
- class="fr"
- @click="download"
- >导出</el-button>
- </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-col :span="4" style="width: 66px; float: right">
- <el-button type="warning" class="fr" :size="searchSize" @click="restSearch">重置</el-button>
- </el-col>
- </el-row>
- <el-row style="margin-top:10px;margin-left:70px">
- <el-col :span="6" style="margin-left:10px;width:350px">
- <search-work-company
- :value="parmValue.companyNo"
- :placeholder="'业务公司名称'"
- :disabled="false"
- :size="'mini'"
- :no-disabled="true"
- @searchChange="company_idsearchChange"
- />
- </el-col>
- </el-row>
- </div>
- </template>
- <template
- #order_type="{scope}"
- >{{ xs_order_type_options.find(({id}) => id === String(scope.row.order_type)).label }}</template>
- <template
- #order_source="{scope}"
- >{{ xs_order_source_options.find(({id}) => id === String(scope.row.order_source)).label }}</template>
- <template
- #status="{scope}"
- >{{ statusOptions.find(({value}) => value === String(scope.row.status)).label }}</template>
- <template
- #platform_type="{scope}"
- >{{ String(scope.row.platform_type) === '1' ? 'ToB' : String(scope.row.platform_type) === '2' ? 'ToC' : '--' }}</template>
- </ex-table>
- <div v-else>
- <no-auth></no-auth>
- </div>
- </div>
- </template>
- <script>
- import periodDatePickerActive from "./period-date-picker/main.vue";
- import asyncRequest from "@/apis/service/reportQuery/newReport";
- import mixinPage from "@/mixins/elPaginationHandle";
- import urlConfig from "@/apis/url-config";
- import resToken from "@/mixins/resToken";
- import { table4 } from "./columns";
- import { mapGetters } from "vuex";
- import {
- xs_order_type_options,
- xs_order_source_options
- } from "@/assets/js/statusList";
- export default {
- name: "SaleReport",
- components: {
- periodDatePickerActive
- },
- mixins: [mixinPage, resToken],
- computed: {
- ...mapGetters(["tablebtnSize", "searchSize", "size"]),
- powers() {
- const { btnList } = this.$store.getters;
- const tran = btnList.find(i => i.menu_route == "reportTableFour") || {};
- const { action } = tran ?? {};
- return action ?? [];
- }
- },
- data() {
- return {
- xs_order_type_options,
- xs_order_source_options,
- // 选中数组
- changeList: [],
- // 全局url
- fileUrl: urlConfig.baseURL,
- // loading
- loading: false,
- // 请求参数集合
- parmValue: {
- companyNo: "",
- supplierNo: "",
- order_start_day: "", // 起始时间
- order_end_day: "", // 结束时间
- // is_export:0,//是否导出0/1
- page: 1, // 页码
- size: 15 // 每页显示条数
- },
- statusOptions: [
- { value: "1", label: "待发货" },
- { value: "2", label: "发货完成" },
- // { value: "3", label: "已收货" },
- // { value: "4", label: "已全部收货" },
- { value: "5", label: "已取消" }
- ],
- // 表格 - 数据集合
- tableData: [],
- // 表格 - 参数
- table: {
- stripe: true,
- border: true,
- _defaultHeader_: ["setcol"]
- },
- // 表格 - 分页
- pageInfo: {
- size: 15,
- curr: 1,
- total: 0
- },
- // 表格表头 - 列参数
- table4: table4
- };
- },
- mounted() {
- // this.parmValue.order_start_day = dayjs().subtract(0, 'day').format('YYYY-MM-DD')
- // this.parmValue.order_end_day = dayjs().subtract(0, 'day').format('YYYY-MM-DD')
- this.searchList();
- },
- methods: {
- company_idsearchChange(e) {
- const { code } = e;
- this.parmValue.companyNo = code || "";
- this.searchList();
- },
- // 初始化http请求
- async searchList() {
- if (
- (this.parmValue.order_start_day !== "" &&
- this.parmValue.order_end_day === "") ||
- (this.parmValue.order_start_day === "" &&
- this.parmValue.order_end_day !== "")
- ) {
- this.$message.warning("时间区间不完整!");
- return;
- }
- const order_start_day = new Date(
- this.parmValue.order_start_day
- ).valueOf();
- const order_end_day = new Date(this.parmValue.order_end_day).valueOf();
- const flag = order_end_day - order_start_day > 31 * 24 * 60 * 60 * 1000;
- if (
- this.parmValue.order_start_day != "" &&
- this.parmValue.order_end_day != ""
- ) {
- if (flag) {
- this.$message.warning("筛选的时间区间不能超过31天");
- return;
- }
- }
- this.loading = true;
- const res = await asyncRequest.ocl({
- ...this.parmValue,
- supplierNo: Array.isArray(this.parmValue.supplierNo)
- ? this.parmValue.supplierNo[0]
- : this.parmValue.supplierNo
- });
- 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.$message.warning(res.message);
- this.tableData = [];
- this.pageInfo.total = 0;
- }
- this.loading = false;
- },
- async supplierChange(e) {
- const { code, label } = e;
- this.parmValue.supplierNo = code ? [code] : [];
- this.searchList();
- },
- // 重置
- restSearch() {
- this.parmValue = {
- companyNo: "",
- supplierNo: "",
- order_start_day: "", // 新建起始时间
- order_end_day: "", // 新建结束时间
- // is_export:0,//是否导出0/1
- page: 1, // 页码
- size: 15 // 每页显示条数
- };
- // this.parmValue.order_start_day = dayjs().subtract(0, 'day').format('YYYY-MM-DD')
- // this.parmValue.order_end_day = dayjs().subtract(0, 'day').format('YYYY-MM-DD')
- // 表格 - 分页
- this.pageInfo = {
- size: 15,
- curr: 1,
- total: 0
- };
- this.searchList();
- },
- // 时间函数
- async time(e) {
- this.parmValue.order_start_day = e.startTime || "";
- this.parmValue.order_end_day = e.endTime || "";
- if (
- (this.parmValue.order_start_day !== "" &&
- this.parmValue.order_end_day === "") ||
- (this.parmValue.order_start_day === "" &&
- this.parmValue.order_end_day !== "")
- ) {
- this.$message.warning("时间区间不完整!");
- return;
- }
- this.pageInfo.curr = 1;
- this.parmValue.page = 1;
- await this.searchList();
- },
- // 选中触发函数
- selection_change(e) {
- const { list } = e;
- // 选中的数组集合
- this.changeList = list.length > 0 ? JSON.parse(JSON.stringify(list)) : [];
- },
- // 导出文件
- async download() {
- // if(this.changeList.length<=0){
- // this.$message.warning("请选择有效数据")
- // return;
- // }
- const model = JSON.parse(
- JSON.stringify({
- ...this.parmValue,
- supplierNo: Array.isArray(this.parmValue.supplierNo)
- ? this.parmValue.supplierNo[0]
- : this.parmValue.supplierNo
- })
- );
- delete model["page"];
- delete model["size"];
- // model.is_export = 1;
- const order_start_day = new Date(
- this.parmValue.order_start_day
- ).valueOf();
- const order_end_day = new Date(this.parmValue.order_end_day).valueOf();
- const flag = order_end_day - order_start_day > 31 * 24 * 60 * 60 * 1000;
- if (
- this.parmValue.order_start_day != "" &&
- this.parmValue.order_end_day != ""
- ) {
- if (flag) {
- this.$message.warning("导出文件的时间区间不能超过31天");
- return;
- }
- }
- if (!this.loading) {
- this.loading = true;
- const httpType = `aplication/zip`;
- axios({
- method: "post",
- url: this.fileUrl + "admin/oce",
- responseType: "blob",
- data: model,
- headers: {
- Accept: httpType
- }
- })
- .then(res => {
- if (res && res.status == 200 && res.data) {
- const url = window.URL.createObjectURL(
- new Blob([res.data], {
- type: httpType
- })
- );
- const link = document.createElement("a");
- link.style.display = "none";
- link.href = url;
- const 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;
- });
- }
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .purchaseOrder {
- // text-align: right;
- }
- </style>
|