Merge branch 'develop' into feature/CSR-1392

This commit is contained in:
CarlNation 2023-10-30 08:51:43 -04:00
commit 99b42773cb

View file

@ -2656,9 +2656,7 @@ function syncLineItemIds(lineItemsWithoutIds, lineItemsWithIds) {
return;
}
lineItemsWithoutIds.forEach((noId) => {
debugger; // eslint-disable-line no-debugger
lineItemsWithIds.forEach((withId) => {
debugger; // eslint-disable-line no-debugger
if (noId.partNumber === withId.partNumber && noId.partType === withId.partType) {
noId.id = withId.id;
}