+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 显示/隐藏搜索栏
+ 重置
+ 查询
+ 添加
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -350,6 +458,7 @@ import {
import {getInvMAProducts} from "@/api/inventory/invPorduct";
import {isBlank} from "@/utils/strUtil";
import {listDeptUser} from "@/api/system/deptUser";
+import {getDeptDeviceList} from "@/api/inventory/deptDevice";
export default {
props: {
@@ -417,6 +526,18 @@ export default {
currentRow: {},
selectedIndex: null,
showSearch: true,
+ selectDeviceVisible: false,
+ filterDeviceQuery: {
+ nameCode: null,
+ cpmctymc: null,
+ batchNo: null,
+ invCode: null,
+ invSpaceCode: null,
+ page: 1,
+ limit: 10
+ },
+ udiDeviceTotal: 0,
+ deviceList: [],
}
},
methods: {
@@ -466,7 +587,8 @@ export default {
this.formData.fromInvSpaceCode = "";
},
selectInvProduct(obj) {
- if (this.paramValue == 0) {
+ if (this.formData.type == 1) {
+ //库存
let message = this.verifyOrder(obj);
if (!isBlank(message)) {
this.$message.warning(message);
@@ -476,14 +598,20 @@ export default {
this.saveOrder();
this.onReset();
this.selectInvProductVisible = true;
- this.filterQuery.invCode = this.formData.fromInvCode;
- } else {
+ this.getInvList();
+ } else if (this.formData.type == 2) {
+ //科室
+ //保存或更新设备登记仓库信息
+ this.saveOrder();
+ this.onDeviceReset();
+ this.selectDeviceVisible = true;
+ } else if (this.formData.type == 3) {
+ //物资
//保存或更新设备登记仓库信息
this.saveOrder();
this.onProductReset();
this.selectProductVisible = true;
}
- // this.filterQuery.invSpaceCode = this.formData.fromInvSpaceCode;
},
saveMAOrder() {
this.saveOrder();
@@ -517,10 +645,10 @@ export default {
},
saveDeviceReceiveOrder() {
- if(this.paramValue == 0){
+ if (this.paramValue == 0) {
var message = this.verifyOrder()
- }else{
- var message = this.verifyProductOrder()
+ } else {
+ var message = this.verifyProductOrder()
}
if (isBlank(message)) {
this.saveOrder();
@@ -560,27 +688,16 @@ export default {
verifyOrder(obj) {
if (isBlank(this.formData.fromDeptCode)) {
return "请选择登记部门!";
- } else if (isBlank(this.formData.fromInvCode)) {
- return "请选择来源!";
- } else if (isBlank(obj) && (this.detailList == null || this.detailList.length == 0 )) {
+ } else if (isBlank(obj) && (this.detailList == null || this.detailList.length == 0)) {
return "请选择设备!";
}
},
verifyProductOrder() {
- if (this.detailList == null || this.detailList.length == 0) {
+ if (this.detailList == null || this.detailList.length == 0) {
return "请选择设备!";
}
},
submitAudit() {
- if(this.paramValue == 0){
- var message = this.verifyOrder()
- }else{
- var message = this.verifyProductOrder()
- }
- if(!isBlank(message)){
- return this.$message.warning(message);
- }
-
let params = {id: this.formData.id};
submitAudit(params).then((res) => {
if (res.code === 20000) {
@@ -714,6 +831,18 @@ export default {
this.multiProduct = [];
this.queryProductsList();
},
+ onDeviceReset() {
+ this.filterDeviceQuery = {
+ nameCode: null,
+ cpmctymc: null,
+ batchNo: null,
+ invSpaceCode: null,
+ page: 1,
+ limit: 10
+ };
+ this.multiProduct = [];
+ this.queryDeviceList();
+ },
handleCurrentChange(val) {
this.filterQuery.page = val;
this.queryInvProducts();
@@ -723,8 +852,6 @@ export default {
this.queryInvProducts();
},
queryInvProducts() {
- this.filterQuery.invCode = this.formData.fromInvCode;
- // this.filterQuery.invSpaceCode = this.formData.fromInvSpaceCode;
getInvMAProducts(this.filterQuery).then((res) => {
if (res.code === 20000) {
this.productList = res.data.list || [];
@@ -762,10 +889,11 @@ export default {
return;
}
let invProductIds = [];
- this.multiProduct.forEach(item => {
- invProductIds.push(item.id);
- });
+ this.multiProduct.forEach(item => {
+ invProductIds.push(item.id);
+ });
let params = {
+ type: this.formData.type,
orderIdFk: this.formData.orderId,
invProductIds: invProductIds,
invCode: this.formData.fromInvCode,
@@ -776,6 +904,7 @@ export default {
this.$message.success("录入成功!");
this.selectInvProductVisible = false;
this.selectProductVisible = false;
+ this.selectDeviceVisible = false
this.getList();
} else {
this.$message.error(res.message);
@@ -793,6 +922,22 @@ export default {
this.multiProduct.push(item);
});
},
+ queryDeviceList() {
+ getDeptDeviceList(this.filterDeviceQuery).then((res) => {
+ if (res.code === 20000) {
+ this.deviceList = res.data.list || [];
+ this.udiDeviceTotal = res.data.total || 0;
+ } else {
+ this.$message.error(res.message);
+ this.deviceList = [];
+ this.udiDeviceTotal = 0;
+ }
+ }).catch((error) => {
+ this.$message.error(error.message);
+ this.deviceList = [];
+ this.udiDeviceTotal = 0;
+ });
+ }
},
created() {
//查询配置项