iptdevs-design-system 3.2.64 → 3.2.66
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/budget-service/budget-service.mjs +6 -1
- package/esm2020/lib/core/services/commercial-service/comercial.service.mjs +21 -5
- package/fesm2015/iptdevs-design-system.mjs +25 -4
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +25 -4
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/services/budget-service/budget-service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -4304,7 +4304,11 @@ class CommercialService extends IPTGeneralService {
|
|
|
4304
4304
|
deleteConditionFromRule(request, conditionId) {
|
|
4305
4305
|
const serviceUrl = this.SERVICE_URL + `delete/rule-condition/${conditionId}`;
|
|
4306
4306
|
this.generateRequestParams(request);
|
|
4307
|
-
|
|
4307
|
+
const options = {
|
|
4308
|
+
headers: this.httpOptions.headers,
|
|
4309
|
+
params: this.httpOptions.params
|
|
4310
|
+
};
|
|
4311
|
+
return this.http.delete(serviceUrl, options);
|
|
4308
4312
|
}
|
|
4309
4313
|
updateTypePayment(request, code) {
|
|
4310
4314
|
const serviceUrl = this.SERVICE_URL + `put/update/type-payment-commission/${code}`;
|
|
@@ -4314,12 +4318,20 @@ class CommercialService extends IPTGeneralService {
|
|
|
4314
4318
|
deleteTypePayment(request, code) {
|
|
4315
4319
|
const serviceUrl = this.SERVICE_URL + `delete/type-payment-commission/${code}`;
|
|
4316
4320
|
this.generateRequestParams(request);
|
|
4317
|
-
|
|
4321
|
+
const options = {
|
|
4322
|
+
headers: this.httpOptions.headers,
|
|
4323
|
+
params: this.httpOptions.params
|
|
4324
|
+
};
|
|
4325
|
+
return this.http.delete(serviceUrl, options);
|
|
4318
4326
|
}
|
|
4319
4327
|
deletePaymentAreaCommission(request, code) {
|
|
4320
4328
|
const serviceUrl = this.SERVICE_URL + `delete/payment-area-commission/${code}`;
|
|
4321
4329
|
this.generateRequestParams(request);
|
|
4322
|
-
|
|
4330
|
+
const options = {
|
|
4331
|
+
headers: this.httpOptions.headers,
|
|
4332
|
+
params: this.httpOptions.params
|
|
4333
|
+
};
|
|
4334
|
+
return this.http.delete(serviceUrl, options);
|
|
4323
4335
|
}
|
|
4324
4336
|
obtainPreassignedCoursesAndStudentEnrollmentStatus(code) {
|
|
4325
4337
|
let serviceUrl = this.SERVICE_URL + 'obtain/preassigned/courses/student/enrollment/status/' + code;
|
|
@@ -4339,7 +4351,11 @@ class CommercialService extends IPTGeneralService {
|
|
|
4339
4351
|
deleteCondition(request, code) {
|
|
4340
4352
|
const serviceUrl = this.SERVICE_URL + `delete/commission-condition/${code}`;
|
|
4341
4353
|
this.generateRequestParams(request);
|
|
4342
|
-
|
|
4354
|
+
const options = {
|
|
4355
|
+
headers: this.httpOptions.headers,
|
|
4356
|
+
params: this.httpOptions.params
|
|
4357
|
+
};
|
|
4358
|
+
return this.http.delete(serviceUrl, options);
|
|
4343
4359
|
}
|
|
4344
4360
|
renewStudentsToNextLevel(request) {
|
|
4345
4361
|
const serviceUrl = this.SERVICE_URL + `post/cod/and/renewal/by/courses`;
|
|
@@ -7937,6 +7953,11 @@ class BudgetService extends IPTGeneralService {
|
|
|
7937
7953
|
this.generateRequestParams(params);
|
|
7938
7954
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
7939
7955
|
}
|
|
7956
|
+
searchForStudentsByDifferentParameters(param) {
|
|
7957
|
+
let serviceUrl = this.SERVICE_URL + 'search/for/students/by/different/parameters';
|
|
7958
|
+
this.generateRequestParams(param);
|
|
7959
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
7960
|
+
}
|
|
7940
7961
|
}
|
|
7941
7962
|
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 });
|
|
7942
7963
|
BudgetService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BudgetService, providedIn: 'root' });
|