sigesp 0.9.73-20231011 → 0.9.75-20231012

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.
@@ -504,6 +504,11 @@ export interface ICargoOrganigrama {
504
504
  nivel?: string;
505
505
  codcar?: string;
506
506
  descar?: string;
507
+ codcencos?: string;
508
+ denominacion?: string;
509
+ coduniadm?: string;
510
+ denuniadm?: string;
511
+ codigo_estructura?: string;
507
512
  }
508
513
  export interface ICargoNomina {
509
514
  id_empresa: string;
@@ -47,6 +47,11 @@ export declare class MCargoEstructuraOrganizativa extends MBasicModel {
47
47
  idPersonal: number;
48
48
  codigoEstructuraOrganizativa: string;
49
49
  denominacionEstructuraOrganizativa: string;
50
+ cogigoUnidadOrganizativa: string;
51
+ denominacionUnidadOrganizativa: string;
52
+ codigoEstructuraPresupuestaria: string;
53
+ codigoCentroCosto: string;
54
+ dnominacionCentroCosto: string;
50
55
  nivel: number;
51
56
  constructor(e?: ICargoOrganigrama);
52
57
  dataInterface(): ICargoOrganigrama;
@@ -807,6 +807,13 @@ export declare class SigespService {
807
807
  * @author Dimaly Crespo
808
808
  */
809
809
  getHojaTiempo(tipo: string, idPersonal?: number, idNomina?: number): Observable<any>;
810
+ /**
811
+ * @description Valida si la fecha esta dentro del periodo fiscal y el mes esta abierto o cerrado
812
+ * @return Observable<IResponse>
813
+ * @author Dimaly Crespo
814
+ * @author 11-10-2023
815
+ */
816
+ getValidarPeriodo(fecha: string, periodoFiscal: string): Observable<any>;
810
817
  userHasRights(column: 'administrador' | 'insertar' | 'actualizar' | 'consultar' | 'eliminar' | 'anular' | 'descargar' | 'ejecutar__procesar_' | 'imprimir' | 'enviar__correo_' | 'visible'): Observable<IResponse>;
811
818
  /**
812
819
  * @description Retorna los headers para hacer las peticiones
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigesp",
3
- "version": "0.9.73-20231011",
3
+ "version": "0.9.75-20231012",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },