sigesp 1.1.35-20241216 → 1.1.37-20241221
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/core/interfaces/ConfigurationSPG.mjs +1 -1
- package/esm2020/lib/core/models/SPG/configurationSPG.model.mjs +6 -2
- package/esm2020/lib/sigesp.service.mjs +2 -2
- package/fesm2015/sigesp.mjs +6 -2
- package/fesm2015/sigesp.mjs.map +1 -1
- package/fesm2020/sigesp.mjs +6 -2
- package/fesm2020/sigesp.mjs.map +1 -1
- package/lib/core/interfaces/ConfigurationSPG.d.ts +3 -1
- package/lib/core/models/SPG/configurationSPG.model.d.ts +2 -0
- package/lib/sigesp.service.d.ts +1 -1
- package/package.json +1 -1
|
@@ -37,11 +37,13 @@ export interface IConfigurationSPG {
|
|
|
37
37
|
estmodape: string;
|
|
38
38
|
coduniadm?: string;
|
|
39
39
|
denuniadm?: string;
|
|
40
|
-
|
|
40
|
+
codcencos?: string;
|
|
41
41
|
dencencos?: string;
|
|
42
42
|
codigoftefin?: string;
|
|
43
43
|
denfuefin?: string;
|
|
44
44
|
editable?: string;
|
|
45
45
|
codigo?: string;
|
|
46
46
|
titulo?: string;
|
|
47
|
+
sc_cuenta?: string;
|
|
48
|
+
denominacion?: string;
|
|
47
49
|
}
|
|
@@ -39,6 +39,8 @@ export declare class MConfigurationSPG {
|
|
|
39
39
|
editable: boolean;
|
|
40
40
|
codigoEnterprise: string;
|
|
41
41
|
denominacionEnterprise: string;
|
|
42
|
+
cuentaContableDiferencial: string;
|
|
43
|
+
denominacionCuentaContableDiferencial: string;
|
|
42
44
|
constructor(configuration?: IConfigurationSPG);
|
|
43
45
|
dataInteface(): IConfigurationSPG;
|
|
44
46
|
}
|
package/lib/sigesp.service.d.ts
CHANGED
|
@@ -355,7 +355,7 @@ export declare class SigespService {
|
|
|
355
355
|
* @author Carlos Albornoz
|
|
356
356
|
* @params filtro: Indica bajo que parametros se va a filtrar el catalogo
|
|
357
357
|
*/
|
|
358
|
-
openCatalogoCuentasPresuspuesto(titulo: string,
|
|
358
|
+
openCatalogoCuentasPresuspuesto(titulo: string, idEnterprise: number, periodoFiscal: number, filtro?: filtroCuentasPresupuesto, ancho?: string): Promise<MCuentaPresupuesto>;
|
|
359
359
|
/**
|
|
360
360
|
* @description Abre el cátalogo de cuentas de la tabla "spi_cuentas"
|
|
361
361
|
* @returns Promise<MCuentaIngresos>
|