diff --git a/server/accounting/pbs/pbs-job-export.js b/server/accounting/pbs/pbs-job-export.js index 4c40682db..feb3dc064 100644 --- a/server/accounting/pbs/pbs-job-export.js +++ b/server/accounting/pbs/pbs-job-export.js @@ -104,14 +104,13 @@ exports.PbsSelectedCustomer = async function PbsSelectedCustomer(socket, selecte CdkBase.createLogEvent( socket, "INFO", - `Contact and Vehicle updates disabled. Skipping to accounting data insert.` + `Contact and Vehicle updates disabled. Querying data and skipping to accounting data insert.` ); //Must query for records to insert $0 RO. if (!socket.ownerRef) { const ownerRef = (await QueryCustomerBycodeFromDms(socket, selectedCustomerId))?.[0]; socket.ownerRef = ownerRef; } - CdkBase.createLogEvent(socket, "INFO", `Upserting vehicle information to DMS for ${socket.JobData.v_vin}`); const vehicleRef = await GetVehicleData(socket, socket.ownerRef?.ReferenceId || socket.selectedCustomerId); socket.vehicleRef = vehicleRef; }