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.
- package/esm2020/lib/core/models/commercial/commercial.model.mjs +1 -1
- package/esm2020/lib/core/services/commercial-service/comercial.service.mjs +11 -1
- package/fesm2015/iptdevs-design-system.mjs +10 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +10 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/commercial/commercial.model.d.ts +10 -0
- package/lib/core/services/commercial-service/comercial.service.d.ts +3 -1
- package/package.json +1 -1
|
@@ -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);
|