123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619 |
- <template>
- <div class="orderEntry pagePadding">
- <ex-table
- v-loading="loading"
- v-if="powers && powers.length > 0 && powers.some((item) => item == '001')"
- :table="table"
- :data="tableData"
- :columns="columns"
- :page="pageInfo"
- :size="size"
- @page-curr-change="handlePageChange"
- @page-size-change="handleSizeChange"
- @screen-reset="
- parmValue.page = 1;
- pageInfo.curr = 1;
- searchList();
- "
- @screen-submit="
- parmValue.page = 1;
- pageInfo.curr = 1;
- searchList();
- "
- >
- <template #table-header="{}">
- <div style="width: 100%">
- <el-row :gutter="10">
- <el-col :span="24" style="padding: 0 0 10px 80px">
- <el-col :span="6" style="width: 306px; padding: 0 0 0 0">
- <period-date-picker
- :start="parmValue.starttime"
- :end="parmValue.endtime"
- :type="1"
- :width="'140px'"
- :size="searchSize"
- @timeReturned="timeReturned($event)"
- ></period-date-picker>
- </el-col>
- <el-col :span="8" style="width: 400px">
- <el-input
- :size="searchSize"
- v-model="input"
- placeholder="关键字"
- @blur="
- parmValue.page = 1;
- pageInfo.curr = 1;
- searchList();
- "
- >
- <el-select
- style="width: 125px"
- v-model="select"
- slot="prepend"
- placeholder="请选择"
- @change="
- parmValue.page = 1;
- pageInfo.curr = 1;
- searchList();
- "
- >
- <el-option label="确认单编号" value="1"></el-option>
- <el-option label="采购单编号" value="2"></el-option>
- <el-option label="销售员" value="3"></el-option>
- <el-option label="采购员" value="4"></el-option>
- </el-select>
- <el-button
- slot="append"
- icon="el-icon-search"
- @click="
- parmValue.page = 1;
- pageInfo.curr = 1;
- searchList();
- "
- ></el-button>
- </el-input>
- </el-col>
- <el-col :span="3" style="width: 60px; float: right">
- <el-button
- v-if="powers.some((item) => item == '002')"
- :size="searchSize"
- type="primary"
- style="float: right; margin-left: 10px"
- @click="searchList"
- >
- 刷新
- </el-button></el-col
- >
- <el-col :span="3" style="width: 60px; float: right">
- <el-button
- v-if="powers.some((item) => item == '003')"
- :size="searchSize"
- type="success"
- style="float: right; margin-left: 10px"
- @click="openModal('add', false)"
- >
- 添加
- </el-button>
- </el-col>
- </el-col>
- <el-col :span="24" style="padding: 0">
- <el-col :span="8" style="width: 386px">
- <search-select
- :code="code1"
- :placeholder="'确认单购买方公司名称'"
- @end="searchChange1"
- :type="'1'"
- :size="searchSize"
- />
- </el-col>
- <el-col :span="8" style="width: 400px">
- <search-select
- :code="code2"
- :placeholder="'采购单供应商名称'"
- @end="searchChange2"
- :type="'3'"
- :size="searchSize"
- />
- </el-col>
- <el-col :span="8" style="width: 160px">
- <el-select
- :size="searchSize"
- v-model="parmValue.suppitem"
- placeholder="销售员部门"
- @change="
- parmValue.page = 1;
- pageInfo.curr = 1;
- searchList();
- "
- >
- <el-option
- v-for="item in depart_options"
- :key="item.value"
- :label="item.value"
- :value="item.value"
- :disabled="item.status !== '1'"
- >
- </el-option>
- </el-select>
- </el-col>
- </el-col>
- </el-row>
- </div>
- </template>
- <template #expand="{ scope }">
- <el-form
- label-position="right"
- size="mini"
- inline
- label-width="130px"
- class="demo-table-expand"
- >
- <el-row>
- <!-- <el-col :span="8">
- <el-form-item size="mini" label="客户属性">
- <span>{{ scope.row.khzzxz }}</span>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item size="mini" label="客户分公司">
- <span>{{ scope.row.khcomp }}</span>
- </el-form-item>
- </el-col> -->
- <!-- <el-col :span="8">
- <el-form-item size="mini" label="平台">
- <span>{{ scope.row.suppitem }}</span>
- </el-form-item>
- </el-col> -->
- <el-col :span="12">
- <el-form-item size="mini" label="商品名称">
- <span>{{ scope.row.product_name }}</span>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item size="mini" label="部门">
- <span>{{ scope.row.depart }}</span>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item size="mini" label="单价">
- <span>{{ scope.row.sale_price }}</span>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item size="mini" label="数量">
- <span>{{ scope.row.order_num }}</span>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item size="mini" label="单据号">
- <span>{{ scope.row.sequenceNo }}</span>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item size="mini" label="PO编号">
- <span>{{ scope.row.poNo }}</span>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item size="mini" label="税点">
- <span>{{ scope.row.tax }}</span>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item size="mini" label="确认单类型">
- <span>{{ scope.row.qrd_type }}</span>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item size="mini" label="已回款总金额">
- <span>{{ scope.row.apay_fee }}</span>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item size="mini" label="未回款总金额">
- <span>{{ scope.row.wpay_fee }}</span>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item size="mini" label="确认单开票金额">
- <span>{{ scope.row.ainv_fee }}</span>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item size="mini" label="确认单未开票金额">
- <span>{{ scope.row.winv_fee }}</span>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- </template>
- <template #status="{ scope }">
- <el-tag
- :type="scope.row.status == '0' ? 'warning' : ''"
- :size="size"
- v-text="
- (statusOptions.find((item) => item.id == scope.row.status) || {}).label ||
- '--'
- "
- ></el-tag>
- </template>
- <template #operation="{ scope }">
- <el-tooltip
- effect="dark"
- content="详情"
- v-if="powers.some((item) => item == '007')"
- placement="top"
- >
- <i class="el-icon-view tb-icon" @click="openModal(scope.row.id, true)"></i>
- </el-tooltip>
- <el-tooltip
- effect="dark"
- content="修改"
- v-if="powers.some((item) => item == '005')"
- placement="top"
- >
- <i class="el-icon-edit tb-icon" @click="openModal(scope.row.id, false)"></i>
- </el-tooltip>
- </template>
- </ex-table>
- <no-auth v-else></no-auth>
- <!-- 弹窗 新增/修改 -->
- <add-edit
- :id="modelId"
- :show-model="showModel"
- :is-detail="isDetail"
- :contector="contector"
- :name="name"
- @refresh="searchList"
- @cancel="showModel = false"
- />
- </div>
- </template>
- <script>
- import asyncRequest from "@/apis/service/network/orderEntry";
- import ExTable from "@/components/ExTableNew.vue";
- import mixinPage from "@/mixins/elPaginationHandle";
- import addEdit from "./addEdit";
- import PeriodDatePicker from "@/components/PeriodDatePicker";
- import { mapGetters } from "vuex";
- import resToken from "@/mixins/resToken";
- export default {
- name: "orderEntry",
- components: {
- ExTable,
- addEdit,
- PeriodDatePicker,
- },
- mixins: [mixinPage, resToken],
- computed: {
- //组件SIZE设置
- ...mapGetters(["tablebtnSize", "searchSize", "size", "userid"]),
- powers() {
- let tran =
- this.$store.getters.btnList.find((item) => item.menu_route == "orderEntry") || {};
- if (tran && tran.action && tran.action.length > 0) {
- return tran.action;
- } else {
- return [];
- }
- },
- },
- data() {
- return {
- code1: [],
- code2: [],
- select: "1",
- input: "",
- isDetail: false,
- depart_options: [
- {
- status: "1",
- value: "网络部",
- },
- {
- status: "1",
- value: "客服部",
- },
- {
- status: "0",
- value: "项目部",
- },
- {
- status: "0",
- value: "平台部",
- },
- {
- status: "0",
- value: "财务部",
- },
- {
- status: "0",
- value: "采购部",
- },
- {
- status: "0",
- value: "产品部",
- },
- ],
- // 状态
- statusOptions: [
- { id: "0", label: "禁用" },
- { id: "1", label: "启用" },
- ],
- pickerOptions: {
- // disabledDate是一个函数,参数是当前选中的日期值,这个函数需要返回一个Boolean值,
- disabledDate(time) {
- let date = new Date().valueOf();
- const one = 1000 * 60 * 60 * 24;
- date = parseInt(date / one) * one;
- return time.getTime() <= date;
- },
- },
- showModel: false,
- loading: false,
- modelId: 0,
- parmValue: {
- qrdNo: "", //确认单编号
- cgdNo: "", //采购单编号
- sale_name: "", //销售员
- cgd_sale: "", //采购员
- endtime: "", //完成时间
- starttime: "", //开始下单时间
- khNo: "", //客户code
- supplierNo: "", //供应商编号
- page: 1, // 页码
- size: 15, // 每页显示条数
- suppitem: "",
- },
- // 表格 - 数据
- tableData: [],
- // 表格 - 参数
- table: {
- stripe: true,
- border: true,
- _defaultHeader_: ["setcol"],
- },
- // 表格 - 分页
- pageInfo: {
- size: 15,
- curr: 1,
- total: 0,
- },
- // 表格 - 列参数
- columns: [
- {
- type: "expand",
- label: "",
- _slot_: "expand",
- },
- {
- prop: "qrdNo",
- label: "确认单编号",
- width: "165px",
- // fixed: "left",
- },
- {
- prop: "sale_total",
- label: "销售总额",
- width: "100px",
- },
- {
- prop: "sale_name",
- label: "销售员",
- width: "70px",
- },
- {
- prop: "khNo",
- label: "企业客户编码",
- width: "125px",
- },
- {
- prop: "khName",
- label: "企业客户",
- "min-width": "190px",
- },
- {
- prop: "companyNo",
- label: "确认单销售公司编码",
- width: "175px",
- },
- {
- prop: "supperinfo",
- label: "确认单销售公司",
- "min-width": "190px",
- },
- {
- prop: "cgdNo",
- label: "采购单号",
- width: "165px",
- },
- {
- prop: "supplierNo",
- label: "供应商编号",
- width: "140px",
- },
- {
- prop: "supplier",
- label: "供应商",
- "min-width": "190px",
- },
- // {
- // prop: "suppitem",
- // label: "平台",
- // },
- // {
- // prop: "status",
- // label: "状态",
- // width: "90px",
- // _slot_: "status",
- // },
- // {
- // prop: "poNo",
- // label: "po编号",
- // },
- {
- prop: "ordertime",
- label: "创建时间",
- width: "140px",
- },
- {
- prop: "",
- label: "操作",
- width: "85px",
- fixed: "right",
- _noset_: true,
- _slot_: "operation",
- },
- ],
- };
- },
- mounted() {
- if (this.userid === "116") {
- this.parmValue.suppitem = "客服部";
- }
- if (this.userid === "65" || this.userid === "71") {
- this.parmValue.suppitem = "网络部";
- }
- this.searchList();
- },
- methods: {
- async searchList() {
- this.loading = true;
- this.parmValue.qrdNo = this.select === "1" ? this.input : "";
- this.parmValue.cgdNo = this.select === "2" ? this.input : "";
- this.parmValue.sale_name = this.select === "3" ? this.input : "";
- this.parmValue.cgd_sale = this.select === "4" ? this.input : "";
- this.parmValue.khNo = this.code1.join(",");
- this.parmValue.supplierNo = this.code2.join(",");
- const res = await asyncRequest.list(this.parmValue);
- if (res && res.code === 0 && res.data) {
- this.tableData = res.data.list;
- this.tableData.forEach((v1) => {
- v1.apay_fee = this.setnum(v1.apay_fee);
- v1.wpay_fee = this.setnum(v1.wpay_fee);
- v1.ainv_fee = this.setnum(v1.ainv_fee);
- v1.winv_fee = this.setnum(v1.winv_fee);
- });
- 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;
- },
- setnum(s) {
- let str = "";
- if (isNaN(s)) {
- str = "0";
- } else if (typeof s == "undefined") {
- str = "0";
- } else if (!s && typeof s != "undefined" && s != 0) {
- str = "0";
- } else {
- str = parseFloat(s + "").toFixed(2);
- }
- return str;
- },
- async searchChange1(e) {
- this.code1 = JSON.parse(JSON.stringify(e));
- this.parmValue.page = 1;
- await this.searchList();
- },
- async searchChange2(e) {
- this.code2 = JSON.parse(JSON.stringify(e));
- this.parmValue.page = 1;
- await this.searchList();
- },
- async timeReturned(e) {
- if (e.startTime !== "") {
- this.parmValue.starttime = e.startTime;
- } else {
- this.parmValue.starttime = "";
- }
- if (e.endTime !== "") {
- this.parmValue.endtime = e.endTime;
- } else {
- this.parmValue.endtime = "";
- }
- if (this.parmValue.starttime !== "" && this.parmValue.endtime !== "") {
- this.parmValue.page = 1;
- await this.searchList();
- }
- },
- openModal(id, isDetail) {
- this.showModel = true;
- this.modelId = id;
- this.isDetail = isDetail;
- },
- async statusConfirm(id, status) {
- await this.$confirm(`确定要改为${status === "1" ? "禁用" : "启用"}?`, {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(async () => {
- this.loading = true;
- const model = {
- companyNo: id,
- status: status === "1" ? "0" : "1",
- };
- const res = await asyncRequest.status(model);
- if (res && res.code === 0) {
- this.loading = false;
- this.$notify.success({
- title: "状态修改成功!",
- message: "",
- });
- await this.searchList();
- } else if (res && res.code >= 100 && res.code <= 104) {
- await this.logout();
- } else {
- this.loading = false;
- this.$message.warning(res.message);
- }
- })
- .catch(() => {
- console.log("取消");
- });
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .orderEntry {
- background: rgba(242, 242, 242, 1);
- min-height: 100%;
- width: 100%;
- height: 100%;
- // background-color: $bg;
- overflow: hidden;
- // position: absolute;
- z-index: 2;
- background: #fff;
- .change {
- .title {
- border-width: 0px;
- width: 100%;
- height: 100px;
- // display: flex;
- font-weight: 400;
- font-style: normal;
- font-size: 22px;
- text-align: left;
- padding: 0;
- padding: 60px 0 0 100px;
- width: 100%;
- box-sizing: border-box;
- }
- }
- }
- </style>
|