iptdevs-design-system 2.7.23 → 2.7.25

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.
@@ -1340,14 +1340,6 @@ class ParameterService extends IPTGeneralService {
1340
1340
  let serviceUrl = this.SERVICE_URL + 'get/multiculturalism/by/code/' + code;
1341
1341
  return this.http.get(serviceUrl);
1342
1342
  }
1343
- getQuotas() {
1344
- let serviceUrl = this.SERVICE_URL + 'get/quotas';
1345
- return this.http.get(serviceUrl);
1346
- }
1347
- getQuotaByCode(code) {
1348
- let serviceUrl = this.SERVICE_URL + 'get/quotas/by/code/' + code;
1349
- return this.http.get(serviceUrl);
1350
- }
1351
1343
  }
1352
1344
  ParameterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ParameterService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
1353
1345
  ParameterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ParameterService, providedIn: 'root' });
@@ -2294,6 +2286,11 @@ class CommercialService extends IPTGeneralService {
2294
2286
  this.generateRequestParams(params);
2295
2287
  return this.http.post(serviceUrl, this.httpOptions);
2296
2288
  }
2289
+ getCodPricesByAgreement(code) {
2290
+ let serviceUrl = this.SERVICE_URL + 'get/cod/prices/by/agreement/' + code;
2291
+ this.generateRequestParams(code);
2292
+ return this.http.get(serviceUrl, this.httpOptions);
2293
+ }
2297
2294
  }
2298
2295
  CommercialService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CommercialService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
2299
2296
  CommercialService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CommercialService, providedIn: 'root' });