noalyss-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Noalyss-commit] [noalyss] 10/33: For Misc Operation in currency , show


From: Dany De Bontridder
Subject: [Noalyss-commit] [noalyss] 10/33: For Misc Operation in currency , show the currency amount / row
Date: Thu, 11 Nov 2021 06:02:44 -0500 (EST)

sparkyx pushed a commit to branch master
in repository noalyss.

commit b85ea649c35dd141487b9bf5be2ef835a0349598
Author: sparkyx <danydb@noalyss.eu>
AuthorDate: Fri Oct 1 17:49:00 2021 +0200

    For Misc Operation in currency , show the currency amount / row
---
 include/template/ledger_detail_misc.php | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/include/template/ledger_detail_misc.php 
b/include/template/ledger_detail_misc.php
index 1e01789..d5b723a 100644
--- a/include/template/ledger_detail_misc.php
+++ b/include/template/ledger_detail_misc.php
@@ -94,8 +94,12 @@ require_once NOALYSS_TEMPLATE.'/ledger_detail_top.php';
     echo th(_('Poste Comptable'));
     echo th(_('Quick Code'));
     echo th(_('Libellé'));
-echo th(_('Débit'), 'style="text-align:right"');
-echo th(_('Crédit'), 'style="text-align:right"');
+    echo th(_('Débit'), 'style="text-align:right"');
+    echo th(_('Crédit'), 'style="text-align:right"');
+    if ( $obj->det->currency_id != 0 ) {
+                        echo th(_("Devise"),' class="num" ');
+    }
+    
     if ($owner->MY_ANALYTIC != 'nu' /* && $div == 'popup' */ ){
       $anc=new Anc_Plan($cn);
       $a_anc=$anc->get_list(' order by pa_id ');
@@ -185,7 +189,11 @@ $amount_idx=0; $sum_prod_currency=0;
       }
     }
     $class=($e%2==0)?' class="even"':'class="odd"';
-
+    if ( $obj->det->currency_id != 0 ) {
+        $cur_amount=$cn->get_value("select oc_amount from operation_currency 
where j_id=$1",
+                [$q[$e]['j_id']]);
+        $row.=td(nbm($cur_amount,4),' class="num" ');
+    }
     echo tr($row,$class);
 
   }



reply via email to

[Prev in Thread] Current Thread [Next in Thread]