From 95b76cb0eec160b0abacab24218f0a547bc57c87 Mon Sep 17 00:00:00 2001 From: Daniel Hurtado Date: Wed, 15 May 2024 00:12:43 -0600 Subject: [PATCH] fix(date): constitution date --- src/core/app/services/company.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/app/services/company.service.ts b/src/core/app/services/company.service.ts index f4dfb86e..89c1de29 100644 --- a/src/core/app/services/company.service.ts +++ b/src/core/app/services/company.service.ts @@ -70,7 +70,7 @@ async function update(body: UpdateCompanyBody): Promise { phoneNumber: body.phoneNumber ?? company.phoneNumber, landlinePhone: body.landlinePhone ?? company.landlinePhone, archived: body.archived, - constitutionDate: body.constitutionDate ?? company.constitutionDate, + constitutionDate: body.constitutionDate, rfc: body.rfc ?? company.rfc, taxResidence: body.taxResidence ?? company.taxResidence, idCompanyDirectContact: company.idCompanyDirectContact,