采购计划新增代码提交

prod
郑明梁 2 years ago
parent 13754cbb97
commit 6b952d77d6

@ -81,6 +81,7 @@
</el-table-column> </el-table-column>
<el-table-column label="到货时间" prop="arrivalTime" ></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="remark"></el-table-column>
<el-table-column label="审核时间" prop="auditTime" ></el-table-column>
<el-table-column label="状态" prop="status"> <el-table-column label="状态" prop="status">
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag :type="(scope.row.status) | statusFilterType"> <el-tag :type="(scope.row.status) | statusFilterType">

@ -96,6 +96,7 @@
</el-table-column> </el-table-column>
<el-table-column label="到货时间" prop="arrivalTime"></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="remark"></el-table-column>
<el-table-column label="审核时间" prop="auditTime" ></el-table-column>
<el-table-column label="状态" prop="status"> <el-table-column label="状态" prop="status">
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag :type="(scope.row.status) | statusFilterType"> <el-tag :type="(scope.row.status) | statusFilterType">

@ -1,416 +1,473 @@
<template> <template>
<div> <div>
<el-card class="el-card"> <el-card class="el-card">
<el-form :model="filterQuery" class="query-form" label-width="100px" v-show="showSearch"> <el-form :model="filterQuery" class="query-form" label-width="100px" v-show="showSearch">
<el-row> <el-row>
<el-col :span="6"> <el-col :span="10">
<el-form-item label="单据号:"> <el-form-item label="采购计划单号">
<el-input v-model="filterQuery.billNo" style="width: 90%" placeholder="单据号" clearable></el-input> <el-input v-model="filterQuery.billNo" style="width: 90%" placeholder="请输入单据号" clearable></el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="10">
<el-form-item label="单据日期:"> <el-form-item label="采购部门">
<el-date-picker <el-select v-model="filterQuery.deptCode" placeholder="请选择采购仓库" style="width: 90%">
:picker-options="pickerOptions" <el-option
v-model="actDateRange" v-for="item in deptList"
type="daterange" :key="item.code"
style="width: 90%" :label="item.name"
format="yyyy 年 MM 月 dd 日" :value="item.code"
value-format="yyyy-MM-dd" >
range-separator="至" <span style="float: left">{{ item.name }}</span>
start-placeholder="开始日期" </el-option>
end-placeholder="结束日期" </el-select>
> </el-form-item>
</el-date-picker> </el-col>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div class="top-right-btn"> </el-row>
<el-button-group style="display:flex;">
<el-button icon="el-icon-view" type="primary" @click="hideSearch">/</el-button>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="el-icon-search" @click="onSubmitFind"></el-button>
<el-button type="primary" icon="el-icon-plus" @click="newDistributionForm()" :loading="loading">新增采购计划</el-button>
</el-button-group>
</div>
<el-divider style="margin: 15px"></el-divider>
<el-table v-loading="loading" :data="list" style="width: 100%" border highlight-current-row @current-change="handleDetail"> <el-row>
<el-table-column label="序号" type="index" width="60"></el-table-column> <el-col :span="10">
<el-table-column label="单据号" prop="billNo"></el-table-column> <el-form-item label="采购仓库">
<el-table-column label="采购日期" prop="billDate"> <el-select v-model="filterQuery.invCode" style="width: 90%" placeholder="请选择所属仓库">
<template slot-scope="scope"> <el-option
<span>{{ parseTime(scope.row.billDate, '{y}-{m}-{d}') }}</span> v-for="item in invList"
</template> :key="item.name"
</el-table-column> :label="item.name"
<el-table-column label="采购员" prop="createUser"></el-table-column> :value="item.code">
<el-table-column label="采购部门" prop="deptName"></el-table-column> <span style="float: left">{{ item.name }}</span>
<el-table-column label="采购仓库" prop="invName"></el-table-column> </el-option>
<el-table-column label="采购说明" prop="remark"></el-table-column> </el-select>
<el-table-column label="状态" prop="status"> </el-form-item>
<template slot-scope="scope"> </el-col>
<el-tag :type="(scope.row.status) | statusFilterType"> <el-col :span="10">
{{ statusMap[scope.row.status] }} <el-form-item label="创建时间:">
</el-tag> <el-date-picker
</template> :picker-options="pickerOptions"
</el-table-column> v-model="actDateRange"
type="daterange"
format="yyyy 年 MM 月 dd 日"
style="width: 90%"
value-format="yyyy-MM-dd"
range-separator="至"
start-placeholder="开始日期"
end-placeholder="结束日期"
>
</el-date-picker>
</el-form-item>
</el-col>
</el-row>
</el-form>
<el-table-column label="操作" width="120"> <div class="top-right-btn">
<template slot-scope="scope"> <el-button-group style="display:flex;">
<el-button type="text" size="small" @click.native="newDistributionForm(scope.$index, scope.row)">编辑</el-button> <el-button icon="el-icon-view" type="primary" @click="hideSearch">/</el-button>
<el-button type="text" size="small" @click.native.stop="deleteDialog(scope.row)">删除</el-button> <el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
</template> <el-button type="primary" icon="el-icon-search" @click="onSubmitFind"></el-button>
</el-table-column> <el-button type="primary" icon="el-icon-plus" @click="newDistributionForm()" :loading="loading">新增采购计划
</el-table> </el-button>
</el-button-group>
</div>
<el-divider style="margin: 15px"></el-divider>
<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="deptName"></el-table-column>
<el-table-column label="采购仓库" prop="invName"></el-table-column>
<el-table-column label="紧急程度" prop="emergency">
<template slot-scope="scope">
{{ 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">
<template slot-scope="scope">
<el-tag :type="(scope.row.status) | statusFilterType">
{{ statusMap[scope.row.status] }}
</el-tag>
</template>
</el-table-column>
<pagination
v-show="total>0"
:total="total"
:page.sync="filterQuery.page"
:limit.sync="filterQuery.limit"
@pagination="handleCurrentChange"
></pagination> <el-table-column label="操作" width="120">
</el-card> <template slot-scope="scope">
<el-card class="el-card"> <el-button type="text" size="small" @click.native="newDistributionForm(scope.$index, scope.row)">编辑
<el-table v-loading="loading" :data="detailList" style="width: 100%" border highlight-current-row> </el-button>
<el-table-column label="序号" type="index" width="120"></el-table-column> <el-button type="text" size="small" @click.native.stop="deleteDialog(scope.row)">删除</el-button>
<!-- <el-table-column label="产品编码" prop="productId"></el-table-column> --> </template>
<el-table-column label="产品通用名" prop="productName" show-overflow-tooltip="true"></el-table-column> </el-table-column>
<el-table-column label="规格型号" prop="spec" show-overflow-tooltip="true"></el-table-column> </el-table>
<el-table-column label="申购数量" prop="count"></el-table-column>
<el-table-column label="注册/备案凭证号" prop="zczbhhzbapzbh" 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="ylqxzcrbarmc" show-overflow-tooltip="true"></el-table-column>
<el-table-column label="供应商" prop="supName" show-overflow-tooltip="true"></el-table-column>
</el-table>
</el-card>
<el-dialog
:title="formMap[formName]" <pagination
:visible.sync="newSpDistributionVisible" v-show="total>0"
width="80%" :total="total"
v-if="newSpDistributionVisible" :page.sync="filterQuery.page"
@close='closeDialog' :limit.sync="filterQuery.limit"
:close-on-click-modal="false" @pagination="handleCurrentChange"
:close-on-press-escape="false"
:before-close ="handleClose" ></pagination>
> </el-card>
<purPlanEdit <el-card class="el-card">
:isChang="isChang" <el-table v-loading="loading" :data="detailList" style="width: 100%" border highlight-current-row>
:closeDialog="closeDialog" <el-table-column label="序号" type="index" width="120"></el-table-column>
v-on:cancelDialog="getId" <el-table-column label="物资名称" prop="productName" show-overflow-tooltip="true"></el-table-column>
:idQuery="idQuery" <el-table-column label="规格型号" prop="spec" show-overflow-tooltip="true"></el-table-column>
></purPlanEdit> <el-table-column label="采购数量" prop="count"></el-table-column>
</el-dialog> <el-table-column label="计量单位" prop="measname"></el-table-column>
</div> <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>
</el-card>
<el-dialog
:title="formMap[formName]"
:visible.sync="newSpDistributionVisible"
width="80%"
v-if="newSpDistributionVisible"
@close='closeDialog'
:close-on-click-modal="false"
:close-on-press-escape="false"
:before-close="handleClose"
>
<purPlanEdit
:isChang="isChang"
:closeDialog="closeDialog"
v-on:cancelDialog="getId"
:idQuery="idQuery"
></purPlanEdit>
</el-dialog>
</div>
</template> </template>
<script> <script>
import purPlanEdit from "./purPlanEditDialog"; import purPlanEdit from "./purPlanEditDialog";
import {delApply, inserThrOrderWeb, listPlan, listApplyDetail, delPlanDetailAll} from "@/api/purchase/purPlan"; import {delApply, inserThrOrderWeb, listPlan, listApplyDetail, delPlanDetailAll} from "@/api/purchase/purPlan";
import {delApplyDetailAll} from "@/api/purchase/purApply"; import {delApplyDetailAll} from "@/api/purchase/purApply";
import { getInvListByUser } from '@/api/system/invWarehouse'
import { getDeptListByUser } from '@/api/auth/authDept'
export default { export default {
data() { data() {
return { return {
showSearch: true, showSearch: true,
pId:null, pId: null,
isChang:false, isChang: false,
filterQuery: { filterQuery: {
billAction: null, billAction: null,
billNo: "", billNo: "",
originType: null, originType: null,
thirdSysFk: "", thirdSysFk: "",
page: 1, page: 1,
limit: 10, limit: 10,
corpName: null, corpName: null,
type: 1, type: 1,
editStatus: 1, editStatus: 1,
}, },
formName: null, formName: null,
formMap: { formMap: {
add: "新增采购计划", add: "新增采购计划",
update: "编辑采购计划", update: "编辑采购计划",
},
statusMap: {
1: "草稿",
2: "未审核",
3: "已审核",
4: "已拒绝"
},
idQuery: {},
total: 0,
thirdSys: [],
thirdSysDetail: null,
busTypes: [],
originTypes: [],
list: [],
detailList: [],
loading: false,
actDateRange: [],
emergencyMap: {
1: "普通",
2: "紧急",
3: "不紧急",
},
invList:{},
deptList:{},
newSpDistributionVisible: false,
pickerOptions: {
shortcuts: [
{
text: "最近一周",
onClick(picker) {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
picker.$emit("pick", [start, end]);
}, },
statusMap: { },
1: "草稿", {
2: "未审核", text: "最近一个月",
3: "已审核", onClick(picker) {
4: "已拒绝" const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
picker.$emit("pick", [start, end]);
}, },
idQuery: {}, },
total: 0, {
thirdSys: [], text: "最近三个月",
thirdSysDetail: null, onClick(picker) {
busTypes: [], const end = new Date();
originTypes: [], const start = new Date();
list: [], start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
detailList: [], picker.$emit("pick", [start, end]);
loading: false,
actDateRange: [],
newSpDistributionVisible: false,
pickerOptions: {
shortcuts: [
{
text: "最近一周",
onClick(picker) {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
picker.$emit("pick", [start, end]);
},
},
{
text: "最近一个月",
onClick(picker) {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
picker.$emit("pick", [start, end]);
},
},
{
text: "最近三个月",
onClick(picker) {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
picker.$emit("pick", [start, end]);
},
},
],
}, },
}; },
}, ],
},
};
},
methods: { methods: {
onReset() { onReset() {
this.$router.push({ this.$router.push({
path: "", path: "",
}); });
this.filterQuery = { this.filterQuery = {
billNo: "", billNo: "",
thirdSysFk: "", thirdSysFk: "",
billFlag: null, billFlag: null,
billAction: null, billAction: null,
startDate: null, startDate: null,
endDate: null, endDate: null,
page: 1, page: 1,
limit: 10, limit: 10,
corpName: null, corpName: null,
type: 1, type: 1,
editStatus: 1, editStatus: 1,
}; };
this.actDateRange = []; this.actDateRange = [];
this.getList(); this.getList();
}, },
handleClose(){ handleClose() {
if( this.formName=='add'){ debugger
this.isChang=!this.isChang if (this.formName == 'add') {
}else{ this.isChang = !this.isChang
this.newSpDistributionVisible=false } else {
this.newSpDistributionVisible = false
}
},
getId(id) {
debugger
if (this.formName == 'add' && id != null) {
var data = {
id: id
} }
}, this.pId = id;
getId(id){ //
if( this.formName=='add' && id!=null){ delPlanDetailAll(data).then((response) => {
var data={ if (response.code == 20000) {
id:id this.newSpDistributionVisible = false
} }
this.pId=id; });
// }else{
delPlanDetailAll(data).then((response)=>{ this.newSpDistributionVisible = false
if(response.code==20000){ }
this.newSpDistributionVisible=false
}
});
}
}, },
onSubmitFind() { onSubmitFind() {
this.filterQuery.page = 1; this.filterQuery.page = 1;
this.getList(); this.getList();
}, },
hideSearch() { hideSearch() {
this.showSearch = !this.showSearch; this.showSearch = !this.showSearch;
}, },
getList() { getList() {
if (this.actDateRange != null) { if (this.actDateRange != null) {
this.filterQuery.startDate = this.actDateRange[0]; this.filterQuery.startDate = this.actDateRange[0];
this.filterQuery.endDate = this.actDateRange[1]; this.filterQuery.endDate = this.actDateRange[1];
} else { } else {
this.filterQuery.startDate = null; this.filterQuery.startDate = null;
this.filterQuery.endDate = null; this.filterQuery.endDate = null;
} }
this.loading = true; this.loading = true;
listPlan(this.filterQuery) listPlan(this.filterQuery)
.then((response) => { .then((response) => {
if (response.code == 20000) { if (response.code == 20000) {
this.list = response.data.list || []; this.list = response.data.list || [];
this.total = response.data.total || 0; this.total = response.data.total || 0;
} else { } else {
this.$message.error(response.message); this.$message.error(response.message);
} }
this.loading = false; this.loading = false;
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;
this.list = []; this.list = [];
this.total = 0; this.total = 0;
}); });
}, },
handleDetail(row) { handleDetail(row) {
let query = {orderIdFk: row.id}; let query = {orderIdFk: row.id};
this.loading = true; this.loading = true;
listApplyDetail(query) // listApplyDetail(query) //
.then((response) => { .then((response) => {
this.detailList = response.data.list || []; this.detailList = response.data.list || [];
this.loading = false; this.loading = false;
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;
this.detailList = []; this.detailList = [];
this.total = 0; this.total = 0;
}); });
}, },
submitOrder(row) { submitOrder(row) {
this.$confirm("是否确定提交审核?", "提示", { this.$confirm("是否确定提交审核?", "提示", {
confirmButtonText: "确定", confirmButtonText: "确定",
cancelButtonText: "取消", cancelButtonText: "取消",
type: "warning", type: "warning",
})
.then(() => {
this.loading = true;
let tQuery = {
editStatus: 2,
purPlanEntity: row,
}
inserThrOrderWeb(tQuery)
.then(response => {
this.loading = false;
if (response.code === 20000) {
this.$message.success("提交成功!");
this.getList();
} else {
this.$message.error(response.message);
}
}) })
.then(() => { .catch(() => {
this.loading = true; this.loading = false;
let tQuery = {
editStatus: 2,
purPlanEntity: row,
}
inserThrOrderWeb(tQuery)
.then(response => {
this.loading = false;
if (response.code === 20000) {
this.$message.success("提交成功!");
this.getList();
} else {
this.$message.error(response.message);
}
})
.catch(() => {
this.loading = false;
})
})
.catch(() => {
});
},
deleteDialog(row) {
this.$confirm("此操作将永久删除该单据, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
}) })
.then(() => { })
delPlanDetailAll({id:row.id}) .catch(() => {
.then((response) => { });
this.loading = false; },
if (response.code == 20000) { deleteDialog(row) {
this.$message.success("删除成功"); this.$confirm("此操作将永久删除该单据, 是否继续?", "提示", {
this.getList(); confirmButtonText: "确定",
} else { cancelButtonText: "取消",
this.$message.error(response.message); type: "warning",
} })
}) .then(() => {
.catch(() => { delPlanDetailAll({id: row.id})
this.loading = false; .then((response) => {
}); this.loading = false;
if (response.code == 20000) {
}) this.$message.success("删除成功");
.catch(() => { this.getList();
}); } else {
}, this.$message.error(response.message);
handleCurrentChange(val) { }
this.filterQuery.page = val.page; })
this.getList(); .catch(() => {
}, this.loading = false;
});
closeDialog() { })
this.newSpDistributionVisible = false; .catch(() => {
this.getList(); });
this.detailList = []; },
}, handleCurrentChange(val) {
this.filterQuery.page = val.page;
this.getList();
},
closeDialog() {
this.newSpDistributionVisible = false;
this.getList();
this.detailList = [];
},
getInvList() {
getInvListByUser().then((res) => {
this.invList = res.data || [];
this.getBusType();
})
},
getDeptList() {
getDeptListByUser().then((res) => {
this.deptList = res.data || [];
});
},
newDistributionForm(index, row) { newDistributionForm(index, row) {
this.idQuery.id = ''; this.idQuery.id = '';
if (this.$isNotBlank(row) && this.$isNotBlank(row.id)) { if (this.$isNotBlank(row) && this.$isNotBlank(row.id)) {
this.idQuery.id = row.id; this.idQuery.id = row.id;
this.idQuery.formData = row; this.idQuery.formData = row;
this.formName = "update"; this.formName = "update";
} else } else
this.formName = "add"; this.formName = "add";
this.newSpDistributionVisible = true; this.newSpDistributionVisible = true;
}, },
}
,
components: {
purPlanEdit,
}
,
filters: {
statusFilterType(status) {
const statusMap = {
1: "warning",
2: "success",
};
return statusMap[status];
} }
, ,
components: { }
purPlanEdit, ,
} mounted() {
, }
filters: { ,
statusFilterType(status) { created() {
const statusMap = { this.getList();
1: "warning", this.getInvList();
2: "success", this.getDeptList();
}; }
return statusMap[status]; ,
}
,
}
,
mounted() {
}
,
created() {
let end = new Date();
let start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
this.actDateRange = [start, end];
this.getList();
}
,
} }
; ;
</script> </script>
<style scoped> <style scoped>
.itemTag { .itemTag {
float: left; float: left;
text-align: left; text-align: left;
margin-top: 10px; margin-top: 10px;
width: 25%; width: 25%;
} }
.text { .text {
font-size: 13px; font-size: 13px;
font-family: "Microsoft YaHei"; font-family: "Microsoft YaHei";
} }
.query-form-item { .query-form-item {
display: block !important; display: block !important;
margin-right: 10px; margin-right: 10px;
margin-bottom: 5px; margin-bottom: 5px;
} }
.el-row { .el-row {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
} }
.el-col { .el-col {
border-radius: 4px; border-radius: 4px;
flex-wrap: wrap; flex-wrap: wrap;
} }
</style> </style>

@ -1,140 +1,171 @@
<template> <template>
<div> <div>
<el-form :model="formData" :rules="formRules" ref="dataForm" label-width="120px"> <el-form :model="formData" :rules="formRules" ref="dataForm" label-width="120px">
<el-row type="flex" justify="end"> <el-row type="flex" justify="end">
<el-button-group style="display: flex;margin-bottom: 15px; margin-right: 50px"> <el-button-group style="display: flex;margin-bottom: 15px; margin-right: 50px">
<el-button type="primary" @click.native="saveOrder('1')" :loading="loading">草稿保存</el-button> <el-button type="primary" @click.native="saveOrder('1')" :loading="loading">草稿保存</el-button>
<el-button type="primary" @click.native="saveOrder('2')" :loading="loading">提交单据</el-button> <el-button type="primary" @click.native="saveOrder('2')" :loading="loading">提交单据</el-button>
</el-button-group> </el-button-group>
</el-row> </el-row>
<el-card style="margin-top: -5px;"> <el-card style="margin-top: -5px;">
<el-row> <el-row>
<el-col :span="11"> <el-col :span="11">
<el-form-item label="单据号:" prop="billNo"> <el-form-item label="单据号:" prop="billNo">
<el-input v-model="formData.billNo" auto-complete="off" :disabled="true"></el-input> <el-input v-model="formData.billNo" auto-complete="off" :disabled="true"></el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="11"> <el-col :span="11">
<el-form-item label="单据时间:" prop="billdate"> <el-form-item label="单据时间:" prop="billdate">
<el-date-picker <el-date-picker
v-model="formData.billDate" v-model="formData.billDate"
type="datetime" type="datetime"
placeholder="选择日期" placeholder="选择日期"
style="width: 100%" style="width: 100%"
:clearable="false" :clearable="false"
value-format="yyyy-MM-dd HH:mm:ss" value-format="yyyy-MM-dd HH:mm:ss"
> >
</el-date-picker> </el-date-picker>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
<el-row > <el-row>
<el-col :span="11"> <el-col :span="11">
<el-form-item label="采购仓库:" prop="invCode"> <el-form-item label="采购仓库:" prop="invCode">
<el-select v-model="formData.invCode" @change="setDeptCode" placeholder="采购仓库信息" style="width: 100%" <el-select v-model="formData.invCode" @change="setDeptCode" placeholder="采购仓库信息" style="width: 100%"
clearable> clearable>
<el-option <el-option
v-for="item in invCodeList" v-for="item in invCodeList"
:key="item.name" :key="item.name"
:label="item.name" :label="item.name"
:value="item.code"> :value="item.code">
<span style="float: left">{{ item.name }}</span> <span style="float: left">{{ item.name }}</span>
<span style="float: right; color: #8492a6; font-size: 13px">{{ item.warehouseName }}</span> <span style="float: right; color: #8492a6; font-size: 13px">{{ item.warehouseName }}</span>
</el-option> </el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="11"> <el-col :span="11">
<el-form-item label="采购说明:" prop="billNo"> <el-form-item label="采购说明:" prop="billNo">
<el-input v-model="formData.remark" auto-complete="off" type="textarea" autosize></el-input> <el-input v-model="formData.remark" auto-complete="off" type="textarea" autosize></el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
<el-row> <el-row style="margin-top: -10px">
<el-col :span="11" v-show="formData.status==4"> <el-col :span="11">
<el-form-item label="拒绝原因:"> <el-form-item label="紧急程度:" prop="emergency">
<el-input v-model="formData.auditRemark" auto-complete="off" :disabled="true"></el-input> <el-select v-model="formData.emergency" placeholder="请选择紧急程度" style="width: 100%" clearable>
</el-form-item> <el-option label="普通" :value=1></el-option>
</el-col> <el-option label="紧急" :value=2></el-option>
<el-option label="不紧急" :value=3></el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="11">
<el-form-item label="到货时间:" prop="arrivalTime">
<el-date-picker
v-model="formData.arrivalTime"
type="datetime"
placeholder="选择日期"
style="width: 100%"
:clearable="false"
value-format="yyyy-MM-dd HH:mm:ss"
>
</el-date-picker>
</el-form-item>
</el-col>
</el-row>
</el-row> <el-row>
</el-card> <el-col :span="11" v-show="formData.status==4">
<el-form-item label="拒绝原因:">
<el-input v-model="formData.auditRemark" auto-complete="off" :disabled="true"></el-input>
</el-form-item>
</el-col>
<el-card> </el-row>
<el-row type="flex" justify="end"> </el-card>
<el-button-group style="display: flex">
<el-button-group style="display: flex;margin-bottom: 15px; margin-right: 50px">
<el-button type="primary" @click.native.stop="selectProductFunction()" :loading="loading">产品录入</el-button>
<el-button type="primary" :loading="loading" @click.native.stop="selectApply()">选入申购单</el-button>
</el-button-group>
<el-card>
<el-row type="flex" justify="end">
<el-button-group style="display: flex">
<el-button-group style="display: flex;margin-bottom: 15px; margin-right: 50px">
<el-button type="primary" @click.native.stop="selectProductFunction()" :loading="loading">产品录入
</el-button>
<el-button type="primary" :loading="loading" @click.native.stop="selectApply()">选入申购单</el-button>
</el-button-group>
</el-button-group>
</el-row>
<el-table v-loading="loading" :data="codeArray" style="width: 100%;" :row-class-name="tableRowClassName" border highlight-current-row max-height="300" height="300" ref="multipleTable">
<el-table-column label="序号" type="index" width="50"></el-table-column>
<el-table-column label="产品通用名" prop="productName" show-overflow-tooltip></el-table-column>
<el-table-column label="规格型号" prop="spec" show-overflow-tooltip></el-table-column>
<el-table-column width="150" label="申购数量">
<template slot-scope="scope">
<el-input size="small" v-model="scope.row.count"
placeholder="请输入数量" style="width: 80%"
type='number'
@change="tableCountChange(scope.row)"
:disabled="scope.row.index !== selectedIndex"
oninput="value=value.replace(/[^\d]/g,'')"></el-input>
</template>
</el-table-column>
<el-table-column label="供应商" prop="supName" show-overflow-tooltip></el-table-column>
<el-table-column label="注册/备案凭证号" prop="zczbhhzbapzbh" show-overflow-tooltip></el-table-column>
<el-table-column label="生产厂家" prop="manufactory" show-overflow-tooltip></el-table-column>
<el-table-column label="医疗器械注册人" prop="ylqxzcrbarmc" show-overflow-tooltip></el-table-column>
<el-table-column label="操作" width="120">
<template slot-scope="scope">
<el-button type="text" size="small" :disabled="scope.row.index === selectedIndex" @click.stop="true" @click.native="rowChange(scope.row)">编辑</el-button>
<el-button type="text" size="small" @click.stop="true" @click.native="deleteCodeArray(scope.$index, scope.row)">删除</el-button>
</template>
</el-table-column>
</el-table>
</el-card>
</el-form>
<el-dialog </el-button-group>
title="产品录入" </el-row>
:visible.sync="selectProductVisible" <el-table v-loading="loading" :data="codeArray" style="width: 100%;" :row-class-name="tableRowClassName" border
:close-on-click-modal="false" highlight-current-row max-height="300" height="300" ref="multipleTable">
:close-on-press-escape="false" <el-table-column label="序号" type="index" width="50"></el-table-column>
width="80%" <el-table-column label="产品通用名" prop="productName" show-overflow-tooltip></el-table-column>
v-if="selectProductVisible" <el-table-column label="规格型号" prop="spec" show-overflow-tooltip></el-table-column>
:append-to-body='true' <el-table-column width="150" label="申购数量">
> <template slot-scope="scope">
<purPlanProducts <el-input size="small" v-model="scope.row.count"
:closeDialog="closeDialogC2" placeholder="请输入数量" style="width: 80%"
:purType="1" type='number'
:pId="pId" @change="tableCountChange(scope.row)"
:data="thisData" :disabled="scope.row.index !== selectedIndex"
></purPlanProducts> oninput="value=value.replace(/[^\d]/g,'')"></el-input>
</el-dialog> </template>
</el-table-column>
<el-table-column label="供应商" prop="supName" show-overflow-tooltip></el-table-column>
<el-table-column label="注册/备案凭证号" prop="zczbhhzbapzbh" show-overflow-tooltip></el-table-column>
<el-table-column label="生产厂家" prop="manufactory" show-overflow-tooltip></el-table-column>
<el-table-column label="医疗器械注册人" prop="ylqxzcrbarmc" show-overflow-tooltip></el-table-column>
<el-table-column label="操作" width="120">
<template slot-scope="scope">
<el-button type="text" size="small" :disabled="scope.row.index === selectedIndex" @click.stop="true"
@click.native="rowChange(scope.row)">编辑
</el-button>
<el-button type="text" size="small" @click.stop="true"
@click.native="deleteCodeArray(scope.$index, scope.row)">删除
</el-button>
</template>
</el-table-column>
</el-table>
</el-card>
</el-form>
<el-dialog <el-dialog
title="申购单据选入" title="产品录入"
:visible.sync="selectApplyVisible" :visible.sync="selectProductVisible"
:close-on-click-modal="false" :close-on-click-modal="false"
:close-on-press-escape="false" :close-on-press-escape="false"
width="80%" width="80%"
append-to-body v-if="selectProductVisible"
v-if="selectApplyVisible" :append-to-body='true'
> >
<select-apply-list-dialog <purPlanProducts
:data="thisData" :closeDialog="closeDialogC2"
:pId="pId" :purType="1"
:closeDialog="closeDialogC2" :pId="pId"
></select-apply-list-dialog> :data="thisData"
</el-dialog> ></purPlanProducts>
</div> </el-dialog>
<el-dialog
title="申购单据选入"
:visible.sync="selectApplyVisible"
:close-on-click-modal="false"
:close-on-press-escape="false"
width="80%"
append-to-body
v-if="selectApplyVisible"
>
<select-apply-list-dialog
:data="thisData"
:pId="pId"
:closeDialog="closeDialogC2"
></select-apply-list-dialog>
</el-dialog>
</div>
</template> </template>
<script> <script>
@ -153,335 +184,340 @@ import SelectApplyListDialog from "@/views/purchase/purApply/selectApplyListDial
export default { export default {
name: "idQuery", name: "idQuery",
props: { props: {
closeDialog: { closeDialog: {
type: Function, type: Function,
required: true, required: true,
},
idQuery: {
type: Object,
required: true,
},
isChang: {
type: Boolean,
required: true,
},
}, },
data() { idQuery: {
return { type: Object,
code: "", required: true,
query: {
orderIdFk: "",
page: 1,
limit: 10,
},
formData: {
id: null,
billNo: null,
billDate: "",
remark: "",
deptCode: null,
locStorageCode: null,
invWarehouseCode: null,
},
pId:null,
formRules: {},
codeArray: [],
total: 0,
loading: false,
index: null,
formLoading: false,
formVisible: false,
deleteLoading: false,
orderNo: null,
statusMap: {
1: "草稿",
2: "未审核",
3: "已审核",
},
typeMap: {
1: "预入库",
2: "普通采购",
},
orderEditor: true,
sOptions: [],
sValue: [],
sList: [],
sLoading: false,
busTypes: [],
currentRow: {},
selectedIndex: "",
selectProductVisible: false,
thisData: {},
storageList: [],
invCodeList: [],
invQueryData: {},
selectApplyVisible: false
};
}, },
watch: { isChang: {
isChang: function () { type: Boolean,
this.$emit("cancelDialog", this.pId); required: true,
},
}, },
components: { },
draggable, data() {
purPlanProducts, return {
SelectApplyListDialog code: "",
query: {
orderIdFk: "",
page: 1,
limit: 10,
},
formData: {
id: null,
billNo: null,
billDate: "",
remark: "",
deptCode: null,
locStorageCode: null,
invWarehouseCode: null,
},
pId: null,
formRules: {},
codeArray: [],
total: 0,
loading: false,
index: null,
formLoading: false,
formVisible: false,
deleteLoading: false,
orderNo: null,
statusMap: {
1: "草稿",
2: "未审核",
3: "已审核",
},
typeMap: {
1: "预入库",
2: "普通采购",
},
orderEditor: true,
sOptions: [],
sValue: [],
sList: [],
sLoading: false,
busTypes: [],
currentRow: {},
selectedIndex: "",
selectProductVisible: false,
thisData: {},
storageList: [],
invCodeList: [],
invQueryData: {},
selectApplyVisible: false
};
},
watch: {
isChang: function () {
this.$emit("cancelDialog", this.pId);
}, },
methods: { },
saveOrder(status) { components: {
draggable,
purPlanProducts,
SelectApplyListDialog
},
methods: {
saveOrder(status) {
this.$refs["dataForm"].validate(valid => { this.$refs["dataForm"].validate(valid => {
if (valid) { if (valid) {
if (this.codeArray.length < 1) { if (this.codeArray.length < 1) {
this.$message.warning('未添加产品'); this.$message.warning('未添加产品');
return; return;
} }
if (status === '2') { if (status === '2') {
if (this.formData.billDate == "" || this.formData.billDate == null) {
return this.$message.error("单据日期不能为空!");
}
// if (this.formData.billType == "" || this.formData.billType == null) {
// return this.$message.error("");
// }
if (this.formData.invCode == "" || this.formData.invCode == null) {
return this.$message.error("采购仓库不能为空!");
}
for (let i = 0; i < this.codeArray.length; i++) { if (this.formData.billDate == "" || this.formData.billDate == null) {
if (this.$isBlank(this.codeArray[i].count) || this.codeArray[i].count == "0") { return this.$message.error("单据日期不能为空!");
return this.$message.error('单据数量不能为0'); }
} // if (this.formData.billType == "" || this.formData.billType == null) {
} // return this.$message.error("");
} // }
if (status == "1") { if (this.formData.invCode == "" || this.formData.invCode == null) {
this.submitFunction(status); return this.$message.error("采购仓库不能为空!");
} else { }
let tip = "是否确定提交订单?"; if(this.formData.emergency=="" || this.formData.emergency==null){
this.$confirm(tip, "提示", { return this.$message.error("紧急程度不能为空!");
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
}).then(() => {
this.submitFunction(status);
}).catch(() => {
this.loading = false;
});
}
}
});
},
submitFunction(status) {
let tMessage = status === '1' ? '保存' : '提交';
this.loading = true;
this.formData.id=this.pId;
let tQuery = {
editStatus: status,
purPlanEntity: this.formData,
subErpOrders: this.codeArray,
type:1,
} }
inserThrOrderWeb(tQuery) if(this.formData.arrivalTime=="" || this.formData.arrivalTime==null){
.then(response => { return this.$message.error("到货时间不能为空!");
this.loading = false; }
if (response.code === 20000) { for (let i = 0; i < this.codeArray.length; i++) {
this.$message.success(tMessage + "成功"); if (this.$isBlank(this.codeArray[i].count) || this.codeArray[i].count == "0") {
this.closeDialog(true); return this.$message.error('单据数量不能为0');
} else {
this.$message.error(response.message);
}
})
.catch(() => {
this.loading = false;
})
},
selectProductFunction() {
this.selectProductVisible = true;
//idid
if(this.pId==null){
addPlanId().then(response => {
if (response.code === 20000) {
this.pId=response.data
} }
}
}
if (status == "1") {
this.submitFunction(status);
} else {
let tip = "是否确定提交订单?";
this.$confirm(tip, "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
}).then(() => {
this.submitFunction(status);
}).catch(() => { }).catch(() => {
this.loading = false; this.loading = false;
})
}
this.thisData.stockOrderLists = this.codeArray;
},
setDeptCode(obj){
this.formData.deptCode= this.invCodeList.find(item => item.code == obj).parentId;
},
closeDialogC2() {
this.selectProductVisible = false;
this.selectApplyVisible = false;
this.query={
orderIdFk:this.pId
}
selectPlanDetail(this.query) //
.then((response) => {
console.log(response)
this.codeArray = response.data.list || [];
this.total = response.data.total || 0;
this.loading = false;
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
}); });
},
rowChange(val) {
this.currentRow = val;
this.selectedIndex = val.index;
},
tableCountChange(row) {
if (this.$isNotBlank(row)) {
updateDetail(this.currentRow);
} }
}, }
tableRowClassName({row, rowIndex}) { });
row.index = rowIndex; },
}, submitFunction(status) {
let tMessage = status === '1' ? '保存' : '提交';
this.loading = true;
this.formData.id = this.pId;
let tQuery = {
editStatus: status,
purPlanEntity: this.formData,
subErpOrders: this.codeArray,
type: 1,
}
inserThrOrderWeb(tQuery)
.then(response => {
this.loading = false;
if (response.code === 20000) {
this.$message.success(tMessage + "成功");
this.closeDialog(true);
} else {
this.$message.error(response.message);
}
})
.catch(() => {
this.loading = false;
})
},
selectProductFunction() {
this.selectProductVisible = true;
//idid
if (this.pId == null) {
addPlanId().then(response => {
if (response.code === 20000) {
this.pId = response.data
}
}).catch(() => {
this.loading = false;
})
}
this.thisData.stockOrderLists = this.codeArray;
},
setDeptCode(obj) {
this.formData.deptCode = this.invCodeList.find(item => item.code == obj).parentId;
},
closeDialogC2() {
this.selectProductVisible = false;
this.selectApplyVisible = false;
this.query = {
orderIdFk: this.pId
}
selectPlanDetail(this.query) //
.then((response) => {
console.log(response)
this.codeArray = response.data.list || [];
this.total = response.data.total || 0;
this.loading = false;
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
});
},
rowChange(val) {
this.currentRow = val;
this.selectedIndex = val.index;
},
tableCountChange(row) {
if (this.$isNotBlank(row)) {
updateDetail(this.currentRow);
}
},
tableRowClassName({row, rowIndex}) {
row.index = rowIndex;
},
//
resetForm() {
if (this.$refs["dataForm"]) {
//
this.$refs["dataForm"].clearValidate();
// //
resetForm() { this.$refs["dataForm"].resetFields();
if (this.$refs["dataForm"]) { this.getList();
// }
this.$refs["dataForm"].clearValidate(); },
// deleteCodeArray(index, row) {
this.$refs["dataForm"].resetFields(); this.$confirm("此操作将永久删除该数据, 是否继续?", "提示", {
this.getList(); confirmButtonText: "确定",
} cancelButtonText: "取消",
}, type: "warning",
deleteCodeArray(index, row) { }).then(() => {
this.$confirm("此操作将永久删除该数据, 是否继续?", "提示", { this.$refs.multipleTable.setCurrentRow();
confirmButtonText: "确定", this.currentRow = {};
cancelButtonText: "取消", this.selectedIndex = "";
type: "warning",
}).then(() => {
this.$refs.multipleTable.setCurrentRow();
this.currentRow = {};
this.selectedIndex = "";
if (!this.orderEditor) { if (!this.orderEditor) {
this.detailLoading = true; this.detailLoading = true;
if (this.$isNotBlank(row.id)) { if (this.$isNotBlank(row.id)) {
let delIds = []; let delIds = [];
delIds.push(row.id) delIds.push(row.id)
delApplyDetail(delIds) delApplyDetail(delIds)
.then(response => { .then(response => {
this.detailLoading = false; this.detailLoading = false;
if (response.code === 20000) { if (response.code === 20000) {
this.$message.success(response.data); this.$message.success(response.data);
// this.getStockOrderDetailList(); // this.getStockOrderDetailList();
this.codeArray.splice(index, 1); this.codeArray.splice(index, 1);
} else {
this.$message.error(response.message);
}
})
.catch(() => {
this.detailLoading = false;
})
} else {
this.$message.success('删除成功');
this.codeArray.splice(index, 1);
}
} else { } else {
this.$message.success('删除成功'); this.$message.error(response.message);
this.codeArray.splice(index, 1);
} }
}).catch(() => { })
.catch(() => {
}); this.detailLoading = false;
}, })
getStockOrderDetailList() { } else {
this.loading = true; this.$message.success('删除成功');
listApplyDetail(this.query) // this.codeArray.splice(index, 1);
.then((response) => {
console.log(response)
this.codeArray = response.data.list || [];
this.total = response.data.total || 0;
this.loading = false;
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
});
},
findSubInvs() {
this.invCodeList = [];
let query = {
filter:3
};
filterSubByInv(query)
.then((response) => {
this.invCodeList = response.data || [];
if (this.invCodeList != null && this.invCodeList.length == 1) {
this.formData.invCode = this.invCodeList[0].code;
}
})
.catch(() => {
});
},
selectApply() {
this.selectApplyVisible = true;
//idid
if(this.pId==null){
addPlanId().then(response => {
if (response.code === 20000) {
this.pId=response.data
}
}).catch(() => {
this.loading = false;
})
} }
},
},
filters: {},
mounted() {
document.body.ondrop = function (event) {
event.preventDefault();
event.stopPropagation();
};
},
created() {
if (this.$isNotBlank(this.idQuery.id)) {
this.query.limit = 100;
this.pId=this.idQuery.id;
this.query.orderIdFk = this.idQuery.id;
this.formData = this.idQuery.formData;
this.orderEditor = true;
this.sValue = this.formData.corpName;
this.getStockOrderDetailList();
} else { } else {
this.formData = { this.$message.success('删除成功');
id: null, this.codeArray.splice(index, 1);
billNo: null,
billDate: "",
remark: "",
deptCode: null,
incCode: null,
};
this.orderEditor = false;
} }
this.findSubInvs(); }).catch(() => {
this.codeArray = [];
});
},
getStockOrderDetailList() {
this.loading = true;
listApplyDetail(this.query) //
.then((response) => {
console.log(response)
this.codeArray = response.data.list || [];
this.total = response.data.total || 0;
this.loading = false;
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
});
},
findSubInvs() {
this.invCodeList = [];
let query = {
filter: 3
};
filterSubByInv(query)
.then((response) => {
this.invCodeList = response.data || [];
if (this.invCodeList != null && this.invCodeList.length == 1) {
this.formData.invCode = this.invCodeList[0].code;
}
})
.catch(() => {
});
},
selectApply() {
this.selectApplyVisible = true;
//idid
if (this.pId == null) {
addPlanId().then(response => {
if (response.code === 20000) {
this.pId = response.data
}
}).catch(() => {
this.loading = false;
})
}
}, },
},
filters: {},
mounted() {
document.body.ondrop = function (event) {
event.preventDefault();
event.stopPropagation();
};
},
created() {
if (this.$isNotBlank(this.idQuery.id)) {
this.query.limit = 100;
this.pId = this.idQuery.id;
this.query.orderIdFk = this.idQuery.id;
this.formData = this.idQuery.formData;
this.orderEditor = true;
this.sValue = this.formData.corpName;
this.getStockOrderDetailList();
} else {
this.formData = {
id: null,
billNo: null,
billDate: "",
remark: "",
deptCode: null,
incCode: null,
};
this.orderEditor = false;
}
this.findSubInvs();
this.codeArray = [];
},
}; };
</script> </script>
<style> <style>
.ao-text { .ao-text {
width: 100%; width: 100%;
font-size: 13px; font-size: 13px;
font-family: "Microsoft YaHei"; font-family: "Microsoft YaHei";
float: right; float: right;
text-align: right; text-align: right;
margin-top: 10px; margin-top: 10px;
} }
</style> </style>

Loading…
Cancel
Save