From a4f56dbeeb755475e5c4d947173326e1fd44aa95 Mon Sep 17 00:00:00 2001
From: chenhc <2369838784@qq.com>
Date: Thu, 19 Dec 2024 11:16:20 +0800
Subject: [PATCH 01/12] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/collect/IocCollectOrderCheckCode.vue | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/views/collect/IocCollectOrderCheckCode.vue b/src/views/collect/IocCollectOrderCheckCode.vue
index 9eec9229..4338673d 100644
--- a/src/views/collect/IocCollectOrderCheckCode.vue
+++ b/src/views/collect/IocCollectOrderCheckCode.vue
@@ -45,7 +45,7 @@
-
+
@@ -186,6 +186,7 @@ export default {
scanResultType: 'success',
result: '\n',
errVisible: false,
+ loading: false,
successVisible: true,
errResult: '',
scanCode: '',
@@ -252,7 +253,7 @@ export default {
},
enterBillNoKey(billNo) {
- // this.checkSuccess = true;
+ this.loading = true;
this.filterQuery.code = this.scanCode
let tQuery = {
viewType: 'tagCode',
From b1727de5dc1f38d39a96677574001d8f17a63f19 Mon Sep 17 00:00:00 2001
From: wangwei <1610949092@qq.com>
Date: Thu, 19 Dec 2024 11:34:11 +0800
Subject: [PATCH 02/12] =?UTF-8?q?12/19=20=E5=8D=95=E6=8D=AE=E5=AE=A1?=
=?UTF-8?q?=E6=A0=B8=20=E4=B8=9A=E5=8A=A1=E8=AF=A6=E6=83=851.0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/basic/workplace/busTypeManage.vue | 13 +++--
src/views/basic/workplace/workplaceManage.vue | 13 +++--
src/views/collect/DialogCheckCode.vue | 13 +++--
.../collect/IocCollectOrderCheckCode.vue | 53 +++++++++++++++----
src/views/collect/PanelOrderEndSearch.vue | 15 +++++-
5 files changed, 78 insertions(+), 29 deletions(-)
diff --git a/src/views/basic/workplace/busTypeManage.vue b/src/views/basic/workplace/busTypeManage.vue
index 042fec2f..c0893980 100644
--- a/src/views/basic/workplace/busTypeManage.vue
+++ b/src/views/basic/workplace/busTypeManage.vue
@@ -353,13 +353,12 @@ export default {
3: '用户所属仓库',
},
consignees: {
- 1: '原始单据的收货方',
- 2: '原始单据的发货方',
- 3: '供应商',
- 4: '客户',
- 5: '特殊往来',
- 6: '内部科室',
- 7: '填写',
+ 1: '客户',
+ 2: '供应商',
+ 3: '内部科室',
+ 4: '特殊往来',
+ 5: '原始单据的收货方',
+ 6: '原始单据的发货方',
},
userList: [],
userLoading: false,
diff --git a/src/views/basic/workplace/workplaceManage.vue b/src/views/basic/workplace/workplaceManage.vue
index 763faf96..2993fb75 100644
--- a/src/views/basic/workplace/workplaceManage.vue
+++ b/src/views/basic/workplace/workplaceManage.vue
@@ -912,13 +912,12 @@ export default {
'true' : '是',
},
consignees: {
- 1: '原始单据的收货方',
- 2: '原始单据的发货方',
- 3: '供应商',
- 4: '客户',
- 5: '特殊往来',
- 6: '内部科室',
- 7: '填写',
+ 1: '客户',
+ 2: '供应商',
+ 3: '内部科室',
+ 4: '特殊往来',
+ 5: '原始单据的收货方',
+ 6: '原始单据的发货方',
},
userList: [],
userLoading: false,
diff --git a/src/views/collect/DialogCheckCode.vue b/src/views/collect/DialogCheckCode.vue
index edf73198..c96a21c1 100644
--- a/src/views/collect/DialogCheckCode.vue
+++ b/src/views/collect/DialogCheckCode.vue
@@ -1,7 +1,7 @@
-
+
-
+
-->
+
+ 单据 {{ orderData.billNo }}-业务详情
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -198,6 +222,13 @@ export default {
page: 1,
limit: 10
},
+ busQuery: {
+ billNo: null,
+ orderIdFk: null,
+ code: null,
+ page: 1,
+ limit: 10
+ },
filterQuery: {
code: '',
billNo: null,
@@ -216,7 +247,9 @@ export default {
curRow: null,
codeList: [],
- checkCodeList: []
+ checkCodeList: [],
+ busDataList:[],
+ busDataTotal:0
}
},
@@ -273,6 +306,7 @@ export default {
this.$refs.inputRef.select()
this.scanCode = ''
this.getCodeList()
+ this.getBizDetailList()
}else {
this.$refs.inputRef.focus()
this.$refs.inputRef.select()
@@ -303,21 +337,19 @@ export default {
})
},
getBizDetailList() {
- let preQuery = {}
- if (this.filterQuery == null) {
- return
- }
- if (this.filterQuery != null) {
- preQuery = {
- orderIdFk: this.filterQuery.billNo
- }
+ if (this.orderData != null) {
+ // this.codeQuery.page = 1
+ this.busQuery.orderIdFk = this.orderData.billNo
+ // this.codeQuery.bizIdFk = this.bizId
}
- orderDetail(preQuery).then(res => {
+ orderDetail(this.busQuery).then(res => {
if (res.code != 20000) {
this.$message.error(res.message)
return
}
+ this.busDataList = res.data.list
+ this.busDataTotal = res.data.total
}).catch(() => {
this.$message.error('数据加载失败')
})
@@ -505,6 +537,7 @@ export default {
}
},
+
batchVailCode(params) {
// batchVailCode(params).then((res) => {
// if (res.code === 20000) {
diff --git a/src/views/collect/PanelOrderEndSearch.vue b/src/views/collect/PanelOrderEndSearch.vue
index e0d9e8c3..b72c1d86 100644
--- a/src/views/collect/PanelOrderEndSearch.vue
+++ b/src/views/collect/PanelOrderEndSearch.vue
@@ -273,7 +273,7 @@
@@ -414,6 +415,11 @@ export default {
//码校验数据
+ scanTitle: 1,
+ scanTitleMap: {
+ 1 : '扫码校验',
+ 2 : '校验详情'
+ }
}
},
@@ -562,6 +568,13 @@ export default {
//码校验
codeCheckClick(_this,row){
+ _this.scanTitle = 1
+ _this.curRow = row
+ _this.codeCheckVisible = true
+ },
+ //校验详情
+ codeCheckDetail(_this,row){
+ _this.scanTitle = 2
_this.curRow = row
_this.codeCheckVisible = true
},
From 2ac137215bd50588bdce8490fd47f6a3f41fc8d6 Mon Sep 17 00:00:00 2001
From: chenhc <2369838784@qq.com>
Date: Thu, 19 Dec 2024 11:37:18 +0800
Subject: [PATCH 03/12] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/collect/CollectOrderTabs.vue | 20 +++++++++++++++++++-
1 file changed, 19 insertions(+), 1 deletion(-)
diff --git a/src/views/collect/CollectOrderTabs.vue b/src/views/collect/CollectOrderTabs.vue
index 6558a6c7..240931fc 100644
--- a/src/views/collect/CollectOrderTabs.vue
+++ b/src/views/collect/CollectOrderTabs.vue
@@ -57,7 +57,7 @@
-
+
处理单据
@@ -444,6 +444,7 @@ export default {
tabIndex: 0,
menuActive: 0,
autoTag: 0,
+ inAndOutType: 0,
workPlaceClass: 1,
resetKeys: {}
}
@@ -642,9 +643,11 @@ export default {
let busType = this.busTypeList.find(item => item.documentTypeCode == this.formData.busType)
this.formData.busName = busType.busName;
this.autoTag = busType.autoTag;
+ this.inAndOutType = busType.inAndOutType;
} else if (this.busTypeList.length == 1) {
this.formData.busType = this.busTypeList[0].documentTypeCode
this.autoTag = this.busTypeList[0].autoTag;
+ this.inAndOutType = this.busTypeList[0].inAndOutType;
this.$router.push({query: {...this.$route.query, busType: this.formData.busType}, path: this.$route.path})
this.selectBusTypeDisabled = false
this.formData.busName = this.busTypeList.find(item => item.documentTypeCode == this.formData.busType).busName;
@@ -653,6 +656,21 @@ export default {
this.formData.busType = null
}
+ if(this.inAndOutType == 1){
+ this.closeAllTabs()
+ this.editableTabsValue = 'IocCollectOrderCheckCode';
+ this.menuActive= 10,
+ this.editableTabs = [{
+ number: 10,
+ title: '单据审核',
+ name: 'IocCollectOrderCheckCode',
+ component: IocCollectOrderCheckCode,
+ // 假设你需要传递的参数
+ componentProps: {}
+ }
+ ];
+ }
+
}
return
})
From 8bc454e7f857444e844e63023fac45919ee4adb7 Mon Sep 17 00:00:00 2001
From: wangwei <1610949092@qq.com>
Date: Thu, 19 Dec 2024 13:40:04 +0800
Subject: [PATCH 04/12] =?UTF-8?q?12/19=20=E7=95=8C=E9=9D=A2=E4=BC=98?=
=?UTF-8?q?=E5=8C=961.0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/collect/CollectFinishOrderBackupDetail.vue | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/views/collect/CollectFinishOrderBackupDetail.vue b/src/views/collect/CollectFinishOrderBackupDetail.vue
index 0a65834a..5027c654 100644
--- a/src/views/collect/CollectFinishOrderBackupDetail.vue
+++ b/src/views/collect/CollectFinishOrderBackupDetail.vue
@@ -274,15 +274,14 @@ export default {
///界面配置相关------------end
preHandleCurrentChange(val) {
- this.filterQuery.page = val.page;
- this.getPrescribeDetail(this, null);
+ this.preQuery.page = val.page;
+ this.getPrescribeDetail(this);
},
getPrescribeDetail(_this) {
-
if (_this.prescribeData == null)
return
if (_this.prescribeData != null) {
- _this.preQuery.page = 1
+ // _this.preQuery.page = 1
_this.preQuery.orderIdFk = this.prescribeData.billNo
}
_this.preLoading = true;
@@ -293,6 +292,7 @@ export default {
return
}
_this.preDetailList = res.data.list
+ _this.preTotal = res.data.total
_this.preLoading = false
}).catch(() => {
_this.preLoading = false
From 63f6a01374630e59acd0618da081011ed244cb0b Mon Sep 17 00:00:00 2001
From: wangwei <1610949092@qq.com>
Date: Fri, 20 Dec 2024 09:45:23 +0800
Subject: [PATCH 05/12] =?UTF-8?q?12/20=20=E8=8D=AF=E5=93=81=E5=8F=91?=
=?UTF-8?q?=E7=A5=A8=20=E5=9F=BA=E7=A1=80=E6=98=BE=E7=A4=BA=E5=8C=85?=
=?UTF-8?q?=E8=A3=85=E6=AF=94=E4=BE=8B?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/basic/product/drug/drugAdd.vue | 27 ++++-
.../collect/IocCollectOrderCheckCode.vue | 1 +
src/views/inout/InvoiceCkeck.vue | 2 +-
src/views/inoutDrug/InvoiceCkeck.vue | 106 +-----------------
src/views/inoutDrug/InvoiceRegByOrder.vue | 7 +-
5 files changed, 37 insertions(+), 106 deletions(-)
diff --git a/src/views/basic/product/drug/drugAdd.vue b/src/views/basic/product/drug/drugAdd.vue
index d2e98a7a..4b6e77a3 100644
--- a/src/views/basic/product/drug/drugAdd.vue
+++ b/src/views/basic/product/drug/drugAdd.vue
@@ -79,6 +79,13 @@
>
+
+
+
+
+
-
+
@@ -830,6 +837,7 @@ export default {
productId: null,
nameCode: '',
packLevel: null,
+ packRatio: null,
bhxjsl: null,
isDisabled: false,
isUpDisabled: true,
@@ -849,7 +857,8 @@ export default {
levelUnitList: [],
maxLevel: 1,
- editRowSwitch: false //产品标识编辑开关 没保存前其他编辑不能按
+ editRowSwitch: false, //产品标识编辑开关 没保存前其他编辑不能按
+ isSpecial:false
}
},
@@ -1061,7 +1070,8 @@ export default {
uuid: this.newProductData.uuid,
productId: row.productId,
diType: row.diType,
- xjdw: row.xjdw
+ xjdw: row.xjdw,
+ packRatio: row.packRatio
}
updateLevelDrug(editQuery).then(res => {
this.saveLoading = false
@@ -1150,6 +1160,7 @@ export default {
.then((response) => {
this.loading = false
this.detailList = response.data || []
+ this.checkIsSpecial()
})
.catch(() => {
this.loading = false
@@ -1157,7 +1168,15 @@ export default {
})
}
},
-
+ checkIsSpecial(){
+ if (this.detailList.length > 0){
+ this.detailList.forEach(item => {
+ if (item.nameCode.startsWith('89')) {
+ this.isSpecial = true
+ }
+ })
+ }
+ },
distributeLevelDiChange(val) {
const matchingItem = this.detailList.find(item => item.nameCode == val)
if (matchingItem) {
diff --git a/src/views/collect/IocCollectOrderCheckCode.vue b/src/views/collect/IocCollectOrderCheckCode.vue
index e4afc661..8dadd2e6 100644
--- a/src/views/collect/IocCollectOrderCheckCode.vue
+++ b/src/views/collect/IocCollectOrderCheckCode.vue
@@ -163,6 +163,7 @@
+
diff --git a/src/views/inout/InvoiceCkeck.vue b/src/views/inout/InvoiceCkeck.vue
index 3701a049..203a9309 100644
--- a/src/views/inout/InvoiceCkeck.vue
+++ b/src/views/inout/InvoiceCkeck.vue
@@ -504,7 +504,7 @@ export default {
this.inputQuery.list = this.invoiceRow;
let mount = 0;
for (var i = 0; i < this.invoiceRow.length; i++) {
- mount += this.invoiceRow[i].amount
+ mount += this.invoiceRow[i].price
}
if (mount != this.inputQuery.price) {
this.$confirm("价格不匹配,是否确定提交?", "提示", {
diff --git a/src/views/inoutDrug/InvoiceCkeck.vue b/src/views/inoutDrug/InvoiceCkeck.vue
index 75e2ba35..c122117a 100644
--- a/src/views/inoutDrug/InvoiceCkeck.vue
+++ b/src/views/inoutDrug/InvoiceCkeck.vue
@@ -155,100 +155,6 @@
-
-
-
- 单据 {{ input.billNo }}-单据详情
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -708,6 +710,7 @@ export default {
acceptQuery: null,
acceptOrderVisible: false,
subRow: null,
+ detaillist:[],
};
},
components: {AcceptOrder, DialogInvoice, InvoiceRegister, ElImageViewer, InvoiceRegistrationDetermine, checkInvoice},
@@ -737,11 +740,13 @@ export default {
this.getList();
},
InvoiceRegister1(_this,row) {
- _this.savebillno = row.billNo
+ _this.savebillno = _this.currentRow.billNo
_this.inputInv = row;
+ _this.detaillist.push(row)
_this.checkInvoice = true;
},
closecheckInvoice() {
+ this.detaillist = []
this.checkInvoice = false;
this.getList();
this.currentRow.billNo = this.savebillno;
From 40de60c67990f3d208bd5253058d4ec20fe77648 Mon Sep 17 00:00:00 2001
From: wangwei <1610949092@qq.com>
Date: Fri, 20 Dec 2024 10:06:09 +0800
Subject: [PATCH 06/12] 12/20
---
src/views/basic/collectPoint/timerSetting.vue | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/src/views/basic/collectPoint/timerSetting.vue b/src/views/basic/collectPoint/timerSetting.vue
index 38067e67..404f62a8 100644
--- a/src/views/basic/collectPoint/timerSetting.vue
+++ b/src/views/basic/collectPoint/timerSetting.vue
@@ -76,6 +76,14 @@
+
+
+
+ 是
+ 否
+
+
+
@@ -237,7 +245,8 @@ export default {
activeNames: ['0', '1', '2', '3'],
formData: {
startDownloadTime: null,
- lastCodeSplit: true
+ lastCodeSplit: true,
+ isScanCodeCheck:true,
},
systemParam: null,
From 199d5133c4f3cd6ff6656aecc8b77f426f24ccde Mon Sep 17 00:00:00 2001
From: yewj
Date: Fri, 20 Dec 2024 19:20:53 +0800
Subject: [PATCH 07/12] =?UTF-8?q?=E6=89=AB=E5=A4=9A=E6=AE=B5=E7=A0=81?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/collect/ConfirmDrugDealOrder.vue | 2 +-
src/views/collect/DealOrder.vue | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/views/collect/ConfirmDrugDealOrder.vue b/src/views/collect/ConfirmDrugDealOrder.vue
index bd2f6794..d4f95552 100644
--- a/src/views/collect/ConfirmDrugDealOrder.vue
+++ b/src/views/collect/ConfirmDrugDealOrder.vue
@@ -1549,7 +1549,7 @@ export default {
}
// 2. 判断是否以 "01" 开头且长度大于等于 18
- if (str.startsWith("01") && str.length >= 18) {
+ if (str.startsWith("01") && str.length >= 16) {
return true;
}
diff --git a/src/views/collect/DealOrder.vue b/src/views/collect/DealOrder.vue
index ac208891..dc6b5e2e 100644
--- a/src/views/collect/DealOrder.vue
+++ b/src/views/collect/DealOrder.vue
@@ -1595,7 +1595,7 @@ export default {
}
// 2. 判断是否以 "01" 开头且长度大于等于 18
- if (str.startsWith("01") && str.length >= 18) {
+ if (str.startsWith("01") && str.length >= 16) {
return true;
}
From 62b89306d12b5d512428fcd655fdb63651fbfbbc Mon Sep 17 00:00:00 2001
From: wangwei <1610949092@qq.com>
Date: Mon, 23 Dec 2024 10:11:08 +0800
Subject: [PATCH 08/12] =?UTF-8?q?12/23=20=E6=A7=BD=E4=BD=8D=E5=88=A0?=
=?UTF-8?q?=E9=99=A4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/basic/workplace/editQueueDialog.vue | 146 ++++++++++++++++++
src/views/basic/workplace/freightManage.vue | 117 +++++++++++---
src/views/inout/InvoiceRegByOrder.vue | 2 +-
src/views/inoutDrug/InvoiceRegByOrder.vue | 2 +-
4 files changed, 243 insertions(+), 24 deletions(-)
create mode 100644 src/views/basic/workplace/editQueueDialog.vue
diff --git a/src/views/basic/workplace/editQueueDialog.vue b/src/views/basic/workplace/editQueueDialog.vue
new file mode 100644
index 00000000..dd0fc149
--- /dev/null
+++ b/src/views/basic/workplace/editQueueDialog.vue
@@ -0,0 +1,146 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/basic/workplace/freightManage.vue b/src/views/basic/workplace/freightManage.vue
index 341e8dc2..21b7f734 100644
--- a/src/views/basic/workplace/freightManage.vue
+++ b/src/views/basic/workplace/freightManage.vue
@@ -8,6 +8,8 @@
取货架列表
+
+
打印全部
@@ -27,23 +29,21 @@
-
-
+
+
+
+
+
+
@@ -82,7 +82,7 @@
-
+
摆货层列表
@@ -94,17 +94,16 @@
@row-click="handChangeLayer"
>
-
-
+
+
+
+
+
+
-->
-
+
出货槽列表
@@ -154,7 +153,12 @@
label="出货槽编号"
>
-
+
+
+
打印
+ 编辑
+
+ 删除
+
+
@@ -205,6 +222,24 @@
>
+
+
+
+
+
+
@@ -212,8 +247,9 @@