[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Noalyss-commit] [noalyss] 164/218: Currency Show currency info for MISC
From: |
Dany De Bontridder |
Subject: |
[Noalyss-commit] [noalyss] 164/218: Currency Show currency info for MISC |
Date: |
Thu, 12 Sep 2019 15:59:02 -0400 (EDT) |
sparkyx pushed a commit to branch entreprise
in repository noalyss.
commit 51550b445677d735bc5e7039b978441a0f73da7a
Author: Dany De Bontridder <address@hidden>
Date: Sat Jan 12 14:56:14 2019 +0100
Currency Show currency info for MISC
---
include/template/ledger_detail_misc.php | 26 +++++++++++++++++++++++++-
1 file changed, 25 insertions(+), 1 deletion(-)
diff --git a/include/template/ledger_detail_misc.php
b/include/template/ledger_detail_misc.php
index 27ce898..fa82e72 100644
--- a/include/template/ledger_detail_misc.php
+++ b/include/template/ledger_detail_misc.php
@@ -112,7 +112,7 @@ echo th(_('Crédit'), 'style="text-align:right"');
$str_anc.= Anc_Plan::hidden($a_anc);
}
echo '</tr>';
-$amount_idx=0;
+$amount_idx=0; $sum_prod_currency=0;
for ($e=0;$e<count($obj->det->array);$e++) {
$row=''; $q=$obj->det->array;
$view_history = HtmlInput::history_account($q[$e]['j_poste'],
$q[$e]['j_poste'], "", $exercice);
@@ -159,6 +159,14 @@ $amount_idx=0;
$montant=td(nbm($q[$e]['j_montant']),'class="num"');
$row.=($q[$e]['j_debit']=='t')?$montant:td('');
$row.=($q[$e]['j_debit']=='f')?$montant:td('');
+ /*
+ * Compute total in currency if not default one
+ */
+ if ( $obj->det->currency_id != 0 && $q[$e]['j_debit']=='f' ) {
+ $value=$obj->db->get_value("select oc_amount+oc_vat_amount from
operation_currency where j_id=$1",[$q[$e]['j_id']]);
+ $sum_prod_currency=bcadd($sum_prod_currency,$value,2);
+
+ }
/* Analytic accountancy */
if ( $owner->MY_ANALYTIC != "nu" /*&& $div=='popup'*/){
if ( preg_match('/^(6|7)/',$q[$e]['j_poste'])) {
@@ -188,6 +196,22 @@ $amount_idx=0;
}
?>
</table>
+<?php
+/*
+ * Info about currency if not in euro
+ */
+ // Add a row with currency and amount
+ if ( $obj->det->currency_id != "" && $obj->det->currency_id > 0)
+ {
+ $currency=new Acc_Currency($obj->db, $obj->det->currency_id);
+ $four_space=" "." "." "." ";
+
+ echo $currency->get_code(),$four_space;
+ echo _("Taux utilisé")," ", $obj->det->currency_rate,$four_space;
+ echo _("Taux Réf"), " ",$obj->det->currency_rate_ref.$four_space;
+ echo _("Montant en devise"), " ",$sum_prod_currency,$four_space;
+ }
+?>
</div>
<?php
require_once NOALYSS_TEMPLATE.'/ledger_detail_bottom.php';
- [Noalyss-commit] [noalyss] 141/218: Currency : for misc. operation, (continued)
- [Noalyss-commit] [noalyss] 141/218: Currency : for misc. operation, Dany De Bontridder, 2019/09/12
- [Noalyss-commit] [noalyss] 159/218: Currency : because of Misc Operation, the tiers must also be saved into operation_currency. Fix also PRINTJRN for currency, Dany De Bontridder, 2019/09/12
- [Noalyss-commit] [noalyss] 166/218: Typo, Dany De Bontridder, 2019/09/12
- [Noalyss-commit] [noalyss] 79/218: Bug : in Purchase and Sale , the last rows disappear when we change the ledger, Dany De Bontridder, 2019/09/12
- [Noalyss-commit] [noalyss] 104/218: Reverse for Currency, Dany De Bontridder, 2019/09/12
- [Noalyss-commit] [noalyss] 118/218: Currency : export CSV history for card and accounting, fix bug with unneeded oc_vat_amount + add the currency rate, Dany De Bontridder, 2019/09/12
- [Noalyss-commit] [noalyss] 146/218: Currency : history for accounting , correct amount in currency, Dany De Bontridder, 2019/09/12
- [Noalyss-commit] [noalyss] 145/218: Currency : the meaning is : 1 euro is worth xxx Currency , so we divide the amount with the currency rate to compute the EUR value, Dany De Bontridder, 2019/09/12
- [Noalyss-commit] [noalyss] 150/218: Currency : detail operation Sale , the amount in currency were wrong in the summary, Dany De Bontridder, 2019/09/12
- [Noalyss-commit] [noalyss] 154/218: by default jrn is an empty array, Dany De Bontridder, 2019/09/12
- [Noalyss-commit] [noalyss] 164/218: Currency Show currency info for MISC,
Dany De Bontridder <=
- [Noalyss-commit] [noalyss] 161/218: PHP 7.2 incomptability : sizeof of not array, Dany De Bontridder, 2019/09/12
- [Noalyss-commit] [noalyss] 155/218: Task #0001309: Association d'une opération avec elle-même., Dany De Bontridder, 2019/09/12
- [Noalyss-commit] [noalyss] 158/218: Merge branch 'master' of gitlab.noalyss.eu:noalyss/noalyss into r700-currency, Dany De Bontridder, 2019/09/12
- [Noalyss-commit] [noalyss] 160/218: Protect parameters, Dany De Bontridder, 2019/09/12
- [Noalyss-commit] [noalyss] 167/218: Currency : set default accounting for change difference when using currency, Dany De Bontridder, 2019/09/12
- [Noalyss-commit] [noalyss] 165/218: Database upgrade, Dany De Bontridder, 2019/09/12
- [Noalyss-commit] [noalyss] 168/218: translation, Dany De Bontridder, 2019/09/12
- [Noalyss-commit] [noalyss] 169/218: Mantis #0001688: Affichage centime dans l'écran de confirmation, Dany De Bontridder, 2019/09/12
- [Noalyss-commit] [noalyss] 176/218: Mantis #1626: AFFICHAGE BALANCE FICHE - soldes nuls au débit, Dany De Bontridder, 2019/09/12
- [Noalyss-commit] [noalyss] 177/218: Mantis #1643: Déplacement du "bouton" «retour en-haut/calculatrice», Dany De Bontridder, 2019/09/12