sigesp 0.8.63-220120 → 0.8.67-220127

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.
@@ -240,6 +240,7 @@ export interface IPersonalNomina {
240
240
  horadi2: string;
241
241
  estmpppe: string;
242
242
  apeper: string;
243
+ racnom?: string;
243
244
  }
244
245
  export interface IConstanteNomina {
245
246
  id_empresa: string;
@@ -13,6 +13,7 @@ export interface IUsuario {
13
13
  procede?: string;
14
14
  codsis?: string;
15
15
  nomina?: string;
16
+ periodo?: string;
16
17
  }
17
18
  export interface IConexionDB {
18
19
  baseDeDatos: string;
@@ -78,10 +78,10 @@ export declare class MPersonalNomina extends MBasicModel {
78
78
  horaAdicional2: number;
79
79
  estatusMPPPE: boolean;
80
80
  montoSaldoGrado: number;
81
- salarioPersonal: number;
82
81
  apellidoPersonal: string;
83
82
  denominacionEstatus: string;
84
83
  nombreCompleto: string;
84
+ nominaRac: number;
85
85
  constructor(e?: IPersonalNomina);
86
86
  dataInterface(): IPersonalNomina;
87
87
  }
@@ -10,6 +10,7 @@ export declare class MUsuario {
10
10
  procede?: string;
11
11
  codsis?: string;
12
12
  nomina?: number;
13
+ periodo?: number;
13
14
  private interface;
14
15
  constructor(user: IUsuario);
15
16
  getInterface(): IUsuario;
@@ -37,6 +37,7 @@ export declare class SigespService {
37
37
  URL: string;
38
38
  currentComponent: MComponent;
39
39
  userMenu: any;
40
+ ip_adress: string;
40
41
  constructor(http: HttpClient, dialog: MatDialog, toast: ToastrService);
41
42
  /**
42
43
  * @description Valida que selo se escriban guiones y 9
@@ -856,11 +857,23 @@ export declare class SigespService {
856
857
  */
857
858
  getResponsePerfilToolbar(stringbinario: string, position: number): boolean;
858
859
  /**
859
- * @description Obtiene el Ip del cliente
860
- * @return Json data
861
- * @author Ing. Wilmer Briceno
862
- */
860
+ * @description Obtiene el Ip del cliente
861
+ * @return Json data
862
+ * @author Ing. Wilmer Briceno
863
+ */
863
864
  getIPAddress(): Observable<Object>;
865
+ /**
866
+ * @description Obtiene el Ip del cliente
867
+ * @return Json data
868
+ * @author Ing. Wilmer Briceno
869
+ */
870
+ setIpAdress(): void;
871
+ /**
872
+ * @description Obtiene el Ip del cliente
873
+ * @return Json data
874
+ * @author Ing. Wilmer Briceno
875
+ */
876
+ getIpAdress(): void;
864
877
  }
865
878
  interface filtroCuentasPresupuesto {
866
879
  tipo?: 'E' | 'R';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigesp",
3
- "version": "0.8.63-220120",
3
+ "version": "0.8.67-220127",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },