iptdevs-design-system 3.1.343 → 3.1.345
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/cod/cod-form/cod-form.component.mjs +3 -3
- package/esm2020/lib/core/models/cod/cod-rq.model.mjs +1 -1
- package/esm2020/lib/core/services/commercial-service/comercial.service.mjs +11 -1
- package/fesm2015/iptdevs-design-system.mjs +12 -2
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +12 -2
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/cod/cod-rq.model.d.ts +4 -0
- package/lib/core/services/commercial-service/comercial.service.d.ts +3 -1
- package/package.json +1 -1
|
@@ -2772,6 +2772,16 @@ 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
|
+
}
|
|
2780
|
+
getdataCurrentCodBySTudentCode(request) {
|
|
2781
|
+
let serviceUrl = this.SERVICE_URL + 'post/obtain/full/data/current/cod/by/code/student';
|
|
2782
|
+
this.generateRequestParams(request);
|
|
2783
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
2784
|
+
}
|
|
2775
2785
|
}
|
|
2776
2786
|
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
2787
|
CommercialService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CommercialService, providedIn: 'root' });
|
|
@@ -4931,10 +4941,10 @@ class CodFormComponent {
|
|
|
4931
4941
|
<h2>Warning!</h2>
|
|
4932
4942
|
`;
|
|
4933
4943
|
if (!response.data.warning.average_score) {
|
|
4934
|
-
alertHtml += `<p>No
|
|
4944
|
+
alertHtml += `<p>No pasó el promedio final</p><br>`;
|
|
4935
4945
|
}
|
|
4936
4946
|
if (!response.data.warning.non_attendance) {
|
|
4937
|
-
alertHtml += `<p>
|
|
4947
|
+
alertHtml += `<p>Tiene más del 25% de inasistencias</p><br>`;
|
|
4938
4948
|
}
|
|
4939
4949
|
if (!response.data.warning.outstanding_payments) {
|
|
4940
4950
|
alertHtml += `<p>Tiene pagos pendientes</p>`;
|