陈婷婷
2026-01-29 0e532f43342466ac7276e8625f94caf0af49912c
出运单修改
3个文件已修改
24 ■■■■■ 已修改文件
src/views/logistics/transportGPS/Add_Edit_WL_YayBill.vue 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/logistics/transportGPS/WL_YayBill.vue 9 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/scMould/basicModeling/Gy_MouldFileList.vue 10 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/logistics/transportGPS/Add_Edit_WL_YayBill.vue
@@ -808,7 +808,7 @@
                    this.form.HCarTypeName = data.车型名称
                    this.form.HCarTypeMaxVolume = data.车型最大容积
                    this.form.HTotalVolume = data.总体积
                    this.form.HLoadingRate = data.装载率
                    this.form.HLoadingRate = (data.装载率*100).toFixed(2)+'%'
                    this.form.HContractTransportInterID = data.承运合同ID
                    this.form.HContractTransportEntryID = data.承运合同子ID
                    this.form.HContractTransportBillNo = data.承运合同单据号
@@ -1680,7 +1680,6 @@
                    }
                }
            });
            tableData.forEach(function (row) {
                if (row.HSourceInterID && row.HSourceEntryID) {
                    var key = row.HSourceInterID + '_' + row.HSourceEntryID;
@@ -1729,11 +1728,13 @@
                });
                this.$nextTick(()=>{
                    this.editData[selRow.index - 1].HQty = num
                    this.changeHMouldQty(selRow)
                })
                this.$modal.msgError(message);
                return true; // 表示有超出
            }
            this.editData[selRow.index - 1].HMouldQty = Math.ceil(selRow.HQty / this.editData[selRow.index - 1].HSNP)
            this.changeHMouldQty(selRow)
            return false; // 表示没有超出
        },
        //#region 附件上传相关方法
src/views/logistics/transportGPS/WL_YayBill.vue
@@ -595,6 +595,7 @@
            // if (this.queryParams.HOrgID) {
            //     this.sWhere += " and HOrgID = '" + this.queryParams.HOrgID + "'";
            // }
            this.clearData()
            this.getList()
        },
        //#endregion
@@ -1276,6 +1277,14 @@
        },
        //#endregion
        //#endregion
        //清除选中数据的缓存
        clearData() {
            this.ids = []
            this.multiple = true
            this.single = true
            this.OperationType = 0
            this.copyType = 0
        },
    }
};
src/views/scMould/basicModeling/Gy_MouldFileList.vue
@@ -475,6 +475,7 @@
    },
    //列表数据
    getList() {
      this.clearData()
      this.pageSize = 50
      this.tableShow = false
      this.loading = true
@@ -1096,6 +1097,15 @@
        this.uploadData = this.getPage(this.uploadPage, this.alluploadList)
      }, 100)
    },
         //清除选中数据的缓存
        clearData() {
            this.ids = []
            this.multiple = true
            this.single = true
            this.OperationType = 0
            this.copyType = 0
        },
  }
};
</script>