general-library-union 2.9.87 → 2.9.89

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "general-library-union",
3
- "version": "2.9.87",
3
+ "version": "2.9.89",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/animations": "^18.0.4",
@@ -73,6 +73,8 @@ export declare class DetalleTipoReporteComponent implements OnInit, OnDestroy {
73
73
  verSoporteArchivoDetalle: boolean;
74
74
  clickGuardarSoporteArchivo: boolean;
75
75
  habilitaCampo: boolean;
76
+ bloquearCampoMarcador: boolean;
77
+ bloquearSoporte: boolean;
76
78
  listaTipoBanda: {
77
79
  key: string;
78
80
  value: string;
@@ -186,6 +188,7 @@ export declare class DetalleTipoReporteComponent implements OnInit, OnDestroy {
186
188
  eliminarCampoMarcador(event: any, objeto: any): void;
187
189
  nuevoCampoTabla(): void;
188
190
  validarCampoMarcador(campoMarcador: any): boolean;
191
+ editarCampoMarcador(): void;
189
192
  agregarCampoMarcador(campoMarcador: any): void;
190
193
  cargarListaSoportes(): void;
191
194
  cargarListaSoportesAsync(): Promise<void>;
@@ -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 | 5 | 20 | 100;
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;
@@ -15,6 +15,7 @@ import { ToastService } from '../../../core/servicios/toast.service';
15
15
  import { UtilsService } from '../../../core/servicios/utils.service';
16
16
  import { AuthService } from '../../../core/servicios/auth.service';
17
17
  import { CargarControlFuncionalidadService } from '../../../core/servicios/cargar-control-funcionalidad.service';
18
+ import { DataExporter } from '../../../core/servicios/data-exporter-table.utils';
18
19
  import * as i0 from "@angular/core";
19
20
  export declare class PopupReporteComponent implements OnInit {
20
21
  private generalService;
@@ -30,6 +31,7 @@ export declare class PopupReporteComponent implements OnInit {
30
31
  private reporteFuentePipe;
31
32
  private generalPipe;
32
33
  private cargarArchivo;
34
+ private dataExporter;
33
35
  private encriptadorArchivo;
34
36
  mostrar: boolean;
35
37
  aplicacion: string;
@@ -66,7 +68,11 @@ export declare class PopupReporteComponent implements OnInit {
66
68
  columnas: TableColumn[];
67
69
  listaRegistro: any[];
68
70
  existeJasper: boolean;
69
- constructor(generalService: GeneralService, ejecucionReporteService: EjecucionReporteService, confirmationService: ConfirmationService, notificacionService: ToastService, authService: AuthService, translateService: TranslateService, cargarArchivoService: CargarArchivosService, utilsService: UtilsService, controlFuncionalidad: CargarControlFuncionalidadService, encriptadoBasico: EncriptadoBasicoService, reporteFuentePipe: ReporteFuentePipe, generalPipe: GeneralPipe, cargarArchivo: CargarArchivosService, encriptadorArchivo: EncriptadoBasicoService);
71
+ cols: any[];
72
+ exportColumns: any[];
73
+ nombreArchivo: string;
74
+ columnasExportExcel: any[];
75
+ constructor(generalService: GeneralService, ejecucionReporteService: EjecucionReporteService, confirmationService: ConfirmationService, notificacionService: ToastService, authService: AuthService, translateService: TranslateService, cargarArchivoService: CargarArchivosService, utilsService: UtilsService, controlFuncionalidad: CargarControlFuncionalidadService, encriptadoBasico: EncriptadoBasicoService, reporteFuentePipe: ReporteFuentePipe, generalPipe: GeneralPipe, cargarArchivo: CargarArchivosService, dataExporter: DataExporter, encriptadorArchivo: EncriptadoBasicoService);
70
76
  ngOnInit(): void;
71
77
  mostrarPopup(): Promise<void>;
72
78
  cargarMenu(): void;
@@ -92,6 +98,8 @@ export declare class PopupReporteComponent implements OnInit {
92
98
  descargarReporte(): void;
93
99
  descargarReporteSinHilo(): void;
94
100
  generarTabla(): void;
101
+ crearColumnasExportar(): void;
102
+ exportArchivo(tipoArchivo: string): void;
95
103
  static ɵfac: i0.ɵɵFactoryDeclaration<PopupReporteComponent, never>;
96
104
  static ɵcmp: i0.ɵɵComponentDeclaration<PopupReporteComponent, "app-popup-reporte", never, { "mostrar": { "alias": "mostrar"; "required": false; }; "aplicacion": { "alias": "aplicacion"; "required": false; }; "reporte": { "alias": "reporte"; "required": false; }; "entradasPuntoProceso": { "alias": "entradasPuntoProceso"; "required": false; }; }, { "regresar": "regresar"; }, never, never, true, never>;
97
105
  }
@@ -24,6 +24,7 @@ export declare class FechaUtilsService {
24
24
  fechasTexto(general: any): Observable<any>;
25
25
  obtenerFecha(general: any): Observable<any>;
26
26
  ultimoDiaMes(general: any): Observable<any>;
27
+ obtenerListadoAnios(fecha: Date, aniosMin: number, aniosMax: number): number[];
27
28
  static ɵfac: i0.ɵɵFactoryDeclaration<FechaUtilsService, never>;
28
29
  static ɵprov: i0.ɵɵInjectableDeclaration<FechaUtilsService>;
29
30
  }
@@ -3887,7 +3887,7 @@ td.GrupoColor {
3887
3887
  @media (max-width:768px) {
3888
3888
 
3889
3889
  #actosAdministrativos .contenido {
3890
- width: 74%;
3890
+ width: 70%;
3891
3891
  }
3892
3892
 
3893
3893
 
@@ -3904,8 +3904,8 @@ td.GrupoColor {
3904
3904
  }
3905
3905
 
3906
3906
 
3907
- .sombra-caja.icono-naranja{
3908
- width: 60% !important;
3907
+ .sombra-caja.icono-naranja.ng-star-inserted {
3908
+ width: 40% !important;
3909
3909
  }
3910
3910
 
3911
3911
  :host ::ng-deep .responsivetablet tr {
@@ -3916,90 +3916,6 @@ td.GrupoColor {
3916
3916
  margin-top: 40px;
3917
3917
  }
3918
3918
 
3919
- .p-tree .p-tree-container .p-treenode .p-treenode-content {
3920
- font-size: 0.7rem;
3921
- }
3922
-
3923
- app-popup-seleccionar-derogar .flex.justify-content-between.ng-star-inserted {
3924
- display: table !important;
3925
- width: 100%;
3926
- margin-top: 10px;
3927
- }
3928
-
3929
- app-popup-seleccionar-derogar .flex.justify-content-between button{
3930
- margin-top: 10px;
3931
- }
3932
-
3933
- #actosAdministrativos .p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler {
3934
- margin: 0;
3935
- }
3936
-
3937
- #actosAdministrativos svg.p-icon.p-tree-toggler-icon {
3938
- width: 9px;
3939
- padding: 0;
3940
- }
3941
-
3942
- }
3943
-
3944
- @media(max-width:600px){
3945
- .lista-tipo-actos {
3946
- width: 100%;
3947
- position: inherit;
3948
- box-shadow: 0px 0px 14px #bfbfbf69;
3949
- margin-bottom: 30px;
3950
- }
3951
-
3952
- .contenedor-titulo-actos {
3953
- padding: 0% 4% 0%;
3954
- }
3955
-
3956
- #actosAdministrativos .contenido {
3957
- width: 100%;
3958
- }
3959
-
3960
- .sombra-caja.icono-naranja {
3961
- width: 100% !important;
3962
- height: 25vh !important;
3963
- margin-bottom: 20px;
3964
- }
3965
-
3966
- .contenedor-titulo-actos img {
3967
- width: 3.5rem;
3968
- }
3969
-
3970
- .flex.ResponsiveaAjuste {
3971
- display: table !important;
3972
- width: 100%;
3973
- }
3974
-
3975
- .card.pl-4.pr-3.pt-3.pb-3.mb-3{
3976
- width: 100 !important;
3977
- }
3978
- }
3979
-
3980
- @media (max-width:425px){
3981
- .sombra-caja.icono-naranja {
3982
- width: 100% !important;
3983
- height: 25vh !important;
3984
- }
3985
-
3986
- #actosAdministrativos .contenedor-icono-acciones-principal .glyphicons:before {
3987
- padding: 4px 0px;
3988
- margin-left: 4px;
3989
- }
3990
-
3991
- #actosAdministrativos .boton-accion-principal .p-button-label {
3992
- margin-left: 4px;
3993
- }
3994
-
3995
- .card.pl-4.pr-3.pt-3.pb-3.mb-3 h1 {
3996
- font-size: 0.8rem !important;
3997
- }
3998
-
3999
- .contenedor-icono-acciones-principal {
4000
- font-size: 0.7rem;
4001
- display: none;
4002
- }
4003
3919
  }
4004
3920
 
4005
3921
 
@@ -4798,12 +4798,6 @@ p-dropdown.ng-dirty.ng-invalid>.p-dropdown {
4798
4798
  }
4799
4799
 
4800
4800
 
4801
- @media (max-width:1440px){
4802
- #actosAdministrativos .contenido {
4803
- width: 77%;
4804
- }
4805
- }
4806
-
4807
4801
  @media (max-width:1300px) {
4808
4802
 
4809
4803
  .spanIzquierda {
@@ -4868,7 +4862,7 @@ p-dropdown.ng-dirty.ng-invalid>.p-dropdown {
4868
4862
  @media (max-width:768px) {
4869
4863
 
4870
4864
  #actosAdministrativos .contenido {
4871
- width: 74%;
4865
+ width: 70%;
4872
4866
  }
4873
4867
 
4874
4868
 
@@ -4885,8 +4879,8 @@ p-dropdown.ng-dirty.ng-invalid>.p-dropdown {
4885
4879
  }
4886
4880
 
4887
4881
 
4888
- .sombra-caja.icono-naranja{
4889
- width: 60% !important;
4882
+ .sombra-caja.icono-naranja.ng-star-inserted {
4883
+ width: 40% !important;
4890
4884
  }
4891
4885
 
4892
4886
  :host ::ng-deep .responsivetablet tr {
@@ -4897,96 +4891,56 @@ p-dropdown.ng-dirty.ng-invalid>.p-dropdown {
4897
4891
  margin-top: 40px;
4898
4892
  }
4899
4893
 
4900
- .p-tree .p-tree-container .p-treenode .p-treenode-content {
4901
- font-size: 0.7rem;
4902
- }
4894
+ }
4903
4895
 
4904
- app-popup-seleccionar-derogar .flex.justify-content-between.ng-star-inserted {
4905
- display: table !important;
4906
- width: 100%;
4907
- margin-top: 10px;
4908
- }
4909
4896
 
4910
- app-popup-seleccionar-derogar .flex.justify-content-between button{
4911
- margin-top: 10px;
4912
- }
4897
+ @media (max-width:768px) {
4913
4898
 
4914
- #actosAdministrativos .p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler {
4915
- margin: 0;
4899
+ #actosAdministrativos .contenido {
4900
+ width: 70%;
4916
4901
  }
4917
4902
 
4918
- #actosAdministrativos svg.p-icon.p-tree-toggler-icon {
4919
- width: 9px;
4920
- padding: 0;
4921
- }
4922
-
4923
- }
4924
-
4925
- @media(max-width:600px){
4926
- .lista-tipo-actos {
4927
- width: 100%;
4928
- position: inherit;
4929
- box-shadow: 5px 6px 15px rgba(3, 3, 3, 0.6784313725);
4930
- margin-bottom: 30px;
4931
- }
4932
4903
 
4933
- .contenedor-titulo-actos {
4934
- padding: 0% 4% 0%;
4935
- }
4904
+ #actosAdministrativos .empleado h1 {
4905
+ margin-top: 4%;
4906
+ }
4936
4907
 
4937
- #actosAdministrativos .contenido {
4938
- width: 100%;
4939
- }
4908
+ #actosAdministrativos p.chip {
4909
+ font-size: 0.65rem;
4910
+ }
4940
4911
 
4941
- .sombra-caja.icono-naranja {
4942
- width: 100% !important;
4943
- height: 25vh !important;
4944
- margin-bottom: 20px;
4945
- }
4912
+ .lista-tipo-actos {
4913
+ width: 28%;
4914
+ }
4946
4915
 
4947
- .contenedor-titulo-actos img {
4948
- width: 3.5rem;
4949
- }
4950
4916
 
4951
- .flex.ResponsiveaAjuste {
4952
- display: table !important;
4953
- width: 100%;
4917
+ .sombra-caja.icono-naranja.ng-star-inserted {
4918
+ width: 40% !important;
4954
4919
  }
4955
4920
 
4956
- .card.pl-4.pr-3.pt-3.pb-3.mb-3{
4957
- width: 100% !important;
4921
+ :host ::ng-deep .responsivetablet tr {
4922
+ display: flex;
4958
4923
  }
4959
- }
4960
-
4961
- @media (max-width:425px){
4962
- .sombra-caja.icono-naranja {
4963
- width: 100% !important;
4964
- height: 25vh !important;
4965
- }
4966
4924
 
4967
- #actosAdministrativos .contenedor-icono-acciones-principal .glyphicons:before {
4968
- padding: 4px 0px;
4969
- margin-left: 4px;
4925
+ :host ::ng-deep .responsivetablet .p-datatable {
4926
+ margin-top: 40px;
4970
4927
  }
4971
4928
 
4972
- #actosAdministrativos .boton-accion-principal .p-button-label {
4973
- margin-left: 4px;
4974
- }
4929
+ #actosAdministrativos .contenido {
4930
+ width: 70%;
4931
+ }
4975
4932
 
4976
- .card.pl-4.pr-3.pt-3.pb-3.mb-3 h1 {
4977
- font-size: 0.8rem !important;
4978
- }
4933
+ .sombra-caja.icono-naranja {
4934
+ width: 50% !important;
4935
+ }
4979
4936
 
4980
- .contenedor-icono-acciones-principal {
4981
- font-size: 0.7rem;
4982
- display: none;
4983
- }
4984
4937
  }
4985
4938
 
4986
4939
 
4987
4940
 
4988
4941
 
4989
4942
 
4943
+
4990
4944
  /******************************************************************************
4991
4945
  * planta personal styles
4992
4946
  *****************************************************************************/
@@ -5191,6 +5145,9 @@ p-dropdown.ng-dirty.ng-invalid>.p-dropdown {
5191
5145
  min-width: 60px;
5192
5146
  }
5193
5147
 
5148
+ .p-tree-wrapper.ng-star-inserted {
5149
+ max-height: 320px !important;
5150
+ }
5194
5151
 
5195
5152
  .nav-planta-personal .p-panel .p-panel-content {
5196
5153
  min-height: 90px;
@@ -5273,7 +5230,7 @@ font-size:0.72rem;
5273
5230
  position: initial;
5274
5231
  order: 1;
5275
5232
  height: auto;
5276
- box-shadow: 5px 6px 15px rgba(3, 3, 3, 0.6784313725);
5233
+ box-shadow: 0px 0px 2px var(--color-200);
5277
5234
  }
5278
5235
 
5279
5236