diff --git a/pages/hdyy/scgl/point-quhuo.vue b/pages/hdyy/scgl/point-quhuo.vue
index 8b2d311..40c7d19 100644
--- a/pages/hdyy/scgl/point-quhuo.vue
+++ b/pages/hdyy/scgl/point-quhuo.vue
@@ -44,10 +44,10 @@
| 序号 |
袋号 |
+ 出库数量 |
物料编码 |
物料名称 |
批号 |
- 出库数量 |
单位 |
供应商 |
类别 |
@@ -61,10 +61,10 @@
| {{i+1}} |
{{e.bag_code}} |
+ |
{{e.material_code}} |
{{e.material_name}} |
{{e.pcsn}} |
- |
{{e.qty_unit_name}} |
{{e.supp_name}} |
{{e.class_name}} |
diff --git a/pages/hdyy/scgl/sl-huiku.vue b/pages/hdyy/scgl/sl-huiku.vue
index e5e1c03..c0020ff 100644
--- a/pages/hdyy/scgl/sl-huiku.vue
+++ b/pages/hdyy/scgl/sl-huiku.vue
@@ -51,7 +51,7 @@
{{e.material_code}} |
{{e.material_name}} |
{{e.pcsn}} |
- |
+ {{e.qty}} |
{{e.qty_unit_name}} |
{{e.supp_name}} |
{{e.class_name}} |
@@ -103,25 +103,6 @@
this.dataList = []
this.disabled = false
},
- handleBlur (e) {
- if (e.qty) {
- if (e.qty < 0) {
- e.qty = 0
- } else {
- e.qty = e.qty.replace(/[^0-9]/g, '')
- e.qty = e.qty.replace(/^0+/, '') || '0'
- if (e.qty > e.initialQty) {
- e.qty = e.initialQty
- }
- this.num = this.dataList.reduce((sum, item) => sum + Number(item.qty), 0)
- }
- } else {
- // uni.showToast({
- // title: '数量必填',
- // icon: 'none'
- // })
- }
- },
handleChange (e) {
if (e) {
this._getGroupInfo()