|
@@ -1,341 +1,124 @@
|
|
<template>
|
|
<template>
|
|
- <div class="app-container">
|
|
|
|
- <!-- 筛选条件 -->
|
|
|
|
- <div class="screen-container">
|
|
|
|
- <Collapse :screen-form="screenForm">
|
|
|
|
- <template #right_btn>
|
|
|
|
- <el-button size="mini" @click="resetScreenForm">清空</el-button>
|
|
|
|
- <el-button size="mini" type="primary" @click="submitScreenForm">搜索</el-button>
|
|
|
|
- </template>
|
|
|
|
- <template #search>
|
|
|
|
- <el-form ref="screenForm" :model="screenForm" label-width="100px" size="mini" label-position="left">
|
|
|
|
- <el-row :gutter="20">
|
|
|
|
- <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="salesType">
|
|
|
|
- <el-input v-model="screenForm.salesType" placeholder="请输入销售类型"></el-input>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :xs="24" :sm="12" :lg="6">
|
|
|
|
- <el-form-item label="产品名称" prop="chName">
|
|
|
|
- <el-input v-model="screenForm.chName" placeholder="请输入产品名称"></el-input>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :xs="24" :sm="12" :lg="6">
|
|
|
|
- <el-form-item label="产品编码" prop="chNum">
|
|
|
|
- <el-input v-model="screenForm.chNum" placeholder="请输入产品编码"></el-input>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :xs="24" :sm="12" :lg="6">
|
|
|
|
- <el-form-item label="规格型号" prop="model">
|
|
|
|
- <el-input v-model="screenForm.model" placeholder="请输入规格型号"></el-input>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :xs="24" :sm="12" :lg="6">
|
|
|
|
- <el-form-item label="品类" prop="type">
|
|
|
|
- <el-select v-model="screenForm.type" placeholder="全部">
|
|
|
|
- <el-option label="全部" value=""></el-option>
|
|
|
|
- <el-option
|
|
|
|
- v-for="item in typeList"
|
|
|
|
- :key="item.dictCode"
|
|
|
|
- :label="item.dictValue"
|
|
|
|
- :value="item.dictCode"
|
|
|
|
- ></el-option>
|
|
|
|
- </el-select>
|
|
|
|
- </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="jxsNum">
|
|
|
|
- <el-input v-model="screenForm.jxsNum" placeholder="请输入经销商编码"></el-input>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
- </el-row>
|
|
|
|
- </el-form>
|
|
|
|
- </template>
|
|
|
|
- </Collapse>
|
|
|
|
- </div>
|
|
|
|
-
|
|
|
|
- <div class="mymain-container">
|
|
|
|
- <div class="btn-group clearfix">
|
|
|
|
- <div class="fr">
|
|
|
|
- <ExportButton :exUrl="'admin/user/mch/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
|
|
|
|
- @selection-change="handleSelectionChange"
|
|
|
|
- >
|
|
|
|
- <el-table-column align="center" type="selection" width="55"></el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- align="center"
|
|
|
|
- label="单据号"
|
|
|
|
- prop="billNo"
|
|
|
|
- min-width="160"
|
|
|
|
- show-overflow-tooltip
|
|
|
|
- ></el-table-column>
|
|
|
|
- <el-table-column align="center" label="订单类型" prop="orderType" min-width="160" show-overflow-tooltip>
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- {{ scope.row.orderType | orderTypeFilter }}
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column
|
|
|
|
- align="center"
|
|
|
|
- label="销售类型"
|
|
|
|
- prop="saleName"
|
|
|
|
- min-width="160"
|
|
|
|
- show-overflow-tooltip
|
|
|
|
- ></el-table-column>
|
|
|
|
- <el-table-column align="left" label="物料编码" prop="materialNumber" min-width="120" show-overflow-tooltip>
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- <CopyButton :copyText="scope.row.materialNumber" />
|
|
|
|
- <span>{{ scope.row.materialNumber }}</span>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column align="left" label="产品编码" prop="materialOldNumber" min-width="140" show-overflow-tooltip>
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- <CopyButton :copyText="scope.row.materialOldNumber" />
|
|
|
|
- <span>{{ scope.row.materialOldNumber }}</span>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column align="left" label="产品名称" prop="materialName" min-width="160" show-overflow-tooltip>
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- <CopyButton :copyText="scope.row.materialName" />
|
|
|
|
- <span>{{ scope.row.materialName }}</span>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column align="left" label="规格型号" prop="specification" min-width="350" show-overflow-tooltip>
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- <CopyButton :copyText="scope.row.specification" />
|
|
|
|
- <span>{{ scope.row.specification }}</span>
|
|
|
|
- </template>
|
|
|
|
- </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="number"
|
|
|
|
- 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="amount"
|
|
|
|
- min-width="100"
|
|
|
|
- show-overflow-tooltip
|
|
|
|
- ></el-table-column>
|
|
|
|
- <el-table-column align="left" label="经销商编码" prop="customerNumber" min-width="100" show-overflow-tooltip>
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- <CopyButton :copyText="scope.row.customerNumber" />
|
|
|
|
- <span>{{ scope.row.customerNumber }}</span>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column align="left" label="经销商名称" prop="customerName" min-width="250" show-overflow-tooltip>
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- <CopyButton :copyText="scope.row.customerName" />
|
|
|
|
- <span>{{ scope.row.customerName }}</span>
|
|
|
|
- </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 class="">
|
|
|
|
|
|
+ <div style="height: 100%">
|
|
|
|
+ <template-page
|
|
|
|
+ style="height: 90%"
|
|
|
|
+ ref="pageRef"
|
|
|
|
+ :getList="getList"
|
|
|
|
+ :exportList="exportList"
|
|
|
|
+ :tableEvents="tableEvents"
|
|
|
|
+ :tableAttributes="tableAttributes"
|
|
|
|
+ :operation="operation()"
|
|
|
|
+ :columnParsing="columnParsing"
|
|
|
|
+ >
|
|
|
|
+ </template-page>
|
|
|
|
+ <div class="btn">
|
|
<div>
|
|
<div>
|
|
<el-button size="small" type="primary" @click="clickSubmit()">提 交</el-button>
|
|
<el-button size="small" type="primary" @click="clickSubmit()">提 交</el-button>
|
|
</div>
|
|
</div>
|
|
- <div style="margin-top: 10px; font-size: 14px; color: #666">注:提交成功后,系统将自动生成采购计划订单</div>
|
|
|
|
|
|
+ <div class="tip">注:提交成功后,系统将自动生成采购计划订单</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
-import { getSumList, submitPlan } from '@/api/supply/purchase'
|
|
|
|
|
|
+import TemplatePage from '@/components/template/template-page-1.vue'
|
|
|
|
+import import_mixin from '@/components/template/import_mixin.js'
|
|
|
|
+import add_callback_mixin from '@/components/template/add_callback_mixin.js'
|
|
|
|
+import Popu from '@/components/template/popu.vue'
|
|
|
|
+import { getPlanCustomerListV2, exportPlanCustomerListV2, submitPlan } from '@/api/supply/purchase'
|
|
import { getDictList } from '@/api/common'
|
|
import { getDictList } from '@/api/common'
|
|
-
|
|
|
|
export default {
|
|
export default {
|
|
- filters: {
|
|
|
|
- orderTypeFilter(val) {
|
|
|
|
- const MAP = {
|
|
|
|
- 1: '工程计划单',
|
|
|
|
- 2: '零售计划单'
|
|
|
|
- }
|
|
|
|
- return MAP[val]
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
|
|
+ components: { TemplatePage, Popu },
|
|
|
|
+ mixins: [import_mixin, add_callback_mixin],
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
- currentPage: 1, // 当前页码
|
|
|
|
- pageSize: 10, // 每页数量
|
|
|
|
- listTotal: 0, // 列表总数
|
|
|
|
- dataList: null, // 列表数据
|
|
|
|
- listLoading: false, // 列表加载loading
|
|
|
|
- screenForm: {
|
|
|
|
- // 筛选表单数据
|
|
|
|
- orderNum: '',
|
|
|
|
- salesType: '',
|
|
|
|
- chName: '',
|
|
|
|
- chNum: '',
|
|
|
|
- model: '',
|
|
|
|
- type: '',
|
|
|
|
- jxsName: '',
|
|
|
|
- jxsNum: ''
|
|
|
|
- },
|
|
|
|
- typeList: [],
|
|
|
|
- isCollapse: true,
|
|
|
|
- multipleSelection: []
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
-
|
|
|
|
- computed: {
|
|
|
|
- exParams() {
|
|
|
|
- return {
|
|
|
|
- billNo: this.screenForm.orderNum,
|
|
|
|
- saleName: this.screenForm.salesType,
|
|
|
|
- materialName: this.screenForm.chName,
|
|
|
|
- materialNumber: this.screenForm.chNum,
|
|
|
|
- specification: this.screenForm.model,
|
|
|
|
- materialType: this.screenForm.type,
|
|
|
|
- customerName: this.screenForm.jxsName,
|
|
|
|
- customerNumber: this.screenForm.jxsNum
|
|
|
|
|
|
+ visible: false,
|
|
|
|
+ // 事件组合
|
|
|
|
+ optionsEvensGroup: [],
|
|
|
|
+ // 表格属性
|
|
|
|
+ tableAttributes: {
|
|
|
|
+ // 启用勾选列
|
|
|
|
+ selectColumn: true
|
|
|
|
+ }, // 关闭新增弹窗
|
|
|
|
+
|
|
|
|
+ // 表格事件
|
|
|
|
+ tableEvents: {
|
|
|
|
+ 'selection-change': this.selectionChange
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
},
|
|
-
|
|
|
|
- created() {
|
|
|
|
- this.getDictList()
|
|
|
|
- this.getList()
|
|
|
|
- },
|
|
|
|
-
|
|
|
|
methods: {
|
|
methods: {
|
|
- // 查询按钮权限
|
|
|
|
- checkBtnRole(value) {
|
|
|
|
- // let btnRole = this.$route.meta.roles;
|
|
|
|
- // if(!btnRole) {return true}
|
|
|
|
- // let index = btnRole.indexOf(value);
|
|
|
|
- // return index >= 0;
|
|
|
|
- return true
|
|
|
|
- },
|
|
|
|
-
|
|
|
|
- getDictList() {
|
|
|
|
- getDictList({ sysDictEnum: 'PRODUCT_TYPE' }).then(res => {
|
|
|
|
- this.typeList = res.data
|
|
|
|
- })
|
|
|
|
|
|
+ // 列表请求函数
|
|
|
|
+ getList(...p) {
|
|
|
|
+ this.recordSelected = []
|
|
|
|
+ return getPlanCustomerListV2(...p)
|
|
},
|
|
},
|
|
-
|
|
|
|
- // 查询列表
|
|
|
|
- getList() {
|
|
|
|
- this.listLoading = true
|
|
|
|
-
|
|
|
|
- let params = {
|
|
|
|
- pageNum: this.currentPage,
|
|
|
|
- pageSize: this.pageSize,
|
|
|
|
- billNo: this.screenForm.orderNum,
|
|
|
|
- saleName: this.screenForm.salesType,
|
|
|
|
- materialName: this.screenForm.chName,
|
|
|
|
- materialNumber: this.screenForm.chNum,
|
|
|
|
- specification: this.screenForm.model,
|
|
|
|
- materialType: this.screenForm.type,
|
|
|
|
- customerName: this.screenForm.jxsName,
|
|
|
|
- customerNumber: this.screenForm.jxsNum
|
|
|
|
- }
|
|
|
|
- getSumList(params).then(res => {
|
|
|
|
- this.dataList = res.data.records
|
|
|
|
- this.listTotal = res.data.total
|
|
|
|
- this.listLoading = false
|
|
|
|
- })
|
|
|
|
|
|
+ // 列表导出函数
|
|
|
|
+ exportList: exportPlanCustomerListV2,
|
|
|
|
+ // 表格列解析渲染数据更改
|
|
|
|
+ columnParsing(item, defaultData) {
|
|
|
|
+ return defaultData
|
|
},
|
|
},
|
|
-
|
|
|
|
- // 提交筛选表单
|
|
|
|
- submitScreenForm() {
|
|
|
|
- this.currentPage = 1
|
|
|
|
- this.getList()
|
|
|
|
|
|
+ // 监听勾选变化
|
|
|
|
+ selectionChange(data) {
|
|
|
|
+ this.recordSelected = data
|
|
},
|
|
},
|
|
-
|
|
|
|
- // 重置筛选表单
|
|
|
|
- resetScreenForm() {
|
|
|
|
- this.$refs.screenForm.resetFields()
|
|
|
|
- this.currentPage = 1
|
|
|
|
- this.getList()
|
|
|
|
- },
|
|
|
|
-
|
|
|
|
- // 更改每页数量
|
|
|
|
- handleSizeChange(val) {
|
|
|
|
- this.pageSize = val
|
|
|
|
- this.currentPage = 1
|
|
|
|
- this.getList()
|
|
|
|
|
|
+ operation() {
|
|
|
|
+ return (h, { row, index, column }) => {
|
|
|
|
+ return (
|
|
|
|
+ <div class="operation-btns">
|
|
|
|
+ <el-button
|
|
|
|
+ size="mini"
|
|
|
|
+ type="text"
|
|
|
|
+ onClick={() => {
|
|
|
|
+ this.visible = true
|
|
|
|
+ this.detailsId = row.id
|
|
|
|
+ }}
|
|
|
|
+ >
|
|
|
|
+ 查看
|
|
|
|
+ </el-button>
|
|
|
|
+ </div>
|
|
|
|
+ )
|
|
|
|
+ }
|
|
},
|
|
},
|
|
-
|
|
|
|
- // 更改当前页
|
|
|
|
- handleCurrentChange(val) {
|
|
|
|
- this.currentPage = val
|
|
|
|
- this.getList()
|
|
|
|
|
|
+ handleClose() {
|
|
|
|
+ this.addOff(() => {
|
|
|
|
+ this.visible = false
|
|
|
|
+ })()
|
|
},
|
|
},
|
|
-
|
|
|
|
- // 表格选择
|
|
|
|
- handleSelectionChange(val) {
|
|
|
|
- this.multipleSelection = val
|
|
|
|
|
|
+ getDictList() {
|
|
|
|
+ getDictList({ sysDictEnum: 'PRODUCT_TYPE' }).then(res => {
|
|
|
|
+ this.typeList = res.data
|
|
|
|
+ })
|
|
},
|
|
},
|
|
|
|
|
|
// 提交
|
|
// 提交
|
|
clickSubmit() {
|
|
clickSubmit() {
|
|
- if (this.multipleSelection.length < 1) {
|
|
|
|
|
|
+ if (this.recordSelected.length < 1) {
|
|
return this.$errorMsg('请选择单据')
|
|
return this.$errorMsg('请选择单据')
|
|
}
|
|
}
|
|
let ids = []
|
|
let ids = []
|
|
- this.multipleSelection.forEach(item => {
|
|
|
|
|
|
+ this.recordSelected.forEach(item => {
|
|
ids.push(item.id)
|
|
ids.push(item.id)
|
|
})
|
|
})
|
|
submitPlan(ids).then(res => {
|
|
submitPlan(ids).then(res => {
|
|
this.$successMsg()
|
|
this.$successMsg()
|
|
- this.getList()
|
|
|
|
|
|
+ this.$refs.pageRef.refreshList()
|
|
})
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|
|
|
|
|
|
-<style lang="scss" scoped></style>
|
|
|
|
|
|
+<style lang="scss" scoped>
|
|
|
|
+.btn {
|
|
|
|
+ margin: 0 20px;
|
|
|
|
+}
|
|
|
|
+.tip {
|
|
|
|
+ margin-top: 10px;
|
|
|
|
+ text-align: left;
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ color: #f00;
|
|
|
|
+
|
|
|
|
+}
|
|
|
|
+</style>
|