taxtank-core 0.29.8 → 0.29.9
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/bundles/taxtank-core.umd.js +6 -0
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/forms/bank/bank-account/bank-account-allocation.form.js +6 -2
- package/fesm2015/taxtank-core.js +4 -0
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/forms/bank/bank-account/bank-account-allocation.form.d.ts +3 -2
- package/package.json +1 -1
|
@@ -19591,6 +19591,12 @@
|
|
|
19591
19591
|
}
|
|
19592
19592
|
});
|
|
19593
19593
|
};
|
|
19594
|
+
BankAccountAllocationForm.prototype.submit = function (data, includeDisabledFields) {
|
|
19595
|
+
if (data === void 0) { data = {}; }
|
|
19596
|
+
if (includeDisabledFields === void 0) { includeDisabledFields = false; }
|
|
19597
|
+
// remove property/business allocations if empty
|
|
19598
|
+
return _super.prototype.submit.call(this, Object.assign({ bankAccountProperties: [], businessAllocations: [] }, this.value));
|
|
19599
|
+
};
|
|
19594
19600
|
return BankAccountAllocationForm;
|
|
19595
19601
|
}(AbstractForm));
|
|
19596
19602
|
|