sigesp 0.9.69-20230914 → 0.9.71-20230915
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/bundles/sigesp.umd.js +3 -3
- package/bundles/sigesp.umd.js.map +1 -1
- package/bundles/sigesp.umd.min.js +1 -1
- package/bundles/sigesp.umd.min.js.map +1 -1
- package/esm2015/lib/core/models/SNO/MFamiliares.model.js +4 -4
- package/fesm2015/sigesp.js +3 -3
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/models/SNO/MFamiliares.model.d.ts +1 -1
- package/package.json +1 -1
package/bundles/sigesp.umd.js
CHANGED
|
@@ -11409,7 +11409,7 @@
|
|
|
11409
11409
|
_this.fechaNacimientoFamiliar = '';
|
|
11410
11410
|
_this.nexoFamiliar = 'C';
|
|
11411
11411
|
_this.denominacionNexo = '';
|
|
11412
|
-
_this.estatudiaFamiliar =
|
|
11412
|
+
_this.estatudiaFamiliar = false;
|
|
11413
11413
|
_this.HCFamiliar = false;
|
|
11414
11414
|
_this.HCMFamiliar = false;
|
|
11415
11415
|
_this.hijoEspecial = false;
|
|
@@ -11434,7 +11434,7 @@
|
|
|
11434
11434
|
_this.sexoFamiliar = e.sexfam;
|
|
11435
11435
|
_this.fechaNacimientoFamiliar = e.fecnacfam;
|
|
11436
11436
|
_this.nexoFamiliar = e.nexfam;
|
|
11437
|
-
_this.estatudiaFamiliar = e.estfam;
|
|
11437
|
+
_this.estatudiaFamiliar = e.estfam == '1' ? true : false;
|
|
11438
11438
|
_this.HCFamiliar = e.hcfam == '1' ? true : false;
|
|
11439
11439
|
_this.HCMFamiliar = e.hcmfam == '1' ? true : false;
|
|
11440
11440
|
_this.hijoEspecial = e.hijesp == '1' ? true : false;
|
|
@@ -11465,7 +11465,7 @@
|
|
|
11465
11465
|
sexfam: this.sexoFamiliar,
|
|
11466
11466
|
fecnacfam: this.fechaNacimientoFamiliar,
|
|
11467
11467
|
nexfam: this.nexoFamiliar,
|
|
11468
|
-
estfam: this.estatudiaFamiliar,
|
|
11468
|
+
estfam: this.estatudiaFamiliar ? '1' : '0',
|
|
11469
11469
|
hcfam: this.HCFamiliar ? '1' : '0',
|
|
11470
11470
|
hcmfam: this.HCMFamiliar ? '1' : '0',
|
|
11471
11471
|
hijesp: this.hijoEspecial ? '1' : '0',
|