iptdevs-design-system 3.2.150 → 3.2.152

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.
@@ -1015,6 +1015,10 @@ class UserService extends IPTGeneralService {
1015
1015
  let serviceUrl = this.SERVICE_URL + 'get/all/system/users';
1016
1016
  return this.http.get(serviceUrl);
1017
1017
  }
1018
+ obtainTeachersAvailableByCampus(code_campus) {
1019
+ let serviceUrl = this.SERVICE_URL + 'obtain/teachers/available/by/campus/' + code_campus;
1020
+ return this.http.get(serviceUrl);
1021
+ }
1018
1022
  }
1019
1023
  UserService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: UserService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
1020
1024
  UserService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: UserService, providedIn: 'root' });
@@ -1555,6 +1559,10 @@ class ParameterService extends IPTGeneralService {
1555
1559
  let serviceUrl = this.SERVICE_URL + 'get/campus/all';
1556
1560
  return this.http.get(serviceUrl);
1557
1561
  }
1562
+ getAllCampusDetail() {
1563
+ let serviceUrl = this.SERVICE_URL + 'get/campus/all/detail';
1564
+ return this.http.get(serviceUrl);
1565
+ }
1558
1566
  getCampusByCode(codeCampu) {
1559
1567
  let serviceUrl = this.SERVICE_URL + 'get/campus/by/code/' + codeCampu;
1560
1568
  return this.http.get(serviceUrl);
@@ -4379,7 +4387,7 @@ class CommercialService extends IPTGeneralService {
4379
4387
  editConditionToRule(request) {
4380
4388
  const serviceUrl = this.SERVICE_URL + `put/edit/condition/rule`;
4381
4389
  this.generateRequestParams(request);
4382
- return this.http.put(serviceUrl, this.httpOptions);
4390
+ return this.http.post(serviceUrl, this.httpOptions);
4383
4391
  }
4384
4392
  deleteConditionFromRule(request, conditionId) {
4385
4393
  const serviceUrl = this.SERVICE_URL + `delete/rule-condition/${conditionId}`;