Added price_nne/_nbe to OrderProduct

This commit is contained in:
Frank Schubert
2021-11-25 21:17:51 +01:00
parent bc132f1da0
commit 62885816e8
4 changed files with 33 additions and 7 deletions

View File

@@ -544,6 +544,9 @@ class OrderController extends mfBaseController {
$product_data["description"] = $p["description"];
$product_data["price"] = Layout::commaToDot($p["price"]);
$product_data["price_setup"] = Layout::commaToDot($p["price_setup"]);
$product_data["price_nne"] = Layout::commaToDot($p["price_nne"]);
$product_data["price_nbe"] = Layout::commaToDot($p["price_nbe"]);
$product_data["billing_delay"] = ($p["billing_delay"]) ? $p["billing_delay"] : 0;
if($product_data["billing_delay"] > 6) {
$product_data["billing_delay"] = 6;