From f4d5503cd814ddd8e1ec74f033c6fd49c36a163d Mon Sep 17 00:00:00 2001 From: Pichi1966 <57623859+josett225@users.noreply.github.com> Date: Tue, 29 Oct 2024 02:53:00 +0100 Subject: [PATCH] Clean asset.class.php --- htdocs/asset/class/asset.class.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/htdocs/asset/class/asset.class.php b/htdocs/asset/class/asset.class.php index 1143f28b2605b..7b12d597c2c7b 100644 --- a/htdocs/asset/class/asset.class.php +++ b/htdocs/asset/class/asset.class.php @@ -1109,13 +1109,13 @@ public function calculationDepreciation() } } $depreciation_ht = (float) price2num($period_amount * $nb_days / $nb_days_in_month, 'MT'); - } else { // Annually, taking care for adjustments to shortened or extended periods (e.g., fiscal years of 9 or 15 months) + } else { // Annually, taking care for adjustments to shortened or extended periods (e.g., fiscal years of 9 or 15 months) $nb_days_real = num_between_day($begin_date, $end_date, 1); - if (($nb_days_real > 366) || (num_between_day($fiscal_period_start,$fiscal_period_end,1) < $nb_days_in_year)) { // FY Period changed + if (($nb_days_real > 366) || (num_between_day($fiscal_period_start, $fiscal_period_end, 1) < $nb_days_in_year)) { // FY Period changed $nb_days = $nb_days_real; } else { $nb_days = min($nb_days_in_year, $nb_days_real); - } + } $depreciation_ht = (double) price2num($period_amount * $nb_days / $nb_days_in_year, 'MT'); } @@ -1135,7 +1135,7 @@ public function calculationDepreciation() // Next fiscal period (+1 day/month/year) $fiscal_period_start = dol_time_plus_duree($fiscal_period_end, 1, 'd'); - $dates_fiscal_period = getCurrentPeriodOfFiscalYear($this->db, $conf, $fiscal_period_start,'gmt'); + $dates_fiscal_period = getCurrentPeriodOfFiscalYear($this->db, $conf, $fiscal_period_start, 'gmt'); if ($fields['duration_type'] == 2) { // Daily $fiscal_period_end = $fiscal_period_start; } elseif ($fields['duration_type'] == 1) { // Monthly