apply-clients 5.0.35-ezhou-25-19 → 5.0.35-ezhou-25-21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -727,6 +727,14 @@
|
|
|
727
727
|
this.model.f_charge_money = 0
|
|
728
728
|
this.model.f_amount_words = ''
|
|
729
729
|
} else {
|
|
730
|
+
for (let i = 0; i < this.charges.length; i++) {
|
|
731
|
+
let saveen = this.charges[i]
|
|
732
|
+
saveen.f_project_item = this.charges[i].f_project_item[0]
|
|
733
|
+
if (saveen.f_project_item === '合同总额'){
|
|
734
|
+
this.$showMessage('收费项目必须填写!!!')
|
|
735
|
+
return
|
|
736
|
+
}
|
|
737
|
+
}
|
|
730
738
|
//获取购货方信息
|
|
731
739
|
let http = new HttpResetClass()
|
|
732
740
|
data = {
|
|
@@ -817,10 +825,6 @@
|
|
|
817
825
|
for (let i = 0; i < this.charges.length; i++) {
|
|
818
826
|
let saveen = this.charges[i]
|
|
819
827
|
saveen.f_project_item = this.charges[i].f_project_item[0]
|
|
820
|
-
if (saveen.f_project_item === '合同金额'){
|
|
821
|
-
this.$showMessage('收费项目必须填写!!!')
|
|
822
|
-
return
|
|
823
|
-
}
|
|
824
828
|
saveen.f_charge_record_id = parseFloat(ret.data.id);
|
|
825
829
|
await http.load('POST', 'rs/logic/saveentity', {
|
|
826
830
|
data: {
|