iptdevs-design-system 3.1.896 → 3.1.898
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/esm2020/lib/core/models/budget/budget.model.mjs +1 -1
- package/esm2020/lib/core/models/transfer/transfer.model.mjs +2 -0
- package/esm2020/lib/core/services/budget-service/budget-service.mjs +16 -1
- package/fesm2015/iptdevs-design-system.mjs +15 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +15 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/budget/budget.model.d.ts +3 -3
- package/lib/core/models/transfer/transfer.model.d.ts +20 -0
- package/lib/core/services/budget-service/budget-service.d.ts +4 -0
- package/package.json +1 -1
|
@@ -6581,6 +6581,21 @@ class BudgetService extends IPTGeneralService {
|
|
|
6581
6581
|
this.generateRequestParams(params);
|
|
6582
6582
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
6583
6583
|
}
|
|
6584
|
+
createTransferValidate(params) {
|
|
6585
|
+
const serviceUrl = this.SERVICE_URL + 'create/transfer/validate';
|
|
6586
|
+
this.generateRequestParams(params);
|
|
6587
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
6588
|
+
}
|
|
6589
|
+
searchTransferByReference(params) {
|
|
6590
|
+
const serviceUrl = this.SERVICE_URL + 'search/transfer/by/reference';
|
|
6591
|
+
this.generateRequestParams(params);
|
|
6592
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
6593
|
+
}
|
|
6594
|
+
updateTransferData(params) {
|
|
6595
|
+
const serviceUrl = this.SERVICE_URL + 'update/transfer/data';
|
|
6596
|
+
this.generateRequestParams(params);
|
|
6597
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
6598
|
+
}
|
|
6584
6599
|
}
|
|
6585
6600
|
BudgetService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BudgetService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6586
6601
|
BudgetService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BudgetService, providedIn: 'root' });
|