iptdevs-design-system 3.2.36 → 3.2.38

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.
@@ -4203,9 +4203,9 @@ class CommercialService extends IPTGeneralService {
4203
4203
  this.generateRequestParams(code);
4204
4204
  return this.http.get(serviceUrl, this.httpOptions);
4205
4205
  }
4206
- getSummaryByCommercialAdvisor(request) {
4207
- const serviceUrl = this.SERVICE_URL + 'get/summary/by/commercial/advisor';
4208
- this.generateRequestParams({ params: request });
4206
+ getSummaryByCommercialAdvisor(params) {
4207
+ let serviceUrl = this.SERVICE_URL + 'get/summary/by/commercial/advisor';
4208
+ this.generateRequestParams(params);
4209
4209
  return this.http.post(serviceUrl, this.httpOptions);
4210
4210
  }
4211
4211
  getCodStudentDetailsByAdviser(request) {
@@ -4213,9 +4213,9 @@ class CommercialService extends IPTGeneralService {
4213
4213
  const options = { ...this.httpOptions, params: request };
4214
4214
  return this.http.get(serviceUrl, options);
4215
4215
  }
4216
- createTypePayment(request) {
4216
+ createTypePayment(params) {
4217
4217
  const serviceUrl = this.SERVICE_URL + 'post/create/type/payment/commissions';
4218
- this.generateRequestParams({ params: request });
4218
+ this.generateRequestParams(params);
4219
4219
  return this.http.post(serviceUrl, this.httpOptions);
4220
4220
  }
4221
4221
  getAllTypePayments(request) {
@@ -4223,9 +4223,9 @@ class CommercialService extends IPTGeneralService {
4223
4223
  this.generateRequestParams(request);
4224
4224
  return this.http.get(serviceUrl, this.httpOptions);
4225
4225
  }
4226
- createCommissionArea(request) {
4226
+ createCommissionArea(params) {
4227
4227
  const serviceUrl = this.SERVICE_URL + 'post/create/commission/area';
4228
- this.generateRequestParams({ params: request });
4228
+ this.generateRequestParams(params);
4229
4229
  return this.http.post(serviceUrl, this.httpOptions);
4230
4230
  }
4231
4231
  getAllCommissionAreas(request) {
@@ -4233,14 +4233,14 @@ class CommercialService extends IPTGeneralService {
4233
4233
  this.generateRequestParams(request);
4234
4234
  return this.http.get(serviceUrl, this.httpOptions);
4235
4235
  }
4236
- assignCourseTypesToArea(request) {
4236
+ assignCourseTypesToArea(params) {
4237
4237
  const serviceUrl = this.SERVICE_URL + 'post/assign/course-types/to-area';
4238
- this.generateRequestParams({ params: request });
4238
+ this.generateRequestParams(params);
4239
4239
  return this.http.post(serviceUrl, this.httpOptions);
4240
4240
  }
4241
- createPaymentAreaCommission(request) {
4241
+ createPaymentAreaCommission(params) {
4242
4242
  const serviceUrl = this.SERVICE_URL + 'post/create/payment/area/commission';
4243
- this.generateRequestParams({ params: request });
4243
+ this.generateRequestParams(params);
4244
4244
  return this.http.post(serviceUrl, this.httpOptions);
4245
4245
  }
4246
4246
  getCommissionRulesByArea(request, areaCode) {
@@ -4248,9 +4248,9 @@ class CommercialService extends IPTGeneralService {
4248
4248
  this.generateRequestParams(request);
4249
4249
  return this.http.get(serviceUrl, this.httpOptions);
4250
4250
  }
4251
- createTypeUserCommission(request) {
4251
+ createTypeUserCommission(params) {
4252
4252
  const serviceUrl = this.SERVICE_URL + 'post/create/type/user/commission';
4253
- this.generateRequestParams({ params: request });
4253
+ this.generateRequestParams(params);
4254
4254
  return this.http.post(serviceUrl, this.httpOptions);
4255
4255
  }
4256
4256
  getAllTypeUserCommissions(request) {
@@ -4258,9 +4258,9 @@ class CommercialService extends IPTGeneralService {
4258
4258
  this.generateRequestParams(request);
4259
4259
  return this.http.get(serviceUrl, this.httpOptions);
4260
4260
  }
4261
- assignCommissionGoalToUser(request) {
4261
+ assignCommissionGoalToUser(params) {
4262
4262
  const serviceUrl = this.SERVICE_URL + 'post/assign/goal/to/user';
4263
- this.generateRequestParams({ params: request });
4263
+ this.generateRequestParams(params);
4264
4264
  return this.http.post(serviceUrl, this.httpOptions);
4265
4265
  }
4266
4266
  getActiveCommissionGoalForUser(request) {
@@ -4268,9 +4268,9 @@ class CommercialService extends IPTGeneralService {
4268
4268
  this.generateRequestParams(request);
4269
4269
  return this.http.get(serviceUrl, this.httpOptions);
4270
4270
  }
4271
- payCommissions(request) {
4271
+ payCommissions(params) {
4272
4272
  const serviceUrl = this.SERVICE_URL + 'post/pay/commissions';
4273
- this.generateRequestParams({ params: request });
4273
+ this.generateRequestParams(params);
4274
4274
  return this.http.post(serviceUrl, this.httpOptions);
4275
4275
  }
4276
4276
  updatePaymentAreaCommission(request, ruleCode) {
@@ -4720,7 +4720,7 @@ class CourseService extends IPTGeneralService {
4720
4720
  return this.http.post(serviceUrl, this.httpOptions);
4721
4721
  }
4722
4722
  getAllCourseTypes(request) {
4723
- const serviceUrl = this.SERVICE_URL + 'get/all-areas-with-commission-rules';
4723
+ const serviceUrl = this.SERVICE_URL + 'get/all/course-types';
4724
4724
  this.generateRequestParams(request);
4725
4725
  return this.http.get(serviceUrl, this.httpOptions);
4726
4726
  }
@@ -7787,6 +7787,10 @@ class BudgetService extends IPTGeneralService {
7787
7787
  this.generateRequestParams(params);
7788
7788
  return this.http.post(serviceUrl, this.httpOptions);
7789
7789
  }
7790
+ studentPaymentPlanByCod(codeCod) {
7791
+ const serviceUrl = this.SERVICE_URL + 'student/payment/plan/by/cod/' + codeCod;
7792
+ return this.http.get(serviceUrl);
7793
+ }
7790
7794
  }
7791
7795
  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 });
7792
7796
  BudgetService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BudgetService, providedIn: 'root' });