You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
udiwms-vue-frame/src/views/pharmaceuticals/purApplyDrug/pureApplyDetailDialog.vue

525 lines
19 KiB
Vue

<template>
<div>
<el-form :model="formData" :rules="formRules" ref="dataForm" label-width="120px">
<el-row type="flex" justify="end" v-if="editType == 1">
<el-button-group style="display: flex;margin-bottom: 15px; margin-right: 50px">
<el-button
v-show="!this.sysApprovalFlowConfig"
type="primary"
@click.native="saveOrder('3')"
:loading="passLoading"
>审核通过
</el-button
>
<el-button
v-show="!this.sysApprovalFlowConfig"
type="primary"
@click.native="saveOrder('4')"
:loading="noPassLoading"
>审核拒绝
</el-button
>
<el-button
v-show="this.sysApprovalFlowConfig"
type="primary"
@click.native="showApprovalFlowDetail()"
>审核过程
</el-button>
</el-button-group>
</el-row>
<el-card style="margin-top: -5px;">
<el-row>
<el-col :span="11">
<el-form-item label="申购单号:" prop="billNo">
<el-input v-model="formData.billNo" style="width: 90%;" auto-complete="off" :disabled="true"></el-input>
</el-form-item>
</el-col>
<el-col :span="11">
<el-form-item label="创建时间:" prop="createTime">
<el-date-picker
:disabled="true"
v-model="formData.createTime"
type="datetime"
placeholder="选择日期"
style="width: 90%"
:clearable="false"
value-format="yyyy-MM-dd HH:mm:ss"
>
</el-date-picker>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="11">
<el-form-item label="申购仓库:">
<el-input v-model="formData.targetInvName" style="width: 90%;" auto-complete="off" :disabled="true"></el-input>
</el-form-item>
</el-col>
<el-col :span="11">
<el-form-item label="申购说明:" prop="billNo">
<el-input v-model="formData.remark" auto-complete="off" style="width: 90%;" type="textarea" :disabled="true" autosize></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row style="margin-top: -10px">
<el-col :span="11">
<el-form-item label="紧急程度:" prop="emergency">
<el-select v-model="formData.emergency" :disabled="true" 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="11">
<el-form-item label="到货截止:" prop="arrivalTime">
<el-date-picker
:disabled="true"
v-model="formData.arrivalTime"
type="datetime"
placeholder="选择日期"
style="width: 90%"
:clearable="false"
value-format="yyyy-MM-dd HH:mm:ss"
>
</el-date-picker>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="11">
<el-form-item label="审核说明:" prop="billNo">
<el-input v-model="formData.auditRemark" auto-complete="off" style="width: 90%;" type="textarea" autosize></el-input>
</el-form-item>
</el-col>
<!-- <el-col :span="11">-->
<!-- <el-form-item>-->
<!-- <el-checkbox v-model="formData.audtoPlan">是否生成采购计划</el-checkbox>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
</el-row>
<el-row v-if="formData.audtoPlan">
<el-col :span="11">
<el-form-item label="采购仓库:" prop="targetInv">
<el-select v-model="formData.targetSubInv" placeholder="当前采购科室信息" @change="setTargetInv" style="width: 90%;" clearable>
<el-option
v-for="item in targetSubInvList"
:key="item.name"
:label="item.name"
:value="item.code">
<span style="float: left">{{ item.name }}</span>
<span style="float: right; color: #8492a6; font-size: 13px">{{item.warehouseName }}</span>
</el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
</el-card>
<el-card>
<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="60"></el-table-column>
<el-table-column label="药品编码" prop="nameCode"></el-table-column>
<el-table-column label="药品通用名称" prop="productName" show-overflow-tooltip="true"></el-table-column>
<el-table-column label="包装规格" prop="bzgg" 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>
</el-form>
<el-dialog
title="产品录入"
:visible.sync="selectProductVisible"
:close-on-click-modal="false"
:close-on-press-escape="false"
width="80%"
v-if="selectProductVisible"
:append-to-body='true'
>
<purApplyProducts
:closeDialog="closeDialogC2"
:purType="1"
:data="thisData"
></purApplyProducts>
</el-dialog>
<el-dialog
title="审批详情"
:visible.sync="approvalFlowDetailVisible"
width="80%"
v-if="approvalFlowDetailVisible"
@close='closeDialog'
:close-on-click-modal="false"
:close-on-press-escape="false"
:before-close="handleClose"
>
<approvalFlowDetail
:isChang="true"
:closeDialog="closeDialog"
:idQuery="idQuery"
></approvalFlowDetail>
</el-dialog>
</div>
</template>
<script>
import approvalFlowDetail from "@/components/ApprovalFlow/index";
import {getSysApprovalFlowConfig} from "@/api/basic/sysApprovalFlow";
import draggable from "vuedraggable";
import purApplyProducts from "@/views/pharmaceuticals/purApplyDrug/purApplyProducts";
import {delApplyDetail, listApplyDetail, auditOrder} from "@/api/purchase/purApply";
import {filterAllByUser} from "@/api/system/invWarehouse";
import {filterSubByInv} from "@/api/system/invSubWarehouse";
import {getBusChange} from "@/api/basic/busTypeChange";
import {argAllPass} from "@/api/purchase/purApplyArgument";
export default {
name: "idQuery",
props: {
closeDialog: {
type: Function,
required: true,
},
idQuery: {
type: Object,
required: true,
},
editType: {
type: Object,
required: true,
},
},
data() {
return {
code: "",
query: {
orderIdFk: "",
page: 1,
limit: 10,
},
formData: {
status: null,
id: null,
billNo: null,
billDate: "",
remark: "",
deptCode: null,
invCode: null,
targetInvCode: null,
targetDeptCode: null,
targetBillType: null,
targetInvName:null,
auditRemark: "",
audtoPlan: false,
targetSubInv:null,
createTime: "",
approvalFlowId: "",
productType:null
},
targetSubInvList: [],
formRules: {},
codeArray: [],
total: 0,
loading: false,
passLoading: false,
noPassLoading: false,
index: null,
formLoading: false,
formVisible: false,
deleteLoading: false,
orderNo: null,
sysApprovalFlowConfig: false,
approvalFlowDetailVisible: false,
statusMap: {
1: "草稿",
2: "未审核",
3: "已审核",
4: "拒绝",
},
typeMap: {
1: "预入库",
2: "普通采购",
},
orderEditor: true,
sOptions: [],
sValue: [],
sList: [],
sLoading: false,
busTypes: [],
currentRow: {},
selectedIndex: "",
selectProductVisible: false,
thisData: {},
targetInvList: [],
targettargetInvList: [],
invQueryData: {},
};
},
components: {
draggable,
purApplyProducts,
approvalFlowDetail
},
methods: {
getConfig(){
getSysApprovalFlowConfig().then((response) => {
this.sysApprovalFlowConfig = response.data;
}).catch(() => {
});
},
// closeDialog() {
// this.approvalFlowDetailVisible = false;
// },
handleClose() {
this.approvalFlowDetailVisible = false;
},
showApprovalFlowDetail() {
//先确定需要论证的都通过了
this.formData.id
argAllPass(this.formData.id).then((response) => {
if (response.code === 20000) {
if (response.data == 1){
this.idQuery = this.formData
this.approvalFlowDetailVisible = true;
}else if (response.data == 0){
this.$message.warning("单据下有设备未完成论证!");
}else if (response.data == 2){
this.$message.warning("单据下有设备论证被拒绝!");
}
} else {
this.$message.error(response.message);
}
}).catch(() => {
});
},
//审核界面弹出按钮
saveOrder(status) {
let tip = "";
if (status == "3") {
tip = "是否确定通过该申购请求?";
if (this.formData.audtoPlan) {
if (this.$isBlank(this.formData.targetSubInv)) {
this.$message.warning("请选择当前采购科室!");
return;
}
}
} else {
tip = "是否确定拒绝该申购请求?";
}
this.$confirm(tip, "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
}).then(() => {
if (status == "3"){
this.passLoading = true
}else {
this.noPassLoading = true
}
this.submitFunction(status);
}).catch(() => {
if (status == '3'){
this.passLoading = false
}else {
this.noPassLoading = false
}
});
},
submitFunction(status) {
// this.loading = true;
this.formData.status = status;
this.formData.productType = 2;
auditOrder(this.formData)//更新方法接口路径
.then(response => {
if (status == '3'){
this.passLoading = false
}else {
this.noPassLoading = false
}
// this.loading = false;
if (response.code === 20000) {
this.$message.success("更新成功!");
this.closeDialog(true);
} else {
this.$message.error(response.message);
}
})
.catch(() => {
if (status == '3'){
this.passLoading = false
}else {
this.noPassLoading = false
}
})
},
selectProductFunction() {
this.selectProductVisible = true;
},
closeDialogC2(rData) {
this.selectProductVisible = false;
this.thisData = {};
if (this.$isNotBlank(rData)) {
this.codeArray = [];
rData.forEach((obj, index) => {
this.codeArray.unshift(obj);
});
this.$refs.multipleTable.setCurrentRow(this.codeArray[0]);
this.currentRow = this.codeArray[0];
this.selectedIndex = 0;
}
},
rowChange(val) {
this.currentRow = val;
this.selectedIndex = val.index;
},
tableCountChange(row) {
if (this.$isNotBlank(row)) {
// row.count = row.reCount;
}
},
tableRowClassName({row, rowIndex}) {
row.index = rowIndex;
},
// 刷新表单
resetForm() {
if (this.$refs["dataForm"]) {
// 清空验证信息表单
this.$refs["dataForm"].clearValidate();
// 刷新表单
this.$refs["dataForm"].resetFields();
this.getList();
}
},
findTargetSubInvs() {
this.targetSubInvList = [];
let query = {
filter:3
};
filterSubByInv(query)
.then((response) => {
this.targetSubInvList = response.data || [];
if (this.targetSubInvList != null && this.targetSubInvList.length == 1) {
this.formData.targetSubInv = this.targetSubInvList[0].code;
}
})
.catch(() => {
});
},
deleteCodeArray(index, row) {
this.$confirm("此操作将永久删除该数据, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
}).then(() => {
this.$refs.multipleTable.setCurrentRow();
this.currentRow = {};
this.selectedIndex = "";
if (this.orderEditor) {
this.detailLoading = true;
if (this.$isNotBlank(row.id)) {
delApplyDetail(row.id)
.then(response => {
this.detailLoading = false;
if (response.code === 20000) {
this.$message.success(response.data);
// this.getStockOrderDetailList();
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 {
this.$message.success('删除成功');
this.codeArray.splice(index, 1);
}
}).catch(() => {
});
},
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;
});
},
},
filters: {},
mounted() {
document.body.ondrop = function (event) {
event.preventDefault();
event.stopPropagation();
};
},
created() {
if (this.$isNotBlank(this.idQuery.id)) {
this.query.limit = 100;
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,
invCode: null,
};
this.orderEditor = false;
}
this.findTargetSubInvs();
this.codeArray = [];
this.getConfig();
},
};
</script>
<style scoped>
</style>