iptdevs-design-system 3.1.342 → 3.1.344

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.
@@ -2772,6 +2772,11 @@ class CommercialService extends IPTGeneralService {
2772
2772
  this.generateRequestParams(request);
2773
2773
  return this.http.post(serviceUrl, this.httpOptions);
2774
2774
  }
2775
+ obtaincodCurrrentAndLevelFullDataRenovations(request) {
2776
+ let serviceUrl = this.SERVICE_URL + 'post/obtain/full/data/current/cod/by/code/student/renovation';
2777
+ this.generateRequestParams(request);
2778
+ return this.http.post(serviceUrl, this.httpOptions);
2779
+ }
2775
2780
  }
2776
2781
  CommercialService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CommercialService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
2777
2782
  CommercialService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CommercialService, providedIn: 'root' });
@@ -4931,10 +4936,10 @@ class CodFormComponent {
4931
4936
  <h2>Warning!</h2>
4932
4937
  `;
4933
4938
  if (!response.data.warning.average_score) {
4934
- alertHtml += `<p>No paso el promedio final</p><br>`;
4939
+ alertHtml += `<p>No pasó el promedio final</p><br>`;
4935
4940
  }
4936
4941
  if (!response.data.warning.non_attendance) {
4937
- alertHtml += `<p>tuvo mas del 25% de inasistencias</p><br>`;
4942
+ alertHtml += `<p>Tiene más del 25% de inasistencias</p><br>`;
4938
4943
  }
4939
4944
  if (!response.data.warning.outstanding_payments) {
4940
4945
  alertHtml += `<p>Tiene pagos pendientes</p>`;
@@ -5835,6 +5840,10 @@ class AcademicService extends IPTGeneralService {
5835
5840
  this.generateRequestParams(params);
5836
5841
  return this.http.post(serviceUrl, this.httpOptions);
5837
5842
  }
5843
+ obtainCourseTheoryByCode(courseCode) {
5844
+ let serviceUrl = `${this.SERVICE_URL}obtain/course/theory/${courseCode}`;
5845
+ return this.http.get(serviceUrl);
5846
+ }
5838
5847
  }
5839
5848
  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 });
5840
5849
  AcademicService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: AcademicService, providedIn: 'root' });