|
|
|
@ -3,14 +3,15 @@
|
|
|
|
|
<el-card class="el-card">
|
|
|
|
|
<el-form :model="filterQuery" class="query-form" label-width="100px" v-show="showSearch">
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="10">
|
|
|
|
|
<el-form-item label="采购订单单号">
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="采购单号">
|
|
|
|
|
<el-input v-model="filterQuery.billNo" style="width: 90%" placeholder="请输入单据号" clearable></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="10">
|
|
|
|
|
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="采购部门">
|
|
|
|
|
<el-select v-model="filterQuery.deptCode" placeholder="请选择采购仓库" style="width: 90%">
|
|
|
|
|
<el-select v-model="filterQuery.deptCode" @change="getInvList" placeholder="请选择采购部门" style="width: 90%">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in deptList"
|
|
|
|
|
:key="item.code"
|
|
|
|
@ -23,12 +24,9 @@
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="10">
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="采购仓库">
|
|
|
|
|
<el-select v-model="filterQuery.invCode" style="width: 90%" placeholder="请选择所属仓库">
|
|
|
|
|
<el-select v-model="filterQuery.targetInvCode" clearable style="width: 90%" placeholder="请选择所属仓库">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in invList"
|
|
|
|
|
:key="item.name"
|
|
|
|
@ -39,7 +37,19 @@
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="10">
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="紧急程度:" prop="emergency">
|
|
|
|
|
<el-select v-model="filterQuery.emergency" placeholder="请选择紧急程度" style="width: 90%" clearable>
|
|
|
|
|
<el-option label="正常" :value=1></el-option>
|
|
|
|
|
<el-option label="较急" :value=2></el-option>
|
|
|
|
|
<el-option label="特急" :value=3></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="创建时间:">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
:picker-options="pickerOptions"
|
|
|
|
@ -70,8 +80,7 @@
|
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%" border highlight-current-row
|
|
|
|
|
@current-change="handleDetail">
|
|
|
|
|
<el-table-column label="序号" type="index" width="60"></el-table-column>
|
|
|
|
|
<el-table-column label="采购订单单号" prop="billNo"></el-table-column>
|
|
|
|
|
<el-table-column label="创建时间" prop="createTime"></el-table-column>
|
|
|
|
|
<el-table-column label="采购单号" prop="billNo"></el-table-column>
|
|
|
|
|
<el-table-column label="采购部门" prop="deptName"></el-table-column>
|
|
|
|
|
<el-table-column label="采购仓库" prop="invName"></el-table-column>
|
|
|
|
|
<el-table-column label="紧急程度" prop="emergency">
|
|
|
|
@ -79,17 +88,15 @@
|
|
|
|
|
{{ emergencyMap[scope.row.emergency] }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="到货时间" prop="arrivalTime"></el-table-column>
|
|
|
|
|
<el-table-column label="采购说明" prop="remark"></el-table-column>
|
|
|
|
|
<el-table-column label="状态" prop="status">
|
|
|
|
|
<el-table-column label="到货截止" prop="arrivalTime"></el-table-column>
|
|
|
|
|
<el-table-column label="单据状态" prop="status">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-tag :type="(scope.row.status) | statusFilterType">
|
|
|
|
|
{{ statusMap[scope.row.status] }}
|
|
|
|
|
</el-tag>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-table-column label="创建时间" prop="createTime"></el-table-column>
|
|
|
|
|
<el-table-column label="操作" width="60px">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button type="text" :disabled="scope.row.status!=2"
|
|
|
|
@ -112,15 +119,15 @@
|
|
|
|
|
</el-card>
|
|
|
|
|
<el-card class="el-card">
|
|
|
|
|
<el-table v-loading="loading" :data="detailList" style="width: 100%" border highlight-current-row>
|
|
|
|
|
<el-table-column label="序号" type="index" width="120"></el-table-column>
|
|
|
|
|
<el-table-column label="序号" type="index" width="60"></el-table-column>
|
|
|
|
|
<el-table-column label="DI/物资编码" prop="nameCode"></el-table-column>
|
|
|
|
|
<el-table-column label="物资名称" prop="productName" show-overflow-tooltip="true"></el-table-column>
|
|
|
|
|
<el-table-column label="规格型号" prop="spec" show-overflow-tooltip="true"></el-table-column>
|
|
|
|
|
<el-table-column label="采购数量" prop="count"></el-table-column>
|
|
|
|
|
<el-table-column label="计量单位" prop="measname"></el-table-column>
|
|
|
|
|
<el-table-column label="供应商" prop="supName" show-overflow-tooltip="true"></el-table-column>
|
|
|
|
|
<el-table-column label="生产企业" prop="manufactory" show-overflow-tooltip="true"></el-table-column>
|
|
|
|
|
<el-table-column label="注册/备案号" prop="zczbhhzbapzbh" show-overflow-tooltip="true"></el-table-column>
|
|
|
|
|
<el-table-column label="注册/备案人" prop="ylqxzcrbarmc" show-overflow-tooltip="true"></el-table-column>
|
|
|
|
|
<el-table-column label="计量单位" prop="measname" show-overflow-tooltip="true" width="100"></el-table-column>
|
|
|
|
|
<el-table-column label="申购数量" prop="count"></el-table-column>
|
|
|
|
|
<el-table-column label="注册/备案号" prop="zczbhhzbapzbh"></el-table-column>
|
|
|
|
|
<el-table-column label="生产厂家" prop="manufactory"></el-table-column>
|
|
|
|
|
<el-table-column label="供应商" prop="supName"></el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
@ -146,6 +153,7 @@ import purPlanEdit from "./purOrderDetailDialog";
|
|
|
|
|
import {delOrder, auditListOrder, listOrderDetail} from "@/api/purchase/purOrder";
|
|
|
|
|
import {getInvListByUser} from '@/api/system/invWarehouse'
|
|
|
|
|
import {getDeptListByUser} from '@/api/auth/authDept'
|
|
|
|
|
import {filterSubAll} from "@/api/system/invSubWarehouse";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
@ -161,8 +169,11 @@ export default {
|
|
|
|
|
corpName: null,
|
|
|
|
|
type: 1,
|
|
|
|
|
editStatus: 1,
|
|
|
|
|
emergency:'',
|
|
|
|
|
deptCode:'',
|
|
|
|
|
},
|
|
|
|
|
formName: null,
|
|
|
|
|
invCodebe:null,
|
|
|
|
|
formMap: {
|
|
|
|
|
add: "新增采购计划",
|
|
|
|
|
update: "采购计划审核",
|
|
|
|
@ -174,9 +185,9 @@ export default {
|
|
|
|
|
4: "已拒绝"
|
|
|
|
|
},
|
|
|
|
|
emergencyMap:{
|
|
|
|
|
1: "普通",
|
|
|
|
|
2: "紧急",
|
|
|
|
|
3: "不紧急",
|
|
|
|
|
1: "正常",
|
|
|
|
|
2: "较急",
|
|
|
|
|
3: "特急",
|
|
|
|
|
},
|
|
|
|
|
invList: {},
|
|
|
|
|
deptList: {},
|
|
|
|
@ -243,6 +254,7 @@ export default {
|
|
|
|
|
corpName: null,
|
|
|
|
|
type: 1,
|
|
|
|
|
editStatus: 1,
|
|
|
|
|
deptCode: this.invCodebe,
|
|
|
|
|
};
|
|
|
|
|
this.actDateRange = [];
|
|
|
|
|
this.getList();
|
|
|
|
@ -269,6 +281,7 @@ export default {
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.list = response.data.list || [];
|
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
|
this.detailList=[]
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
@ -329,14 +342,22 @@ export default {
|
|
|
|
|
this.detailList = [];
|
|
|
|
|
},
|
|
|
|
|
getInvList() {
|
|
|
|
|
getInvListByUser().then((res) => {
|
|
|
|
|
var query={
|
|
|
|
|
parentId:this.filterQuery.deptCode
|
|
|
|
|
}
|
|
|
|
|
filterSubAll(query).then((res) => {
|
|
|
|
|
this.invList = res.data || [];
|
|
|
|
|
this.getBusType();
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
getDeptList() {
|
|
|
|
|
getDeptListByUser().then((res) => {
|
|
|
|
|
this.deptList = res.data || [];
|
|
|
|
|
if(this.deptList.length>0){
|
|
|
|
|
this.filterQuery.deptCode=this.deptList[0].code
|
|
|
|
|
this.invCodebe=this.filterQuery.deptCode
|
|
|
|
|
}
|
|
|
|
|
this.getList();
|
|
|
|
|
this. getInvList();
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
@ -372,8 +393,6 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
created() {
|
|
|
|
|
this.getList();
|
|
|
|
|
this.getInvList();
|
|
|
|
|
this.getDeptList();
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|