iptdevs-design-system 3.2.152 → 3.2.153

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.
@@ -4340,6 +4340,16 @@ class CommercialService extends IPTGeneralService {
4340
4340
  this.generateRequestParams(params);
4341
4341
  return this.http.post(serviceUrl, this.httpOptions);
4342
4342
  }
4343
+ addDevolutionCommission(params) {
4344
+ const serviceUrl = this.SERVICE_URL + 'commissions/add/devolution/commission';
4345
+ this.generateRequestParams(params);
4346
+ return this.http.post(serviceUrl, this.httpOptions);
4347
+ }
4348
+ obtainTransactionsByStatus(request) {
4349
+ const serviceUrl = this.SERVICE_URL + `get/transactions/by/user/and/status`;
4350
+ this.generateRequestParams(request);
4351
+ return this.http.get(serviceUrl, this.httpOptions);
4352
+ }
4343
4353
  getTransactionCommissionsByCode(request) {
4344
4354
  const serviceUrl = this.SERVICE_URL + `get/commissions/by/transaction/code`;
4345
4355
  this.generateRequestParams(request);