iptdevs-design-system 2.7.22 → 2.7.24

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.
@@ -1332,6 +1332,14 @@ class ParameterService extends IPTGeneralService {
1332
1332
  let serviceUrl = this.SERVICE_URL + 'get/civil/status/by/code/' + code;
1333
1333
  return this.http.get(serviceUrl);
1334
1334
  }
1335
+ getMulticulturalisms() {
1336
+ let serviceUrl = this.SERVICE_URL + 'get/multiculturalisms';
1337
+ return this.http.get(serviceUrl);
1338
+ }
1339
+ getMulticulturalismByCode(code) {
1340
+ let serviceUrl = this.SERVICE_URL + 'get/multiculturalism/by/code/' + code;
1341
+ return this.http.get(serviceUrl);
1342
+ }
1335
1343
  }
1336
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 });
1337
1345
  ParameterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ParameterService, providedIn: 'root' });
@@ -2278,6 +2286,11 @@ class CommercialService extends IPTGeneralService {
2278
2286
  this.generateRequestParams(params);
2279
2287
  return this.http.post(serviceUrl, this.httpOptions);
2280
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
+ }
2281
2294
  }
2282
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 });
2283
2296
  CommercialService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CommercialService, providedIn: 'root' });