This is an automated email from the ASF dual-hosted git repository. jleroux pushed a commit to branch release22.01 in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
The following commit(s) were added to refs/heads/release22.01 by this push: new 0630cd679d Fixed: ShipmentServices.groovy has a typo in checkCanChangeShipmentStatusDelivered (OFBIZ-12718) 0630cd679d is described below commit 0630cd679dc380466dc993ef23318d018285c786 Author: Jacques Le Roux <jacques.le.r...@les7arts.com> AuthorDate: Fri Dec 9 19:56:23 2022 +0100 Fixed: ShipmentServices.groovy has a typo in checkCanChangeShipmentStatusDelivered (OFBIZ-12718) In line 732 it has parameters.fromStatusId = "SHIPMENT_DEIVERED" Thanks: Pierre Smits for report --- 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 4634415c2d..37ca3598d9 100644 --- a/applications/product/groovyScripts/shipment/ShipmentServices.groovy +++ b/applications/product/groovyScripts/shipment/ShipmentServices.groovy @@ -729,7 +729,7 @@ def checkCanChangeShipmentStatusShipped() { * @return */ def checkCanChangeShipmentStatusDelivered() { - parameters.fromStatusId = "SHIPMENT_DEIVERED" + parameters.fromStatusId = "SHIPMENT_DELIVERED" return checkCanChangeShipmentStatusGeneral(parameters) } @@ -1135,7 +1135,7 @@ def createOrderShipmentPlan () { } /** - * + * * @return */ def issueSerializedInvToShipmentPackageAndSetTracking() {