Skip to content

Commit

Permalink
Removed internal id from OFC.comments, as we are stroing the ids in O…
Browse files Browse the repository at this point in the history
…FC table.
  • Loading branch information
dixitdeepak committed Jul 25, 2024
1 parent 35e9aea commit 0c6e72a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions service/co/hotwax/order/routing/OrderRoutingServices.xml
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@
brokeredItemsSeqIds = suggestedFulfillmentLocations.orderItemSeqId;
suggestedFacilityIds.each { facilityId->
def facilityItems = suggestedFulfillmentLocations.collect()
comments = "${orderRoutingGroup.groupName} [${orderRoutingGroup.routingGroupId}] : Inventory found at single location for ${routingRule.ruleName} [${routingRule.routingRuleId}]"
comments = "${orderRoutingGroup.groupName} : Inventory found at single location for ${routingRule.ruleName}"
filterMapList(facilityItems, ["facilityId":facilityId], false)
def items = facilityItems.collect { [orderItemSeqId: it.orderItemSeqId] }
facilityAllocation.add([facilityId:facilityId, items: items, comments: comments, routingRule: routingRuleName, changeReasonEnumId: changeReasonEnumId,
Expand All @@ -467,7 +467,7 @@
changeReasonEnumId = "UNFILLABLE";
}
if (suggestedFulfillmentLocations) {
comments = "${orderRoutingGroup.groupName} [${orderRoutingGroup.routingGroupId}] : Inventory not found for ${routingRule.ruleName} [${routingRule.routingRuleId}]."
comments = "${orderRoutingGroup.groupName}: Inventory not found for ${routingRule.ruleName}."
}
// If unfillable items are found, check for actions.
if (actionMap.get('ORA_MV_TO_QUEUE') != null) {
Expand Down

0 comments on commit 0c6e72a

Please sign in to comment.