This is an automated email from the ASF dual-hosted git repository.
jleroux pushed a commit to branch release17.12
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
The following commit(s) were added to refs/heads/release17.12 by this push:
new 2c7a414 Fixed: Error page shown when clicking on a product Id in the
purchase order page (OFBIZ-12229)
2c7a414 is described below
commit 2c7a414cc2d7d17d34e15a14f3ed39a5978dc951
Author: Jacques Le Roux <[email protected]>
AuthorDate: Sat May 1 18:56:41 2021 +0200
Fixed: Error page shown when clicking on a product Id in the purchase order
page (OFBIZ-12229)
There is no "basePrice" resulting from calculatePurchasePrice service
calling but
a simple "price".
This was put in with d04f777 commit and OFBIZ-11955
Thanks: Woyce Batkins for report
---
applications/order/groovyScripts/entry/catalog/ProductDetail.groovy | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/applications/order/groovyScripts/entry/catalog/ProductDetail.groovy
b/applications/order/groovyScripts/entry/catalog/ProductDetail.groovy
index 17bf430..be226c3 100644
--- a/applications/order/groovyScripts/entry/catalog/ProductDetail.groovy
+++ b/applications/order/groovyScripts/entry/catalog/ProductDetail.groovy
@@ -563,7 +563,7 @@ if (product) {
}
}
}
- variantInfoJS.append(" variantPrices['" + product.productId + "'] =
'" + UtilFormatOut.formatCurrency(priceMap.basePrice, currencyUomId, locale,
10) + "';\n")
+ variantInfoJS.append(" variantPrices['" + product.productId + "'] =
'" + UtilFormatOut.formatCurrency(priceMap.price, currencyUomId, locale, 10) +
"';\n")
variantInfoJS.append(" });\n</script>\n")
context.variantInfoJavaScript = variantInfoJS