gilPts commented on code in PR #517:
URL: https://github.com/apache/ofbiz-framework/pull/517#discussion_r1147814844


##########
applications/product/groovyScripts/facility/shipment/PrintPickSheets.groovy:
##########
@@ -60,16 +59,18 @@ if (toPrintOrders) {
                     orderMap.orderId = orderId
                     orderMap.orderDate = orderHeader.orderDate
                     billingOrderContactMechs = []
-                    billingOrderContactMechs = 
from("OrderContactMech").where("orderId", orderId, "contactMechPurposeTypeId", 
"BILLING_LOCATION").queryList()
+                    billingOrderContactMechs = from('OrderContactMech')
+                            .where('orderId', orderId, 
'contactMechPurposeTypeId', 'BILLING_LOCATION').queryList()
                     if (billingOrderContactMechs.size() > 0) {
                         billingContactMechId = 
EntityUtil.getFirst(billingOrderContactMechs).contactMechId
-                        billingAddress = 
from("PostalAddress").where("contactMechId", billingContactMechId).queryOne()
+                        billingAddress = 
from('PostalAddress').where('contactMechId', billingContactMechId).queryOne()
                     }
-                    shippingContactMechId = 
from("OrderContactMech").where("orderId", orderId, "contactMechPurposeTypeId", 
"SHIPPING_LOCATION").queryFirst().contactMechId
-                    shippingAddress = 
from("PostalAddress").where("contactMechId", shippingContactMechId).queryOne()
+                    shippingContactMechId = from('OrderContactMech')
+                            .where('orderId', orderId, 
'contactMechPurposeTypeId', 'SHIPPING_LOCATION').queryFirst().contactMechId
+                    shippingAddress = 
from('PostalAddress').where('contactMechId', shippingContactMechId).queryOne()
                     orderItemShipGroups.each { orderItemShipGroup ->
                         if (orderItemShipGroup.orderId == orderId) {
-                            orderMap.shipmentMethodType = 
EntityUtil.getFirst(orderItemShipGroup.getRelated("ShipmentMethodType", null, 
null, false)).description
+                            orderMap.shipmentMethodType = 
orderItemShipGroup.getRelated('ShipmentMethodType', null, null, 
false)[0]?.description

Review Comment:
   It was one equivalent way of writing it to respect the line length rule.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@ofbiz.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to