From 61a68fdb19a4b5f1303950f3ad20b94ad2e507f9 Mon Sep 17 00:00:00 2001 From: Bright Date: Thu, 16 May 2024 17:11:44 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B9=80=E0=B8=9E=E0=B8=B4=E0=B9=88=E0=B8=A1?= =?UTF-8?q?=E0=B8=9F=E0=B8=B4=E0=B8=A5=E0=B8=94=E0=B9=8C=20coupleCitizenId?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/controllers/ProfileFamilyCoupleController.ts | 3 +++ src/controllers/ProfileFamilyCoupleEmployeeController.ts | 3 +++ 2 files changed, 6 insertions(+) diff --git a/src/controllers/ProfileFamilyCoupleController.ts b/src/controllers/ProfileFamilyCoupleController.ts index ee2281f1..265ead62 100644 --- a/src/controllers/ProfileFamilyCoupleController.ts +++ b/src/controllers/ProfileFamilyCoupleController.ts @@ -119,6 +119,7 @@ export class ProfileFamilyCoupleController extends Controller { coupleLastName: y.coupleLastName, coupleLastNameOld: y.coupleLastNameOld, coupleCareer: y.coupleCareer, + coupleCitizenId: y.coupleCitizenId, coupleLive: y.coupleLive, relationship: y.relationship, profileFamilyCoupleId: y.profileFamilyCoupleId, @@ -156,6 +157,7 @@ export class ProfileFamilyCoupleController extends Controller { coupleLastName: familyCouple.coupleLastName, coupleLastNameOld: familyCouple.coupleLastNameOld, coupleCareer: familyCouple.coupleCareer, + coupleCitizenId: familyCouple.coupleCitizenId, coupleLive: familyCouple.coupleLive, relationship: familyCouple.relationship, createdUserId: req.user.sub, @@ -191,6 +193,7 @@ export class ProfileFamilyCoupleController extends Controller { history.coupleLastName = familyCouple.coupleLastName, history.coupleLastNameOld = familyCouple.coupleLastNameOld, history.coupleCareer = familyCouple.coupleCareer, + history.coupleCitizenId = familyCouple.coupleCitizenId, history.coupleLive = familyCouple.coupleLive, history.relationship = familyCouple.relationship, history.lastUpdateUserId = req.user.sub, diff --git a/src/controllers/ProfileFamilyCoupleEmployeeController.ts b/src/controllers/ProfileFamilyCoupleEmployeeController.ts index bf5f598a..b6c3c1e7 100644 --- a/src/controllers/ProfileFamilyCoupleEmployeeController.ts +++ b/src/controllers/ProfileFamilyCoupleEmployeeController.ts @@ -119,6 +119,7 @@ export class ProfileFamilyCoupleEmployeeController extends Controller { coupleLastName: y.coupleLastName, coupleLastNameOld: y.coupleLastNameOld, coupleCareer: y.coupleCareer, + coupleCitizenId: y.coupleCitizenId, coupleLive: y.coupleLive, relationship: y.relationship, profileFamilyCoupleId: y.profileFamilyCoupleId, @@ -156,6 +157,7 @@ export class ProfileFamilyCoupleEmployeeController extends Controller { coupleLastName: familyCouple.coupleLastName, coupleLastNameOld: familyCouple.coupleLastNameOld, coupleCareer: familyCouple.coupleCareer, + coupleCitizenId: familyCouple.coupleCitizenId, coupleLive: familyCouple.coupleLive, relationship: familyCouple.relationship, createdUserId: req.user.sub, @@ -191,6 +193,7 @@ export class ProfileFamilyCoupleEmployeeController extends Controller { history.coupleLastName = familyCouple.coupleLastName, history.coupleLastNameOld = familyCouple.coupleLastNameOld, history.coupleCareer = familyCouple.coupleCareer, + history.coupleCitizenId = familyCouple.coupleCitizenId, history.coupleLive = familyCouple.coupleLive, history.relationship = familyCouple.relationship, history.lastUpdateUserId = req.user.sub,