123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603 |
- <template>
- <div class="app-container">
- <div
- v-show="!isShowDetail && !isShowForm && !isShowExamine && !isShowReturn"
- >
- <!-- 筛选条件 -->
- <div class="screen-container">
- <el-form
- ref="screenForm"
- :model="screenForm"
- label-width="100px"
- size="small"
- label-position="left"
- >
- <el-row :gutter="20">
- <el-col :xs="24" :sm="24" :lg="24">
- <el-form-item prop="status" label-width="0">
- <el-radio-group
- v-model="screenForm.status"
- size="medium"
- @change="getList()"
- >
- <el-radio-button label="">全部</el-radio-button>
- <el-radio-button
- v-for="(item, index) in statusList"
- :key="index"
- :label="item.value"
- >{{ item.label }}</el-radio-button
- >
- </el-radio-group>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="订单号" prop="orderNum">
- <el-input
- v-model="screenForm.orderNum"
- placeholder="请输入订单号"
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="销售政策编号" prop="policyCode">
- <el-input
- v-model="screenForm.policyCode"
- placeholder="请输入销售政策编号"
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="销售政策说明" prop="policyRemark">
- <el-input
- v-model="screenForm.policyRemark"
- placeholder="请输入销售政策说明"
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="经销商" prop="jxsName">
- <el-input
- v-model="screenForm.jxsName"
- placeholder="请输入经销商"
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="订单日期" prop="date">
- <el-date-picker
- v-model="screenForm.date"
- type="datetimerange"
- range-separator="至"
- style="width: 100%"
- value-format="yyyy-MM-dd HH:mm:ss"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- >
- </el-date-picker>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="制表人" prop="zbMan">
- <el-input
- v-model="screenForm.zbMan"
- placeholder="请输入制表人"
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6">
- <el-form-item label="审核人" prop="shMan">
- <el-input
- v-model="screenForm.shMan"
- placeholder="请输入审核人"
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :lg="6" class="tr">
- <el-form-item label="">
- <el-button size="small" @click="resetScreenForm"
- >清空</el-button
- >
- <el-button size="small" type="primary" @click="submitScreenForm"
- >搜索</el-button
- >
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- </div>
- <div class="mymain-container">
- <div class="btn-group clearfix">
- <div class="fl">
- <el-button
- size="small"
- type="primary"
- icon="el-icon-plus"
- @click="toForm()"
- >新增</el-button
- >
- </div>
- <div class="fr">
- <ExportButton :exUrl="'retail/export'" :exParams="exParams" />
- </div>
- </div>
- <div class="table">
- <el-table
- v-loading="listLoading"
- :data="dataList"
- element-loading-text="Loading"
- border
- fit
- highlight-current-row
- stripe
- >
- <!-- <el-table-column
- align="center"
- label="提货进度"
- prop="thjd"
- min-width="180"
- show-overflow-tooltip
- >
- <template slot-scope="scope">
- <el-progress :percentage="scope.row.thjd || 0"></el-progress>
- </template>
- </el-table-column> -->
- <el-table-column
- align="center"
- label="订单号"
- prop="id"
- min-width="180"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="订单日期"
- prop="theTime"
- min-width="100"
- show-overflow-tooltip
- >
- <template slot-scope="scope">
- {{ scope.row.theTime | dateToDayFilter }}
- </template>
- </el-table-column>
- <el-table-column
- align="center"
- label="销售政策编号"
- prop="policyCode"
- min-width="100"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="销售政策说明"
- prop="policyRemark"
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="经销商"
- prop="customerName"
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="产品编码"
- prop="materialCode"
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="产品名称"
- prop="materialName"
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="规格型号"
- prop="specification"
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="计量单位"
- prop="unit"
- min-width="100"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="是否直调"
- prop="isDirectTransfer"
- min-width="100"
- show-overflow-tooltip
- >
- <template slot-scope="scope">
- {{ scope.row.isDirectTransfer ? "是" : "否" }}
- </template>
- </el-table-column>
- <el-table-column
- align="center"
- label="总数量"
- prop="totalQty"
- min-width="100"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="单价"
- prop="price"
- min-width="100"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="金额"
- prop="totalAmount"
- min-width="100"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="返利使用比例"
- prop="rebateRate"
- min-width="110"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="返利"
- prop="rebateAmount"
- min-width="100"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="直调数量"
- prop="directTransferQty"
- min-width="100"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="出库数量"
- prop="hasSendQty"
- min-width="100"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="业务员"
- prop="serviceName"
- min-width="100"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="制表人"
- prop="createName"
- min-width="100"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="制表日期"
- prop="createTime"
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="审核人"
- prop="examineName"
- min-width="100"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="审核日期"
- prop="examineTime"
- min-width="160"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- align="center"
- label="审核状态"
- prop="examineStatus"
- min-width="100"
- show-overflow-tooltip
- >
- <template slot-scope="scope">
- {{ scope.row.examineStatus | statusFilter }}
- </template>
- </el-table-column>
- <el-table-column
- align="center"
- label="操作"
- width="220"
- fixed="right"
- >
- <template slot-scope="scope">
- <el-popconfirm
- v-if="scope.row.examineStatus === 'SAVE'"
- style="margin-right: 10px"
- title="确定撤回?"
- @onConfirm="handleSubmit(scope.row.id)"
- >
- <el-button slot="reference" type="text">提审</el-button>
- </el-popconfirm>
- <el-button type="text" @click="toForm(scope.row)"
- >编辑</el-button
- >
- <el-popconfirm
- v-if="scope.row.examineStatus == 'WAIT'"
- style="margin-left: 10px"
- title="确定撤回?"
- @onConfirm="handleCancel(scope.row.id)"
- >
- <el-button slot="reference" type="text">撤回</el-button>
- </el-popconfirm>
- <el-button
- style="margin-left: 10px"
- type="text"
- @click="toDetail(scope.row)"
- >详情</el-button
- >
- <el-popconfirm
- style="margin-left: 10px"
- title="确定关闭吗?"
- @onConfirm="handleClose(scope.row.id)"
- v-if="!scope.row.closeTime"
- >
- <el-button slot="reference" type="text">关闭</el-button>
- </el-popconfirm>
- </template>
- </el-table-column>
- </el-table>
- </div>
- </div>
- <div class="pagination clearfix">
- <div class="fr">
- <el-pagination
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :current-page="currentPage"
- :page-sizes="[10, 20, 30, 50]"
- :page-size="10"
- layout="total, sizes, prev, pager, next, jumper"
- :total="listTotal"
- >
- </el-pagination>
- </div>
- </div>
- </div>
- <RetailDetail
- :listItem="queryItem"
- v-if="isShowDetail"
- @backListFormDetail="backList"
- />
- <RetailForm
- :listItem="queryItem"
- v-if="isShowForm"
- @backListFormDetail="backList"
- />
- <RetailExamine
- :listItem="queryItem"
- v-if="isShowExamine"
- @backListFormDetail="backList"
- />
- <RetailReturn
- :listItem="queryItem"
- v-if="isShowReturn"
- @backListFormDetail="backList"
- />
- </div>
- </template>
- <script>
- import {
- getList,
- closeData,
- submitData,
- submitCancel,
- } from "@/api/supply/policy";
- import RetailDetail from "./components/retail_detail";
- import RetailForm from "./components/retail_form";
- import RetailExamine from "./components/retail_examine";
- import RetailReturn from "./components/retail_return";
- let that;
- export default {
- components: {
- RetailDetail,
- RetailForm,
- RetailExamine,
- RetailReturn,
- },
- filters: {
- statusFilter(val) {
- let obj = that.statusList.find((o) => o.value == val);
- return obj ? obj.label : "";
- },
- },
- data() {
- return {
- currentPage: 1, // 当前页码
- pageSize: 10, // 每页数量
- listTotal: 0, // 列表总数
- dataList: null, // 列表数据
- listLoading: false, // 列表加载loading
- screenForm: {
- // 筛选表单数据
- orderNum: "",
- policyCode: "",
- policyRemark: "",
- jxsName: "",
- date: "",
- zbMan: "",
- shMan: "",
- status: "",
- },
- statusList: [
- { label: "已保存", value: "SAVE" },
- { label: "待审核", value: "WAIT" },
- { label: "审核通过", value: "OK" },
- { label: "审核驳回", value: "FAIL" },
- ],
- queryItem: {},
- isShowDetail: false,
- isShowForm: false,
- isShowExamine: false,
- isShowReturn: false,
- };
- },
- computed: {
- exParams() {
- return {
- examineStatus: this.screenForm.status,
- id: this.screenForm.orderNum,
- policyCode: this.screenForm.policyCode,
- policyRemark: this.screenForm.policyRemark,
- customer: this.screenForm.jxsName,
- startTime: this.screenForm.date ? this.screenForm.date[0] : "",
- endTime: this.screenForm.date ? this.screenForm.date[1] : "",
- createBy: this.screenForm.zbMan,
- examineBy: this.screenForm.shMan,
- type: 2, // 1:普通零售单,2:政策零售单
- };
- },
- },
- beforeCreate() {
- that = this;
- },
- created() {
- this.getList();
- },
- methods: {
- // 查询按钮权限
- checkBtnRole(value) {
- // let btnRole = this.$route.meta.roles;
- // if(!btnRole) {return true}
- // let index = btnRole.indexOf(value);
- // return index >= 0;
- return true;
- },
- // 查询列表
- getList() {
- this.listLoading = true;
- let params = {
- pageNum: this.currentPage,
- pageSize: this.pageSize,
- examineStatus: this.screenForm.status,
- id: this.screenForm.orderNum,
- policyCode: this.screenForm.policyCode,
- policyRemark: this.screenForm.policyRemark,
- customer: this.screenForm.jxsName,
- startTime: this.screenForm.date ? this.screenForm.date[0] : "",
- endTime: this.screenForm.date ? this.screenForm.date[1] : "",
- createBy: this.screenForm.zbMan,
- examineBy: this.screenForm.shMan,
- type: 2, // 1:普通零售单,2:政策零售单
- };
- getList(params).then((res) => {
- this.dataList = res.data.records;
- this.listTotal = res.data.total;
- this.listLoading = false;
- });
- },
- // 提交筛选表单
- submitScreenForm() {
- this.currentPage = 1;
- this.getList();
- },
- // 重置筛选表单
- resetScreenForm() {
- this.$refs.screenForm.resetFields();
- this.currentPage = 1;
- this.getList();
- },
- // 更改每页数量
- handleSizeChange(val) {
- this.pageSize = val;
- this.currentPage = 1;
- this.getList();
- },
- // 更改当前页
- handleCurrentChange(val) {
- this.currentPage = val;
- this.getList();
- },
- // 进入表单
- toForm(item) {
- this.queryItem = item;
- this.isShowForm = true;
- },
- // 进入详情
- toDetail(item) {
- this.queryItem = item;
- this.isShowDetail = true;
- },
- // 进入审批
- toExamine(item) {
- this.queryItem = item;
- this.isShowExamine = true;
- },
- // 进入退订
- toReturn(item) {
- this.queryItem = item;
- this.isShowReturn = true;
- },
- backList() {
- this.queryItem = {};
- this.isShowDetail = false;
- this.isShowForm = false;
- this.isShowExamine = false;
- this.isShowReturn = false;
- },
- // 关闭
- handleClose(id) {
- closeData({ id }).then((res) => {
- this.$successMsg();
- this.getList();
- });
- },
- // 提审
- handleSubmit(id) {
- submitData({ id }).then((res) => {
- this.$successMsg();
- this.getList();
- });
- },
- //撤回
- handleCancel(id) {
- submitCancel({ id }).then((res) => {
- this.$successMsg();
- this.getList();
- });
- },
- },
- };
- </script>
- <style lang="scss" scoped></style>
|