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.
- package/esm2020/lib/core/services/commercial-service/comercial.service.mjs +6 -1
- package/esm2020/lib/core/services/parameters-service/parameters.service.mjs +9 -1
- package/fesm2015/iptdevs-design-system.mjs +13 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +13 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/services/commercial-service/comercial.service.d.ts +1 -0
- package/lib/core/services/parameters-service/parameters.service.d.ts +2 -0
- package/package.json +1 -1
|
@@ -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' });
|