From 584322819f9cee6a3f11ec3942da0de9216c2eca Mon Sep 17 00:00:00 2001 From: Allan Carr Date: Tue, 9 May 2023 16:51:55 -0700 Subject: [PATCH] IO-2265 Autohouse Extract Remove Customer Info --- server/data/autohouse.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/server/data/autohouse.js b/server/data/autohouse.js index dab3581cb..ca6fae6d9 100644 --- a/server/data/autohouse.js +++ b/server/data/autohouse.js @@ -265,20 +265,20 @@ const CreateRepairOrderTag = (job, errorCallback) => { }${job.est_ct_fn ? job.est_ct_fn : ""}`, }, CustomerInformation: { - FirstName: job.ownr_fn || "", - LastName: job.ownr_ln || "", - Street: job.ownr_addr1 || "", - City: job.ownr_city || "", - State: job.ownr_st || "", + FirstName: "", + LastName: "", + Street: "", + City: "", + State: "", Zip: (job.ownr_zip && job.ownr_zip.substring(0, 3)) || "", - Phone1: job.ownr_ph1 || "", + Phone1: "", Phone2: null, Phone2Extension: null, Phone3: null, Phone3Extension: null, FileComments: null, Source: null, - Email: job.ownr_ea || "", + Email: "", RetWhsl: null, Cat: null, InsuredorClaimantFlag: null,