iptdevs-design-system 3.2.149 → 3.2.151
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/models/parameters/parameters-rs.model.mjs +1 -1
- package/esm2020/lib/core/services/commercial-service/comercial.service.mjs +11 -1
- package/esm2020/lib/core/services/parameters-service/parameters.service.mjs +5 -1
- package/fesm2015/iptdevs-design-system.mjs +14 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +14 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/commercial/commercial.model.d.ts +60 -3
- package/lib/core/models/parameters/parameters-rs.model.d.ts +21 -0
- package/lib/core/services/commercial-service/comercial.service.d.ts +3 -1
- package/lib/core/services/parameters-service/parameters.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1555,6 +1555,10 @@ class ParameterService extends IPTGeneralService {
|
|
|
1555
1555
|
let serviceUrl = this.SERVICE_URL + 'get/campus/all';
|
|
1556
1556
|
return this.http.get(serviceUrl);
|
|
1557
1557
|
}
|
|
1558
|
+
getAllCampusDetail() {
|
|
1559
|
+
let serviceUrl = this.SERVICE_URL + 'get/campus/all/detail';
|
|
1560
|
+
return this.http.get(serviceUrl);
|
|
1561
|
+
}
|
|
1558
1562
|
getCampusByCode(codeCampu) {
|
|
1559
1563
|
let serviceUrl = this.SERVICE_URL + 'get/campus/by/code/' + codeCampu;
|
|
1560
1564
|
return this.http.get(serviceUrl);
|
|
@@ -4337,6 +4341,16 @@ class CommercialService extends IPTGeneralService {
|
|
|
4337
4341
|
this.generateRequestParams(request);
|
|
4338
4342
|
return this.http.get(serviceUrl, this.httpOptions);
|
|
4339
4343
|
}
|
|
4344
|
+
seeTransactionBill(request) {
|
|
4345
|
+
const serviceUrl = this.SERVICE_URL + `commissions/see/transaction/bill`;
|
|
4346
|
+
this.generateRequestParams(request);
|
|
4347
|
+
return this.http.get(serviceUrl, this.httpOptions);
|
|
4348
|
+
}
|
|
4349
|
+
cancellTransactionBill(params) {
|
|
4350
|
+
const serviceUrl = this.SERVICE_URL + 'commissions/cancell/transaction/bill';
|
|
4351
|
+
this.generateRequestParams(params);
|
|
4352
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
4353
|
+
}
|
|
4340
4354
|
payAdvisorBonuses(params) {
|
|
4341
4355
|
const serviceUrl = this.SERVICE_URL + 'commissions/pay/bonuses';
|
|
4342
4356
|
this.generateRequestParams(params);
|