iptdevs-design-system 3.1.274 → 3.1.276
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/cod/steps/cod-form-step-one/cod-form-step-one.component.mjs +4 -2
- package/esm2020/lib/core/models/budget/budget.model.mjs +1 -1
- package/esm2020/lib/core/services/budget-service/budget-service.mjs +6 -1
- package/fesm2015/iptdevs-design-system.mjs +8 -1
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +8 -1
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/budget/budget.model.d.ts +27 -0
- package/lib/core/services/budget-service/budget-service.d.ts +2 -1
- package/package.json +1 -1
|
@@ -3183,7 +3183,9 @@ class CodFormStepOneComponent extends CodFormSteps {
|
|
|
3183
3183
|
this.setDataFromEditCodHistory();
|
|
3184
3184
|
}
|
|
3185
3185
|
else {
|
|
3186
|
-
this.
|
|
3186
|
+
if (this.initialData != null) {
|
|
3187
|
+
this.setDataFromUserHistory();
|
|
3188
|
+
}
|
|
3187
3189
|
}
|
|
3188
3190
|
}
|
|
3189
3191
|
setDataFromUserHistory() {
|
|
@@ -5455,6 +5457,11 @@ class BudgetService extends IPTGeneralService {
|
|
|
5455
5457
|
this.generateRequestParams(params);
|
|
5456
5458
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
5457
5459
|
}
|
|
5460
|
+
obtainPaymentreceivedByUser(params) {
|
|
5461
|
+
let serviceUrl = this.SERVICE_URL + 'post/obtain/payments/received/by/user';
|
|
5462
|
+
this.generateRequestParams(params);
|
|
5463
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
5464
|
+
}
|
|
5458
5465
|
}
|
|
5459
5466
|
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 });
|
|
5460
5467
|
BudgetService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BudgetService, providedIn: 'root' });
|