|
|
|
|
<template>
|
|
|
|
|
<basic-container>
|
|
|
|
|
<avue-crud :option="option" :table-loading="loading" :data="data" ref="crud" v-model="form" :page.sync="page"
|
|
|
|
|
:permission="permissionList"
|
|
|
|
|
@search-change="searchChange"
|
|
|
|
|
@search-reset="searchReset"
|
|
|
|
|
@selection-change="selectionChange"
|
|
|
|
|
@current-change="currentChange"
|
|
|
|
|
@size-change="sizeChange"
|
|
|
|
|
@refresh-change="refreshChange"
|
|
|
|
|
@on-load="onLoad">
|
|
|
|
|
<!-- @row-click="rowSelect" -->
|
|
|
|
|
<template slot-scope="scope" slot="menuLeft">
|
|
|
|
|
<el-button size="small" plain @click="handleDesign()">新增入库单
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button size="small" plain @click="handleExport()">入库单导出
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
<template slot-scope="scope" slot="purchaseEndInfo">
|
|
|
|
|
<el-button type="text" @click.stop="purchaseFn(scope.row)" v-if="scope.row.purchaseEndInfo != ''">{{
|
|
|
|
|
scope.row.purchaseEndInfo }}</el-button>
|
|
|
|
|
<span v-else>无</span>
|
|
|
|
|
</template>
|
|
|
|
|
<template #menu="scope">
|
|
|
|
|
<el-button type="text" @click.stop="handleDetails(scope.row)">详情</el-button>
|
|
|
|
|
<el-button type="text" v-if="scope.row.str7 == 1" @click.stop="handleEdit(scope.row)">编辑</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</avue-crud>
|
|
|
|
|
<!-- 新增 -->
|
|
|
|
|
<inDialog v-if="inDialogVisible" :repairVisible='inDialogVisible' :inDialogTiltle="inDialogTiltle"
|
|
|
|
|
:inDialogType="inDialogType" @handleCloseDetail="handleCloseDetail" type="一级库" :id='id'>
|
|
|
|
|
</inDialog>
|
|
|
|
|
|
|
|
|
|
<!-- 采购单详情 -->
|
|
|
|
|
<purchaseDialog :showDialog="purchaseOpen" v-if="purchaseOpen" @closeDialog="closeDialog"
|
|
|
|
|
:purchaseTitle="purchaseTitle" :id='id'></purchaseDialog>
|
|
|
|
|
</basic-container>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import { getList } from "@/api/firstOrder/inbound";
|
|
|
|
|
import { mapGetters } from "vuex";
|
|
|
|
|
import inDialog from './components/inDialog.vue';
|
|
|
|
|
import purchaseDialog from './components/purchaseDialog.vue';
|
|
|
|
|
export default {
|
|
|
|
|
components: {
|
|
|
|
|
inDialog,
|
|
|
|
|
purchaseDialog
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
// form: {},
|
|
|
|
|
form: { inDate: [], inOperatorName: '', inOperator: '' },
|
|
|
|
|
selectionList: [],
|
|
|
|
|
query: {},
|
|
|
|
|
loading: true,
|
|
|
|
|
page: {
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
currentPage: 1,
|
|
|
|
|
total: 0
|
|
|
|
|
},
|
|
|
|
|
option: {
|
|
|
|
|
height: 'auto',
|
|
|
|
|
calcHeight: 30,
|
|
|
|
|
tip: false,
|
|
|
|
|
searchShow: true,
|
|
|
|
|
searchMenuSpan: 6,
|
|
|
|
|
border: true,
|
|
|
|
|
index: true,
|
|
|
|
|
selection: true,
|
|
|
|
|
viewBtn: true,
|
|
|
|
|
dialogClickModal: false,
|
|
|
|
|
selection: false,
|
|
|
|
|
printBtn: false,
|
|
|
|
|
refreshBtn: false,
|
|
|
|
|
gridBtn: false,
|
|
|
|
|
gridBackgroundImage: false,
|
|
|
|
|
gridSpan: false,
|
|
|
|
|
filterBtn: false,
|
|
|
|
|
columnBtn: false,
|
|
|
|
|
menuWidth: 120,
|
|
|
|
|
menu: true,
|
|
|
|
|
column: [
|
|
|
|
|
{
|
|
|
|
|
label: "采购单名称",
|
|
|
|
|
prop: "purchaseEndInfo",
|
|
|
|
|
width: 180,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "仓库名称",
|
|
|
|
|
prop: "warehouseName",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "入库单号",
|
|
|
|
|
prop: "orderNo",
|
|
|
|
|
width: 110
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "入库日期",
|
|
|
|
|
prop: "inDate",
|
|
|
|
|
search: true,
|
|
|
|
|
type: "datetime",
|
|
|
|
|
searchRange: true,
|
|
|
|
|
startPlaceholder: '开始时间',
|
|
|
|
|
endPlaceholder: "结束时间",
|
|
|
|
|
format: 'yyyy-MM-dd HH:mm:ss',
|
|
|
|
|
valueFormat: 'yyyy-MM-dd HH:mm:ss',
|
|
|
|
|
width: 120,
|
|
|
|
|
// searchParam: 'startTime',
|
|
|
|
|
// searchEndParam: 'endTime'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "入库人",
|
|
|
|
|
prop: "inOperatorName",
|
|
|
|
|
search: true,
|
|
|
|
|
searchParam: 'inOperator'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "来源",
|
|
|
|
|
prop: "source",
|
|
|
|
|
search: false,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "事由",
|
|
|
|
|
prop: "reason",
|
|
|
|
|
search: false,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "物资类型",
|
|
|
|
|
prop: "materialType",
|
|
|
|
|
search: false,
|
|
|
|
|
type: 'select',
|
|
|
|
|
dicData: [{
|
|
|
|
|
label: '办公物资',
|
|
|
|
|
value: '1'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '其他物资',
|
|
|
|
|
value: '2'
|
|
|
|
|
}]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "审批人员",
|
|
|
|
|
prop: "approvers",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "状态",
|
|
|
|
|
prop: "status",
|
|
|
|
|
type: 'select',
|
|
|
|
|
dicData: [
|
|
|
|
|
{
|
|
|
|
|
label: '暂存',
|
|
|
|
|
value: 1
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '待审批',
|
|
|
|
|
value: 2
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '已审批',
|
|
|
|
|
value: 3
|
|
|
|
|
},
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
data: [
|
|
|
|
|
// {
|
|
|
|
|
// caigoudanmingcheng: "2025年第一季度采购单",
|
|
|
|
|
// str1: '类型一',
|
|
|
|
|
// str2: '00000001',
|
|
|
|
|
// str3: '2025-03-01',
|
|
|
|
|
// str4: '员工一',
|
|
|
|
|
// str5: '员工二',
|
|
|
|
|
// str6: '采购',
|
|
|
|
|
// str7: '1',
|
|
|
|
|
// }, {
|
|
|
|
|
// caigoudanmingcheng: "2025年第二季度采购单",
|
|
|
|
|
// str1: '类型二',
|
|
|
|
|
// str2: '00000002',
|
|
|
|
|
// str3: '2025-03-02',
|
|
|
|
|
// str4: '员工一',
|
|
|
|
|
// str5: '员工二',
|
|
|
|
|
// str6: '采购',
|
|
|
|
|
// str7: '2',
|
|
|
|
|
// }, {
|
|
|
|
|
// caigoudanmingcheng: "",
|
|
|
|
|
// str1: '类型三',
|
|
|
|
|
// str2: '00000002',
|
|
|
|
|
// str3: '2025-03-02',
|
|
|
|
|
// str4: '员工一',
|
|
|
|
|
// str5: '员工二',
|
|
|
|
|
// str6: '单项',
|
|
|
|
|
// str7: '3',
|
|
|
|
|
// }, {
|
|
|
|
|
// caigoudanmingcheng: "",
|
|
|
|
|
// str1: '类型三',
|
|
|
|
|
// str2: '00000002',
|
|
|
|
|
// str3: '2025-03-02',
|
|
|
|
|
// str4: '员工一',
|
|
|
|
|
// str5: '员工二',
|
|
|
|
|
// str6: '单项',
|
|
|
|
|
// str7: '1',
|
|
|
|
|
// }
|
|
|
|
|
],
|
|
|
|
|
inDialogVisible: false,
|
|
|
|
|
inDialogTiltle: '入库',
|
|
|
|
|
inDialogType: '',//弹框类型
|
|
|
|
|
purchaseOpen: false,
|
|
|
|
|
purchaseTitle: '',
|
|
|
|
|
inTitle: '',
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
computed: {
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
handleDesign() {
|
|
|
|
|
debugger
|
|
|
|
|
this.inDialogType = 'add'
|
|
|
|
|
this.inDialogTiltle = '新增入库'
|
|
|
|
|
this.inDialogVisible = true
|
|
|
|
|
},
|
|
|
|
|
// 详情
|
|
|
|
|
handleDetails(row) {
|
|
|
|
|
this.inDialogVisible = true
|
|
|
|
|
this.inDialogType = 'details'
|
|
|
|
|
this.inDialogTiltle = '详情'
|
|
|
|
|
},
|
|
|
|
|
// 编辑
|
|
|
|
|
handleEdit(row) {
|
|
|
|
|
this.inDialogVisible = true
|
|
|
|
|
this.inDialogType = 'edit'
|
|
|
|
|
this.inDialogTiltle = '编辑'
|
|
|
|
|
this.id = row.id
|
|
|
|
|
},
|
|
|
|
|
// 采购单
|
|
|
|
|
purchaseFn(row) {
|
|
|
|
|
this.purchaseOpen = true
|
|
|
|
|
this.purchaseTitle = row.purchaseEndInfo + '采购单详情'
|
|
|
|
|
this.id = row.id
|
|
|
|
|
console.log(row, this.id,1)
|
|
|
|
|
},
|
|
|
|
|
closeDialog() {
|
|
|
|
|
this.purchaseOpen = false
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
handleCloseDetail() {
|
|
|
|
|
this.inDialogVisible = false
|
|
|
|
|
},
|
|
|
|
|
handleExport(name) {
|
|
|
|
|
this.$message({
|
|
|
|
|
type: "success",
|
|
|
|
|
message: "出库单导出成功!"
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 行点击事件
|
|
|
|
|
rowSelect(row) {
|
|
|
|
|
this.inDialogVisible = true
|
|
|
|
|
this.inDialogType = 'inbound'
|
|
|
|
|
this.inDialogTiltle = '入库'
|
|
|
|
|
},
|
|
|
|
|
searchReset() {
|
|
|
|
|
this.query = {};
|
|
|
|
|
this.form.inDate = []
|
|
|
|
|
this.form.inOperatorName = ''
|
|
|
|
|
this.form.inOperator = ''
|
|
|
|
|
this.onLoad(this.page);
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
searchChange(params, done) {
|
|
|
|
|
if (params && params.inOperatorName && !params.inOperator) {
|
|
|
|
|
params.inOperator = params.inOperatorName;
|
|
|
|
|
delete params.inOperatorName;
|
|
|
|
|
}
|
|
|
|
|
this.query = params;
|
|
|
|
|
this.page.currentPage = 1;
|
|
|
|
|
this.onLoad(this.page, params);
|
|
|
|
|
done();
|
|
|
|
|
},
|
|
|
|
|
selectionChange(list) {
|
|
|
|
|
this.selectionList = list;
|
|
|
|
|
},
|
|
|
|
|
selectionClear() {
|
|
|
|
|
this.selectionList = [];
|
|
|
|
|
this.$refs.crud.toggleSelection();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
currentChange(currentPage) {
|
|
|
|
|
this.page.currentPage = currentPage;
|
|
|
|
|
},
|
|
|
|
|
sizeChange(pageSize) {
|
|
|
|
|
this.page.pageSize = pageSize;
|
|
|
|
|
},
|
|
|
|
|
refreshChange() {
|
|
|
|
|
this.onLoad(this.page, this.query);
|
|
|
|
|
},
|
|
|
|
|
onLoad(page, params = {}) {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
const queryParams = {
|
|
|
|
|
...params,
|
|
|
|
|
...this.query,
|
|
|
|
|
pageSize: page.pageSize,
|
|
|
|
|
pageNum: page.currentPage
|
|
|
|
|
};
|
|
|
|
|
if (queryParams.inDate && Array.isArray(queryParams.inDate)) {
|
|
|
|
|
queryParams.startTime = queryParams.inDate[0];
|
|
|
|
|
queryParams.endTime = queryParams.inDate[1];
|
|
|
|
|
delete queryParams.inDate;
|
|
|
|
|
}
|
|
|
|
|
getList(page.currentPage, page.pageSize, queryParams).then(res => {
|
|
|
|
|
console.log('列表', res.data.result)
|
|
|
|
|
this.data = res.data.result.list;
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.page.total = res.data.result.total;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style></style>
|