This is an automated email from the ASF dual-hosted git repository.
pawan pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
The following commit(s) were added to refs/heads/trunk by this push:
new 4739019 Fixed: Error in Quick Receive Purchase Order process.
(OFBIZ-11911) (#219)
4739019 is described below
commit 4739019732851dd3ca48847c1155845fd667ca12
Author: lodhiravi <[email protected]>
AuthorDate: Sat Jul 25 12:11:12 2020 +0530
Fixed: Error in Quick Receive Purchase Order process. (OFBIZ-11911) (#219)
Corrected typo
---
applications/product/groovyScripts/shipment/ShipmentServices.groovy | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/applications/product/groovyScripts/shipment/ShipmentServices.groovy
b/applications/product/groovyScripts/shipment/ShipmentServices.groovy
index 5501374..93b0db0 100644
--- a/applications/product/groovyScripts/shipment/ShipmentServices.groovy
+++ b/applications/product/groovyScripts/shipment/ShipmentServices.groovy
@@ -1004,7 +1004,7 @@ def createShipmentForFacilityAndShipGroup(GenericValue
orderHeader, List orderIt
shipmentContext.statusId = "SHIPMENT_INPUT"
} else {
shipmentContext.destinationFacilityId = facility.facilityId
- shipmentContext.statusId = "PRUCH_SHIP_CREATED"
+ shipmentContext.statusId = "PURCH_SHIP_CREATED"
}
Map serviceResult = run service: "createShipment", with:
shipmentContext
GenericValue shipment = from("Shipment").where(shipmentId:
serviceResult.shipmentId).queryOne()
@@ -1029,7 +1029,7 @@ def createShipmentForFacilityAndShipGroup(GenericValue
orderHeader, List orderIt
run service: "issueOrderItemToShipment", with:
[shipmentId: shipment.shipmentId,
orderId:
item.orderId,
orderItemSeqId: item.orderItemSeqId,
-
shipGroupSeqId: item.shipgroupSeqId,
+
shipGroupSeqId: item.shipGroupSeqId,
quantity:
item.quantity]
}
}