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.
@@ -3183,7 +3183,9 @@ class CodFormStepOneComponent extends CodFormSteps {
3183
3183
  this.setDataFromEditCodHistory();
3184
3184
  }
3185
3185
  else {
3186
- this.setDataFromUserHistory();
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' });