iptdevs-design-system 3.2.149 → 3.2.150
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 +60 -3
- package/lib/core/services/commercial-service/comercial.service.d.ts +3 -1
- package/package.json +1 -1
|
@@ -4337,6 +4337,16 @@ class CommercialService extends IPTGeneralService {
|
|
|
4337
4337
|
this.generateRequestParams(request);
|
|
4338
4338
|
return this.http.get(serviceUrl, this.httpOptions);
|
|
4339
4339
|
}
|
|
4340
|
+
seeTransactionBill(request) {
|
|
4341
|
+
const serviceUrl = this.SERVICE_URL + `commissions/see/transaction/bill`;
|
|
4342
|
+
this.generateRequestParams(request);
|
|
4343
|
+
return this.http.get(serviceUrl, this.httpOptions);
|
|
4344
|
+
}
|
|
4345
|
+
cancellTransactionBill(params) {
|
|
4346
|
+
const serviceUrl = this.SERVICE_URL + 'commissions/cancell/transaction/bill';
|
|
4347
|
+
this.generateRequestParams(params);
|
|
4348
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
4349
|
+
}
|
|
4340
4350
|
payAdvisorBonuses(params) {
|
|
4341
4351
|
const serviceUrl = this.SERVICE_URL + 'commissions/pay/bonuses';
|
|
4342
4352
|
this.generateRequestParams(params);
|