iptdevs-design-system 3.2.19 → 3.2.21

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.
@@ -7666,6 +7666,14 @@ class BudgetService extends IPTGeneralService {
7666
7666
  this.generateRequestParams(params);
7667
7667
  return this.http.post(serviceUrl, this.httpOptions);
7668
7668
  }
7669
+ obtainPaymentPlanByCodeCod(codeCod) {
7670
+ let serviceUrl = this.SERVICE_URL + 'obtain/payment/plan/by/code/cod/' + codeCod;
7671
+ return this.http.get(serviceUrl, this.httpOptions);
7672
+ }
7673
+ receivePaymentsMadeToCod(codeCod) {
7674
+ let serviceUrl = this.SERVICE_URL + 'receive/payments/made/to/cod/' + codeCod;
7675
+ return this.http.get(serviceUrl, this.httpOptions);
7676
+ }
7669
7677
  }
7670
7678
  BudgetService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BudgetService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
7671
7679
  BudgetService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BudgetService, providedIn: 'root' });
@@ -7979,6 +7987,10 @@ class AcademicService extends IPTGeneralService {
7979
7987
  this.generateRequestParams(param);
7980
7988
  return this.http.post(serviceUrl, this.httpOptions);
7981
7989
  }
7990
+ obtainCourseStatusByCode(courseCode) {
7991
+ let serviceUrl = `${this.SERVICE_URL}obtain/course/status/by/code/${courseCode}`;
7992
+ return this.http.get(serviceUrl);
7993
+ }
7982
7994
  }
7983
7995
  AcademicService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: AcademicService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
7984
7996
  AcademicService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: AcademicService, providedIn: 'root' });