general-library-union 2.4.71 → 2.4.72
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/esm2022/src/app/seguridad/constantes/ReporteEntradaConstantes.mjs +19 -0
- package/esm2022/src/app/webcommon/pages/fuente-reporte/fuente-reporte.component.mjs +80 -35
- package/esm2022/src/app/webcommon/pipes/general.pipe.mjs +12 -1
- package/esm2022/src/environments/environment.mjs +3 -2
- package/fesm2022/general-library-union.mjs +98 -26
- package/fesm2022/general-library-union.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/seguridad/constantes/ReporteEntradaConstantes.d.ts +7 -0
- package/src/app/webcommon/pages/fuente/importar-fuente-con/importar-fuente-con.component.d.ts +1 -1
- package/src/app/webcommon/pages/fuente-reporte/fuente-reporte.component.d.ts +11 -2
- package/src/app/webcommon/pipes/general.pipe.d.ts +11 -0
- package/src/assets/layout/styles/theme/extensions/_steps.scss +2 -2
- package/src/styles/primeng/sass/theme/extensions/_steps.scss +2 -2
package/package.json
CHANGED
package/src/app/webcommon/pages/fuente/importar-fuente-con/importar-fuente-con.component.d.ts
CHANGED
|
@@ -114,7 +114,7 @@ export declare class ImportarFuenteConComponent implements OnInit {
|
|
|
114
114
|
cargarFormularioCamposEntrada(): Promise<void>;
|
|
115
115
|
camposEntrada(fuente: FuenteGeneralModel, parametrosPunto: FuenteCampoAtributoModel[]): Promise<CampoFormularioModel[]>;
|
|
116
116
|
obtenerValorMarcador(valorEntrada: string): string;
|
|
117
|
-
determinarLongitud(tipoDato: string): 0 |
|
|
117
|
+
determinarLongitud(tipoDato: string): 0 | 100 | 5 | 20;
|
|
118
118
|
cargarParametrosPuntoProceso(): Promise<void>;
|
|
119
119
|
cargarArchivo(data: FileSelectEvent, fubauto: any): void;
|
|
120
120
|
private readFile;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { GeneralPipe } from './../../pipes/general.pipe';
|
|
1
2
|
import { ToastService } from './../../../core/servicios/toast.service';
|
|
2
3
|
import { OnInit } from '@angular/core';
|
|
3
4
|
import { ColumnaFuenteModel } from '../../../seguridad/modelos/ColumnaFuenteModel';
|
|
@@ -19,10 +20,11 @@ export declare class FuenteReporteComponent implements OnInit {
|
|
|
19
20
|
private notificationBusService;
|
|
20
21
|
private reportesSvc;
|
|
21
22
|
private generalSvc;
|
|
22
|
-
|
|
23
|
+
utilsService: UtilsService;
|
|
23
24
|
private confirmationService;
|
|
24
25
|
private translateService;
|
|
25
26
|
messageService: MessageService;
|
|
27
|
+
private generalPipe;
|
|
26
28
|
fuente: FuenteDatoModel;
|
|
27
29
|
vistaVisualizar: string;
|
|
28
30
|
tablasFrom: TablaFromModel[];
|
|
@@ -56,7 +58,12 @@ export declare class FuenteReporteComponent implements OnInit {
|
|
|
56
58
|
items: MenuItem[];
|
|
57
59
|
mapaMensajes: Map<number, string>;
|
|
58
60
|
popupTablasFuenteUI: PopupTablasFuenteComponent;
|
|
59
|
-
|
|
61
|
+
tiposDato: Map<string, string>;
|
|
62
|
+
clickGuardar: boolean;
|
|
63
|
+
verNuevoJoin: boolean;
|
|
64
|
+
activeIndex: number;
|
|
65
|
+
cargarPaso: boolean;
|
|
66
|
+
constructor(menuService: MenuService, notificationBusService: ToastService, reportesSvc: ReportesService, generalSvc: GeneralService, utilsService: UtilsService, confirmationService: ConfirmationService, translateService: TranslateService, messageService: MessageService, generalPipe: GeneralPipe);
|
|
60
67
|
ngOnInit(): void;
|
|
61
68
|
load(event: any): Promise<void>;
|
|
62
69
|
colocarFiltro(): void;
|
|
@@ -70,6 +77,8 @@ export declare class FuenteReporteComponent implements OnInit {
|
|
|
70
77
|
anterior(): void;
|
|
71
78
|
validarQuery(): Promise<void>;
|
|
72
79
|
adicionarJoin(): void;
|
|
80
|
+
nuevoJoin(): void;
|
|
81
|
+
cancelarNuevoJoin(): void;
|
|
73
82
|
eliminarJoin(ae: any): void;
|
|
74
83
|
eliminarTabla(ae: any): void;
|
|
75
84
|
buscarTabla(): void;
|
|
@@ -27,7 +27,18 @@ export declare class GeneralPipe implements PipeTransform {
|
|
|
27
27
|
ESTADO_ACTIVO_DES: string;
|
|
28
28
|
ESTADO_INACTIVO_DESC: string;
|
|
29
29
|
ESTADO_PROCESO_DESC: string;
|
|
30
|
+
A_TILDE_MIN: string;
|
|
31
|
+
E_TILDE_MIN: string;
|
|
32
|
+
I_TILDE_MIN: string;
|
|
33
|
+
O_TIDLE_MIN: string;
|
|
34
|
+
U_TILDE_MIN: string;
|
|
35
|
+
A_TILDE_MAY: string;
|
|
36
|
+
E_TILDE_MAY: string;
|
|
37
|
+
I_TILDE_MAY: string;
|
|
38
|
+
O_TILDE_MAY: string;
|
|
30
39
|
U_TILDE_MAY: string;
|
|
40
|
+
N_TILDE_MAY: string;
|
|
41
|
+
N_TILDE_MIN: string;
|
|
31
42
|
U: string;
|
|
32
43
|
LISTA_ESTADO_SN: {
|
|
33
44
|
codigo: string;
|