|
@@ -1,323 +1,97 @@
|
|
|
<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="70px" size="mini" label-position="left">
|
|
|
- <el-row :gutter="20">
|
|
|
- <el-col :xs="24" :sm="12" :lg="6">
|
|
|
- <el-form-item label="单据编号" prop="billNo">
|
|
|
- <el-input v-model="screenForm.billNo" placeholder="请输入单据编号" />
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :xs="24" :sm="12" :lg="6">
|
|
|
- <el-form-item label="产品名称" prop="materialName">
|
|
|
- <el-input v-model="screenForm.materialName" placeholder="请输入产品名称" />
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :xs="24" :sm="12" :lg="6">
|
|
|
- <el-form-item label="物料编码" prop="materialNumber">
|
|
|
- <el-input v-model="screenForm.materialNumber" placeholder="请输入物料编码" />
|
|
|
- </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"
|
|
|
- :default-time="['00:00:00','23:59:59']"
|
|
|
-
|
|
|
- range-separator="至"
|
|
|
- style="width: 100%"
|
|
|
- value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
- start-placeholder="开始日期"
|
|
|
- end-placeholder="结束日期"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <!-- <el-col :xs="24" :sm="12" :lg="6">-->
|
|
|
- <!-- <el-form-item label="货主" prop="company">-->
|
|
|
- <!-- <el-input-->
|
|
|
- <!-- v-model="screenForm.company"-->
|
|
|
- <!-- placeholder="请输入供货单位"-->
|
|
|
- <!-- />-->
|
|
|
- <!-- </el-form-item>-->
|
|
|
- <!-- </el-col>-->
|
|
|
- <el-col :xs="24" :sm="12" :lg="6">
|
|
|
- <el-form-item label="仓库" prop="correspondId">
|
|
|
- <el-select
|
|
|
- v-model="screenForm.correspondId"
|
|
|
- multiple
|
|
|
- style="width: 100%"
|
|
|
- placeholder="请选择仓库"
|
|
|
- size="mini"
|
|
|
- filterable
|
|
|
- clearable
|
|
|
- >
|
|
|
- <el-option
|
|
|
- v-for="(item, index) in warehouseList"
|
|
|
- :key="index"
|
|
|
- :label="item.name"
|
|
|
- :value="item.id"
|
|
|
- />
|
|
|
- </el-select>
|
|
|
- </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-->
|
|
|
- <!-- :ex-url="'admin/user/mch/export'"-->
|
|
|
- <!-- :ex-params="exParams"-->
|
|
|
- <!-- />-->
|
|
|
- <!-- </div>-->
|
|
|
- </div>
|
|
|
- <div class="table">
|
|
|
- <el-table
|
|
|
- v-loading="listLoading"
|
|
|
- :data="dataList"
|
|
|
- element-loading-text="Loading"
|
|
|
- border
|
|
|
- fit
|
|
|
- highlight-current-row
|
|
|
- stripe
|
|
|
- show-summary
|
|
|
- :summary-method="$getSummaries"
|
|
|
- >
|
|
|
- <el-table-column label="序号" align="left" width="50" type="index" show-overflow-tooltip></el-table-column>
|
|
|
-
|
|
|
- <el-table-column align="left" label="单据编号" prop="billNo" min-width="130" show-overflow-tooltip>
|
|
|
- <template slot-scope="scope">
|
|
|
- <CopyButton :copy-text="scope.row.billNo" />
|
|
|
- <span>{{ scope.row.billNo }}</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column align="left" label="库存方向" prop="stockId" min-width="100" show-overflow-tooltip>
|
|
|
- <template v-slot="scope">
|
|
|
- {{ '普通' }}
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column align="left" label="退料日期" prop="fdate" min-width="120" show-overflow-tooltip>
|
|
|
- <template slot-scope="scope">
|
|
|
- {{ scope.row.fdate | dateToDayFilter }}
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
-
|
|
|
- <el-table-column align="left" label="单据状态" prop="fdDocumentStatus" min-width="120" show-overflow-tooltip>
|
|
|
- <template v-slot="scope">
|
|
|
- {{ scope.row.fdDocumentStatus === 'C' ? '已审核' : '' }}
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column align="left" label="入库类型" min-width="100" show-overflow-tooltip>
|
|
|
- <template v-slot="scope">
|
|
|
- {{ '其他入库' }}
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column align="left" label="产品编码" prop="materialOldNumber" min-width="200" show-overflow-tooltip>
|
|
|
- <template slot-scope="scope">
|
|
|
- <CopyButton :copy-text="scope.row.materialOldNumber" />
|
|
|
- <span>{{ scope.row.materialOldNumber }}</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column align="left" label="物料编码" prop="materialNumber" min-width="200" show-overflow-tooltip>
|
|
|
- <template slot-scope="scope">
|
|
|
- <CopyButton :copy-text="scope.row.materialNumber" />
|
|
|
- <span>{{ scope.row.materialNumber }}</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column align="left" label="产品名称" prop="materialName" min-width="200" show-overflow-tooltip>
|
|
|
- <template slot-scope="scope">
|
|
|
- <CopyButton :copy-text="scope.row.materialName" />
|
|
|
- <span>{{ scope.row.materialName }}</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column align="left" label="规格型号" prop="specification" min-width="300" show-overflow-tooltip>
|
|
|
- <template slot-scope="scope">
|
|
|
- <CopyButton :copy-text="scope.row.specification" />
|
|
|
- <span>{{ scope.row.specification }}</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column align="left" label="单位" prop="unit" min-width="100" show-overflow-tooltip>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column align="right" label="实收数量" prop="qty" min-width="100" show-overflow-tooltip>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column align="left" label="收货仓库" prop="stockName" min-width="100" show-overflow-tooltip>
|
|
|
- </el-table-column>
|
|
|
-
|
|
|
- <el-table-column align="center" label="操作" width="100" fixed="right">
|
|
|
- <template slot-scope="scope">
|
|
|
- <el-popconfirm title="弃审吗?" @onConfirm="handleUnapprove(scope.row.id, scope.row.billNo)">
|
|
|
- <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
|
|
|
- :current-page="currentPage"
|
|
|
- :page-sizes="[10, 20, 30, 50]"
|
|
|
- :page-size="10"
|
|
|
- layout="total, sizes, prev, pager, next, jumper"
|
|
|
- :total="listTotal"
|
|
|
- @size-change="handleSizeChange"
|
|
|
- @current-change="handleCurrentChange"
|
|
|
- />
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
+ <template-page
|
|
|
+ ref="pageRef"
|
|
|
+ :getList="getList"
|
|
|
+ :exportList="exportList"
|
|
|
+ :operation="operation()"
|
|
|
+ :optionsEvensGroup="optionsEvensGroup"
|
|
|
+ :columnParsing="columnParsing"
|
|
|
+ >
|
|
|
+
|
|
|
+ </template-page>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { getOtherStockInList, setApprovalPurchaseOrderIn } 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 { getOtherStockInListV2, setApprovalPurchaseOrderIn, exportOtherStockInListV2 } from '@/api/supply/purchase'
|
|
|
import { getWarehouseList } from '@/api/supply/apply'
|
|
|
-
|
|
|
export default {
|
|
|
- name: 'MaterialList',
|
|
|
+ components: { TemplatePage, Popu },
|
|
|
+ mixins: [import_mixin, add_callback_mixin],
|
|
|
data() {
|
|
|
return {
|
|
|
- currentPage: 1, // 当前页码
|
|
|
- pageSize: 10, // 每页数量
|
|
|
- listTotal: 0, // 列表总数
|
|
|
- dataList: null, // 列表数据
|
|
|
- listLoading: false, // 列表加载loading
|
|
|
- screenForm: {
|
|
|
- billNo: '',
|
|
|
- correspondId: [],
|
|
|
- endTime: '',
|
|
|
- materialName: '',
|
|
|
- date: [],
|
|
|
- materialNumber: '',
|
|
|
- materialOldNumber: '',
|
|
|
- specification: '',
|
|
|
- startTime: ''
|
|
|
+ visible: false,
|
|
|
+ // 事件组合
|
|
|
+ optionsEvensGroup: [
|
|
|
+ // [
|
|
|
+ // [
|
|
|
+ // {
|
|
|
+ // name: '导入',
|
|
|
+ // render: this.importButton(importCustomerV2)
|
|
|
+ // }
|
|
|
+ // ]
|
|
|
+ // ],
|
|
|
+ ],
|
|
|
+ // 表格属性
|
|
|
+ tableAttributes: {
|
|
|
+ // 启用勾选列
|
|
|
+ selectColumn: true
|
|
|
+ }, // 关闭新增弹窗
|
|
|
+
|
|
|
+ // 表格事件
|
|
|
+ tableEvents: {
|
|
|
+ 'selection-change': this.selectionChange
|
|
|
},
|
|
|
- isCollapse: true,
|
|
|
- warehouseList: []
|
|
|
- }
|
|
|
- },
|
|
|
- computed: {
|
|
|
- exParams() {
|
|
|
- return {
|
|
|
- billNo: this.screenForm.billNo,
|
|
|
- correspondId: this.screenForm.correspondId.join(','),
|
|
|
- endTime: this.screenForm.date ? this.screenForm.date[1] : '',
|
|
|
- materialName: this.screenForm.materialName,
|
|
|
- materialNumber: this.screenForm.materialNumber,
|
|
|
- materialOldNumber: this.screenForm.materialOldNumber,
|
|
|
- specification: this.screenForm.specification,
|
|
|
- startTime: this.screenForm.date ? this.screenForm.date[0] : ''
|
|
|
- }
|
|
|
- },
|
|
|
- isShowDetail() {
|
|
|
- // eslint-disable-next-line no-prototype-builtins
|
|
|
- return this.queryItem.hasOwnProperty('id')
|
|
|
+ recordSelected: [],
|
|
|
+
|
|
|
+ detailsId: ''
|
|
|
}
|
|
|
},
|
|
|
- created() {
|
|
|
- this.getWarehouseList()
|
|
|
- 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(...p) {
|
|
|
+ this.recordSelected = []
|
|
|
+ return getOtherStockInListV2(...p)
|
|
|
},
|
|
|
- // 获取仓库列表
|
|
|
- getWarehouseList() {
|
|
|
- getWarehouseList({
|
|
|
- pageNum: 1,
|
|
|
- pageSize: -1
|
|
|
- }).then(res => {
|
|
|
- this.warehouseList = res.data.records
|
|
|
- })
|
|
|
+ // 列表导出函数
|
|
|
+ exportList: exportOtherStockInListV2,
|
|
|
+ // 表格列解析渲染数据更改
|
|
|
+ columnParsing(item, defaultData) {
|
|
|
+ return defaultData
|
|
|
},
|
|
|
- handleUnapprove(id, billNo) {
|
|
|
- setApprovalPurchaseOrderIn({ id, billNo }).then(res => {
|
|
|
- this.$successMsg('弃审成功')
|
|
|
- this.getList()
|
|
|
- })
|
|
|
+ // 监听勾选变化
|
|
|
+ selectionChange(data) {
|
|
|
+ this.recordSelected = data
|
|
|
},
|
|
|
- // 查询列表
|
|
|
- getList() {
|
|
|
- this.listLoading = true
|
|
|
-
|
|
|
- const params = {
|
|
|
- pageNum: this.currentPage,
|
|
|
- pageSize: this.pageSize,
|
|
|
- billNo: this.screenForm.billNo,
|
|
|
- correspondId: this.screenForm.correspondId.join(','),
|
|
|
- endTime: this.screenForm.date ? this.screenForm.date[1] : '',
|
|
|
- materialName: this.screenForm.materialName,
|
|
|
- materialNumber: this.screenForm.materialNumber,
|
|
|
- materialOldNumber: this.screenForm.materialOldNumber,
|
|
|
- specification: this.screenForm.specification,
|
|
|
- startTime: this.screenForm.date ? this.screenForm.date[0] : ''
|
|
|
+ operation() {
|
|
|
+ return (h, { row, index, column }) => {
|
|
|
+ return (
|
|
|
+ <div class="operation-btns">
|
|
|
+ <el-popconfirm title="弃审吗?" onOnConfirm={() => this.handleUnapprove(row.id, row.billNo)}>
|
|
|
+ <el-button slot="reference" type="text">
|
|
|
+ 弃审
|
|
|
+ </el-button>
|
|
|
+ </el-popconfirm>
|
|
|
+ </div>
|
|
|
+ )
|
|
|
}
|
|
|
- getOtherStockInList(params).then(res => {
|
|
|
- res.data.records.forEach(item => {
|
|
|
- item.sums1 = ['auxUnitQty']
|
|
|
- item.sums2 = ['taxPrice', 'amount', 'entryTaxAmount', 'allAmount']
|
|
|
- })
|
|
|
- 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()
|
|
|
- },
|
|
|
-
|
|
|
- // 进入详情
|
|
|
- toDetail(item) {
|
|
|
- this.queryItem = item
|
|
|
+ handleClose() {
|
|
|
+ this.addOff(() => {
|
|
|
+ this.visible = false
|
|
|
+ })()
|
|
|
},
|
|
|
-
|
|
|
- backList() {
|
|
|
- this.queryItem = {}
|
|
|
+ handleUnapprove(id, billNo) {
|
|
|
+ setApprovalPurchaseOrderIn({ id, billNo }).then(res => {
|
|
|
+ this.$successMsg('弃审成功')
|
|
|
+ this.$refs.pageRef.refreshList()
|
|
|
+ })
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
-<style scoped></style>
|
|
|
+<style lang="scss" scoped></style>
|