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.
@@ -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);