softdinlibreriajs 12.0.22 → 12.0.24
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 +2 -2
- package/src/EnumTipoNovedad.js +0 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "softdinlibreriajs",
|
|
3
|
-
"version": "12.0.
|
|
3
|
+
"version": "12.0.24",
|
|
4
4
|
"description": "Libreria Softdin",
|
|
5
5
|
"main": "src/",
|
|
6
6
|
"scripts": {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
},
|
|
21
21
|
"homepage": "https://github.com/SoftdinNomina/libreriaSoftdinJS#readme",
|
|
22
22
|
|
|
23
|
-
"_comments": "comando para ejecutar las veriosnes despues debe cambiar la VERSION
|
|
23
|
+
"_comments": "comando para ejecutar las veriosnes despues debe cambiar la VERSION 12.0.24 por la que sigue despues ejecutar este comando npm publish"
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
|
package/src/EnumTipoNovedad.js
CHANGED
|
@@ -6,8 +6,6 @@ class EnumTipoNovedad {
|
|
|
6
6
|
static PROV_SEGSOC = 5;
|
|
7
7
|
static PLANILLA_UNICA = 6;
|
|
8
8
|
static LIQUIDACION = 7;
|
|
9
|
-
static CAMBIOS_V = 8;
|
|
10
|
-
static CAMBIOS_C = 9;
|
|
11
9
|
static AGRUPAR = 10;
|
|
12
10
|
static FORMULA = 11;
|
|
13
11
|
|
|
@@ -19,8 +17,6 @@ class EnumTipoNovedad {
|
|
|
19
17
|
{ id: EnumTipoNovedad.PROV_SEGSOC, code: 'PROV_SEGSOC', description: 'Provisión Seguridad Social' },
|
|
20
18
|
{ id: EnumTipoNovedad.PLANILLA_UNICA, code: 'PLANILLA_UNICA', description: 'Planilla Única' },
|
|
21
19
|
{ id: EnumTipoNovedad.LIQUIDACION, code: 'LIQUIDACION', description: 'Liquidación' },
|
|
22
|
-
{ id: EnumTipoNovedad.CAMBIOS_V, code: 'CAMBIOS_V', description: 'Cambios Vinculación' },
|
|
23
|
-
{ id: EnumTipoNovedad.CAMBIOS_C, code: 'CAMBIOS_C', description: 'Cambios Contratación' },
|
|
24
20
|
{ id: EnumTipoNovedad.AGRUPAR, code: 'AGRUPAR', description: 'Agrupar' },
|
|
25
21
|
{ id: EnumTipoNovedad.FORMULA, code: 'FORMULA', description: 'Fórmula' }
|
|
26
22
|
];
|