iptdevs-design-system 3.1.997 → 3.1.999
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/components/forms/update-user-form/update-user-form.component.mjs +8 -7
- package/esm2020/lib/core/services/commercial-service/comercial.service.mjs +6 -1
- package/fesm2015/iptdevs-design-system.mjs +12 -6
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +12 -6
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/services/commercial-service/comercial.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1893,7 +1893,8 @@ class updateUserFormComponent {
|
|
|
1893
1893
|
{ name: 'correccion datos de Acudiente', code: 4 },
|
|
1894
1894
|
{ name: 'Cambio de contraseña', code: 5 },
|
|
1895
1895
|
{ name: 'Cambio de residencia', code: 6 },
|
|
1896
|
-
{ name: '
|
|
1896
|
+
{ name: 'Suspensión o reactivación de cuenta', code: 7 },
|
|
1897
|
+
{ name: 'Otro', code: 8 }
|
|
1897
1898
|
];
|
|
1898
1899
|
this.initForm();
|
|
1899
1900
|
this.initConfirmForm();
|
|
@@ -2083,21 +2084,21 @@ class updateUserFormComponent {
|
|
|
2083
2084
|
transformRole(role) {
|
|
2084
2085
|
const roleMap = {
|
|
2085
2086
|
1: 'Super Admin',
|
|
2086
|
-
10: '
|
|
2087
|
+
10: 'Lider Academico',
|
|
2087
2088
|
11: 'Coordinador Academico',
|
|
2088
2089
|
12: 'Teacher Academico',
|
|
2089
2090
|
13: 'Estudiante',
|
|
2090
2091
|
15: 'Posible Estudiante',
|
|
2091
|
-
20: '
|
|
2092
|
+
20: 'Lider Marketing',
|
|
2092
2093
|
21: 'Coordinador Marketing',
|
|
2093
2094
|
22: 'Auxiliar Marketing',
|
|
2094
|
-
30: '
|
|
2095
|
+
30: 'Lider Administrativo',
|
|
2095
2096
|
31: 'Coordinador Administrativo',
|
|
2096
2097
|
32: 'Auxiliar Administrativo',
|
|
2097
|
-
40: '
|
|
2098
|
+
40: 'Lider Comercial',
|
|
2098
2099
|
41: 'Coordinador Comercial',
|
|
2099
2100
|
42: 'Asesor Comercial',
|
|
2100
|
-
50: '
|
|
2101
|
+
50: 'Lider Cartera',
|
|
2101
2102
|
51: 'Coordinador Cartera',
|
|
2102
2103
|
52: 'Asesor Cartera',
|
|
2103
2104
|
60: 'Proveedor'
|
|
@@ -4147,6 +4148,11 @@ class CommercialService extends IPTGeneralService {
|
|
|
4147
4148
|
this.generateRequestParams(params);
|
|
4148
4149
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
4149
4150
|
}
|
|
4151
|
+
updateStatusOfTermsAndConditionsRecords() {
|
|
4152
|
+
let serviceUrl = this.SERVICE_URL + 'update/status/of/t&c/records';
|
|
4153
|
+
this.generateRequestParams(null);
|
|
4154
|
+
return this.http.get(serviceUrl, this.httpOptions);
|
|
4155
|
+
}
|
|
4150
4156
|
}
|
|
4151
4157
|
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 });
|
|
4152
4158
|
CommercialService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CommercialService, providedIn: 'root' });
|