Merged in feature/IO-3722-disable-contact-fortellis (pull request #3280)

Resolve inversed if statement.
This commit is contained in:
Patrick Fic
2026-05-27 19:54:30 +00:00

View File

@@ -135,7 +135,7 @@ async function FortellisJobExport({ socket, redisHelpers, txEnvelope, jobid }) {
}
}
CreateFortellisLogEvent(socket, "DEBUG", `{2.3} Querying the Customer using the name.`);
if (!JobData.bodyshop.cdk_configuration.disablecontact) {
if (JobData.bodyshop.cdk_configuration.disablecontact) {
//Just go straight to posting.
await FortellisSelectedCustomer({ socket, redisHelpers, selectedCustomerId: bypassCustomerId, jobid });
} else {