birthdate null
This commit is contained in:
parent
0b9818955c
commit
d0d7c2d418
1 changed files with 12 additions and 12 deletions
|
|
@ -199,7 +199,7 @@ export class OrganizationDotnetController extends Controller {
|
||||||
dateStart: item.dateStart,
|
dateStart: item.dateStart,
|
||||||
govAgeAbsent: item.govAgeAbsent,
|
govAgeAbsent: item.govAgeAbsent,
|
||||||
govAgePlus: item.govAgePlus,
|
govAgePlus: item.govAgePlus,
|
||||||
birthDate: item.birthDate,
|
birthDate: item.birthDate ?? new Date(),
|
||||||
reasonSameDate: item.reasonSameDate,
|
reasonSameDate: item.reasonSameDate,
|
||||||
ethnicity: item.ethnicity,
|
ethnicity: item.ethnicity,
|
||||||
telephoneNumber: item.telephoneNumber,
|
telephoneNumber: item.telephoneNumber,
|
||||||
|
|
@ -495,7 +495,7 @@ export class OrganizationDotnetController extends Controller {
|
||||||
dateStart: profile.dateStart,
|
dateStart: profile.dateStart,
|
||||||
govAgeAbsent: profile.govAgeAbsent,
|
govAgeAbsent: profile.govAgeAbsent,
|
||||||
govAgePlus: profile.govAgePlus,
|
govAgePlus: profile.govAgePlus,
|
||||||
birthDate: profile.birthDate,
|
birthDate: profile.birthDate ?? new Date(),
|
||||||
reasonSameDate: profile.reasonSameDate,
|
reasonSameDate: profile.reasonSameDate,
|
||||||
telephoneNumber: profile.telephoneNumber,
|
telephoneNumber: profile.telephoneNumber,
|
||||||
nationality: profile.nationality,
|
nationality: profile.nationality,
|
||||||
|
|
@ -732,7 +732,7 @@ export class OrganizationDotnetController extends Controller {
|
||||||
dateStart: profile.dateStart,
|
dateStart: profile.dateStart,
|
||||||
govAgeAbsent: profile.govAgeAbsent,
|
govAgeAbsent: profile.govAgeAbsent,
|
||||||
govAgePlus: profile.govAgePlus,
|
govAgePlus: profile.govAgePlus,
|
||||||
birthDate: profile.birthDate,
|
birthDate: profile.birthDate ?? new Date(),
|
||||||
reasonSameDate: profile.reasonSameDate,
|
reasonSameDate: profile.reasonSameDate,
|
||||||
telephoneNumber: profile.telephoneNumber,
|
telephoneNumber: profile.telephoneNumber,
|
||||||
nationality: profile.nationality,
|
nationality: profile.nationality,
|
||||||
|
|
@ -1028,7 +1028,7 @@ export class OrganizationDotnetController extends Controller {
|
||||||
dateStart: profile.dateStart,
|
dateStart: profile.dateStart,
|
||||||
govAgeAbsent: profile.govAgeAbsent,
|
govAgeAbsent: profile.govAgeAbsent,
|
||||||
govAgePlus: profile.govAgePlus,
|
govAgePlus: profile.govAgePlus,
|
||||||
birthDate: profile.birthDate,
|
birthDate: profile.birthDate ?? new Date(),
|
||||||
reasonSameDate: profile.reasonSameDate,
|
reasonSameDate: profile.reasonSameDate,
|
||||||
telephoneNumber: profile.telephoneNumber,
|
telephoneNumber: profile.telephoneNumber,
|
||||||
nationality: profile.nationality,
|
nationality: profile.nationality,
|
||||||
|
|
@ -1295,7 +1295,7 @@ export class OrganizationDotnetController extends Controller {
|
||||||
dateStart: profile.dateStart,
|
dateStart: profile.dateStart,
|
||||||
govAgeAbsent: profile.govAgeAbsent,
|
govAgeAbsent: profile.govAgeAbsent,
|
||||||
govAgePlus: profile.govAgePlus,
|
govAgePlus: profile.govAgePlus,
|
||||||
birthDate: profile.birthDate,
|
birthDate: profile.birthDate ?? new Date(),
|
||||||
reasonSameDate: profile.reasonSameDate,
|
reasonSameDate: profile.reasonSameDate,
|
||||||
telephoneNumber: profile.telephoneNumber,
|
telephoneNumber: profile.telephoneNumber,
|
||||||
nationality: profile.nationality,
|
nationality: profile.nationality,
|
||||||
|
|
@ -1621,7 +1621,7 @@ export class OrganizationDotnetController extends Controller {
|
||||||
dateStart: profile.dateStart,
|
dateStart: profile.dateStart,
|
||||||
govAgeAbsent: profile.govAgeAbsent,
|
govAgeAbsent: profile.govAgeAbsent,
|
||||||
govAgePlus: profile.govAgePlus,
|
govAgePlus: profile.govAgePlus,
|
||||||
birthDate: profile.birthDate,
|
birthDate: profile.birthDate ?? new Date(),
|
||||||
reasonSameDate: profile.reasonSameDate,
|
reasonSameDate: profile.reasonSameDate,
|
||||||
telephoneNumber: profile.telephoneNumber,
|
telephoneNumber: profile.telephoneNumber,
|
||||||
nationality: profile.nationality,
|
nationality: profile.nationality,
|
||||||
|
|
@ -1888,7 +1888,7 @@ export class OrganizationDotnetController extends Controller {
|
||||||
dateStart: profile.dateStart,
|
dateStart: profile.dateStart,
|
||||||
govAgeAbsent: profile.govAgeAbsent,
|
govAgeAbsent: profile.govAgeAbsent,
|
||||||
govAgePlus: profile.govAgePlus,
|
govAgePlus: profile.govAgePlus,
|
||||||
birthDate: profile.birthDate,
|
birthDate: profile.birthDate ?? new Date(),
|
||||||
reasonSameDate: profile.reasonSameDate,
|
reasonSameDate: profile.reasonSameDate,
|
||||||
telephoneNumber: profile.telephoneNumber,
|
telephoneNumber: profile.telephoneNumber,
|
||||||
nationality: profile.nationality,
|
nationality: profile.nationality,
|
||||||
|
|
@ -2072,7 +2072,7 @@ export class OrganizationDotnetController extends Controller {
|
||||||
dateStart: profile.dateStart,
|
dateStart: profile.dateStart,
|
||||||
govAgeAbsent: profile.govAgeAbsent,
|
govAgeAbsent: profile.govAgeAbsent,
|
||||||
govAgePlus: profile.govAgePlus,
|
govAgePlus: profile.govAgePlus,
|
||||||
birthDate: profile.birthDate,
|
birthDate: profile.birthDate ?? new Date(),
|
||||||
reasonSameDate: profile.reasonSameDate,
|
reasonSameDate: profile.reasonSameDate,
|
||||||
telephoneNumber: profile.telephoneNumber,
|
telephoneNumber: profile.telephoneNumber,
|
||||||
nationality: profile.nationality,
|
nationality: profile.nationality,
|
||||||
|
|
@ -2209,7 +2209,7 @@ export class OrganizationDotnetController extends Controller {
|
||||||
dateStart: profile.dateStart,
|
dateStart: profile.dateStart,
|
||||||
govAgeAbsent: profile.govAgeAbsent,
|
govAgeAbsent: profile.govAgeAbsent,
|
||||||
govAgePlus: profile.govAgePlus,
|
govAgePlus: profile.govAgePlus,
|
||||||
birthDate: profile.birthDate,
|
birthDate: profile.birthDate ?? new Date(),
|
||||||
reasonSameDate: profile.reasonSameDate,
|
reasonSameDate: profile.reasonSameDate,
|
||||||
telephoneNumber: profile.telephoneNumber,
|
telephoneNumber: profile.telephoneNumber,
|
||||||
nationality: profile.nationality,
|
nationality: profile.nationality,
|
||||||
|
|
@ -2316,7 +2316,7 @@ export class OrganizationDotnetController extends Controller {
|
||||||
firstName: profile.firstName,
|
firstName: profile.firstName,
|
||||||
lastName: profile.lastName,
|
lastName: profile.lastName,
|
||||||
citizenId: profile.citizenId,
|
citizenId: profile.citizenId,
|
||||||
birthDate: profile.birthDate,
|
birthDate: profile.birthDate ?? new Date(),
|
||||||
position: profile.position,
|
position: profile.position,
|
||||||
rootId: root == null ? null : root.id,
|
rootId: root == null ? null : root.id,
|
||||||
root: root == null ? null : root.orgRootName,
|
root: root == null ? null : root.orgRootName,
|
||||||
|
|
@ -2417,7 +2417,7 @@ export class OrganizationDotnetController extends Controller {
|
||||||
firstName: profile.firstName,
|
firstName: profile.firstName,
|
||||||
lastName: profile.lastName,
|
lastName: profile.lastName,
|
||||||
citizenId: profile.citizenId,
|
citizenId: profile.citizenId,
|
||||||
birthDate: profile.birthDate,
|
birthDate: profile.birthDate ?? new Date(),
|
||||||
position: profile.position,
|
position: profile.position,
|
||||||
posMaster: posMaster == null ? null : posMaster.posMasterNo,
|
posMaster: posMaster == null ? null : posMaster.posMasterNo,
|
||||||
posMasterNo: posMaster == null ? null : posMaster.posMasterNo,
|
posMasterNo: posMaster == null ? null : posMaster.posMasterNo,
|
||||||
|
|
@ -2589,7 +2589,7 @@ export class OrganizationDotnetController extends Controller {
|
||||||
dateStart: item.dateStart,
|
dateStart: item.dateStart,
|
||||||
govAgeAbsent: item.govAgeAbsent,
|
govAgeAbsent: item.govAgeAbsent,
|
||||||
govAgePlus: item.govAgePlus,
|
govAgePlus: item.govAgePlus,
|
||||||
birthDate: item.birthDate,
|
birthDate: item.birthDate ?? new Date(),
|
||||||
reasonSameDate: item.reasonSameDate,
|
reasonSameDate: item.reasonSameDate,
|
||||||
ethnicity: item.ethnicity,
|
ethnicity: item.ethnicity,
|
||||||
telephoneNumber: item.telephoneNumber,
|
telephoneNumber: item.telephoneNumber,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue