From 015f179acbbe67bdefa2164a444c9f6afc3bc746 Mon Sep 17 00:00:00 2001 From: stickler-ci Date: Mon, 15 Aug 2022 13:19:16 +0000 Subject: [PATCH] Fixing style errors. --- htdocs/bom/class/bom.class.php | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/htdocs/bom/class/bom.class.php b/htdocs/bom/class/bom.class.php index f468604d5ed..feb7385564f 100644 --- a/htdocs/bom/class/bom.class.php +++ b/htdocs/bom/class/bom.class.php @@ -514,7 +514,8 @@ class BOM extends CommonObject * @param $import_key * @return int */ - public function addLine($fk_product, $qty, $qty_frozen = 0, $disable_stock_change = 0, $efficiency = 1.0, $position = -1, $fk_bom_child = null, $import_key = null){ + public function addLine($fk_product, $qty, $qty_frozen = 0, $disable_stock_change = 0, $efficiency = 1.0, $position = -1, $fk_bom_child = null, $import_key = null) + { global $mysoc, $conf, $langs, $user; @@ -522,29 +523,29 @@ class BOM extends CommonObject $logtext .= ", fk_bom_child=$fk_bom_child, import_key=$import_key"; dol_syslog(get_class($this).$logtext, LOG_DEBUG); - if ($this->statut == self::STATUS_DRAFT){ + if ($this->statut == self::STATUS_DRAFT) { include_once DOL_DOCUMENT_ROOT.'/core/lib/price.lib.php'; // Clean parameters - if (empty($qty)){ + if (empty($qty)) { $qty = 0; } - if (empty($qty_frozen)){ + if (empty($qty_frozen)) { $qty_frozen = 0; } - if (empty($disable_stock_change)){ + if (empty($disable_stock_change)) { $disable_stock_change = 0; } - if (empty($efficiency)){ + if (empty($efficiency)) { $efficiency = 1.0; } - if (empty($fk_bom_child)){ + if (empty($fk_bom_child)) { $fk_bom_child = null; } - if (empty($import_key)){ + if (empty($import_key)) { $import_key = null; } - if (empty($position)){ + if (empty($position)) { $position = -1; } @@ -556,7 +557,7 @@ class BOM extends CommonObject // Rank to use $rankToUse = $position; - if ($rankToUse == -1){ + if ($rankToUse == -1) { $rangMax = $this->line_max(); $rankToUse = $rangMax + 1; } @@ -578,7 +579,7 @@ class BOM extends CommonObject $result = $this->line->create($user); - if ($result > 0){ + if ($result > 0) { $this->calculateCosts(); $this->db->commit(); return $this->line->id; @@ -588,12 +589,10 @@ class BOM extends CommonObject $this->db->rollback(); return -2; } - - } else{ + } else { dol_syslog(get_class($this)."::addLine status of BOM must be Draft to allow use of ->addLine()", LOG_ERR); return -3; } - } /**