feature/IO-3357-Reynolds-and-Reynolds-DMS-API-Integration - Checkpoint

This commit is contained in:
Dave
2025-10-14 14:55:10 -04:00
parent 6671db1724
commit e514cf8d6a
4 changed files with 13 additions and 10 deletions

View File

@@ -46,7 +46,7 @@ function stageFail(name, error) {
* @param {Object} options - { insertVehicleIfMissing: boolean }
* @returns {Promise<Object>} normalized result
*/
async function exportJobToRome(socket, job, bodyshopConfig, options = {}) {
async function exportJobToRR(socket, job, bodyshopConfig, options = {}) {
const { customer = {}, vehicle = {} } = job || {};
const { insertVehicleIfMissing = true } = options;
@@ -154,5 +154,5 @@ async function exportJobToRome(socket, job, bodyshopConfig, options = {}) {
}
module.exports = {
exportJobToRome
exportJobToRR
};