iptdevs-design-system 3.2.79 → 3.2.80

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.
@@ -4283,7 +4283,12 @@ class CommercialService extends IPTGeneralService {
4283
4283
  return this.http.get(serviceUrl, this.httpOptions);
4284
4284
  }
4285
4285
  payCommissions(params) {
4286
- const serviceUrl = this.SERVICE_URL + 'post/pay/commissions';
4286
+ const serviceUrl = this.SERVICE_URL + 'commissions/pay/cods';
4287
+ this.generateRequestParams(params);
4288
+ return this.http.post(serviceUrl, this.httpOptions);
4289
+ }
4290
+ payAdvisorBonuses(params) {
4291
+ const serviceUrl = this.SERVICE_URL + 'commissions/pay/bonuses';
4287
4292
  this.generateRequestParams(params);
4288
4293
  return this.http.post(serviceUrl, this.httpOptions);
4289
4294
  }
@@ -4348,16 +4353,6 @@ class CommercialService extends IPTGeneralService {
4348
4353
  this.generateRequestParams(code);
4349
4354
  return this.http.get(serviceUrl);
4350
4355
  }
4351
- createCondition(request) {
4352
- const serviceUrl = this.SERVICE_URL + 'post/create/commission-condition';
4353
- this.generateRequestParams(request);
4354
- return this.http.post(serviceUrl, this.httpOptions);
4355
- }
4356
- updateCondition(request, code) {
4357
- const serviceUrl = this.SERVICE_URL + `put/update/commission-condition/${code}`;
4358
- this.generateRequestParams(request);
4359
- return this.http.put(serviceUrl, this.httpOptions);
4360
- }
4361
4356
  deleteCondition(request, code) {
4362
4357
  const serviceUrl = this.SERVICE_URL + `delete/commission-condition/${code}`;
4363
4358
  this.generateRequestParams(request);
@@ -4424,16 +4419,6 @@ class CommercialService extends IPTGeneralService {
4424
4419
  this.generateRequestParams(request);
4425
4420
  return this.http.get(serviceUrl, this.httpOptions);
4426
4421
  }
4427
- createCommissionConcept(params) {
4428
- const serviceUrl = this.SERVICE_URL + 'post/create/commission/concept';
4429
- this.generateRequestParams(params);
4430
- return this.http.post(serviceUrl, this.httpOptions);
4431
- }
4432
- updateCommissionConcept(params, code) {
4433
- const serviceUrl = this.SERVICE_URL + `put/update/commission/concept/${code}`;
4434
- this.generateRequestParams(params);
4435
- return this.http.put(serviceUrl, this.httpOptions);
4436
- }
4437
4422
  updateTypeUserCommission(params, code) {
4438
4423
  const serviceUrl = this.SERVICE_URL + `put/update/type/user/commission/${code}`;
4439
4424
  this.generateRequestParams(params);