[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Noalyss-commit] [noalyss] 118/238: Currency : export CSV history for ca
From: |
Dany De Bontridder |
Subject: |
[Noalyss-commit] [noalyss] 118/238: Currency : export CSV history for card and accounting, fix bug with unneeded oc_vat_amount + add the currency rate |
Date: |
Sat, 26 Oct 2019 04:40:48 -0400 (EDT) |
sparkyx pushed a commit to annotated tag rel7110
in repository noalyss.
commit b2ab12f8c9c0c8183045fe578246015683c74559
Author: Dany De Bontridder <address@hidden>
Date: Sun Dec 9 11:21:48 2018 +0100
Currency : export CSV history for card and accounting, fix bug
with unneeded oc_vat_amount + add the currency rate
---
include/class/acc_account_ledger.class.php | 1 +
include/class/fiche.class.php | 1 +
include/export/export_fiche_detail_csv.php | 11 ++++++++++-
include/export/export_poste_detail_csv.php | 10 +++++++++-
4 files changed, 21 insertions(+), 2 deletions(-)
diff --git a/include/class/acc_account_ledger.class.php
b/include/class/acc_account_ledger.class.php
index bcf3b12..57e9ee7 100644
--- a/include/class/acc_account_ledger.class.php
+++ b/include/class/acc_account_ledger.class.php
@@ -186,6 +186,7 @@ class Acc_Account_Ledger
cred
full join deb using (jl_id) where jl_id=(select distinct jl_id from
sqlletter where sqlletter.j_id=j1.j_id )) as delta_letter
,jrn.currency_rate
+ ,jrn.currency_rate_ref
,jrn.currency_id
,(select cr_code_iso from currency where id=jrn.currency_id) as
cr_code_iso
,j_montant
diff --git a/include/class/fiche.class.php b/include/class/fiche.class.php
index 6beb6df..d103100 100644
--- a/include/class/fiche.class.php
+++ b/include/class/fiche.class.php
@@ -1269,6 +1269,7 @@ class Fiche
full join deb using (jl_id) where
jl_id=(select distinct jl_id from sqlletter where sqlletter.j_id=j1.j_id ))
as delta_letter,
jrn_def_code,
jrn.currency_rate,
+ jrn.currency_rate_ref,
jrn.currency_id,
(select cr_code_iso from currency where
id=jrn.currency_id) as cr_code_iso,
j_montant,
diff --git a/include/export/export_fiche_detail_csv.php
b/include/export/export_fiche_detail_csv.php
index 60d740e..bc2aac1 100644
--- a/include/export/export_fiche_detail_csv.php
+++ b/include/export/export_fiche_detail_csv.php
@@ -77,6 +77,8 @@ if ( ! isset ($_REQUEST['oper_detail']))
_("Type"),
_("Code devise"),
_("Devise"),
+ _("Taux utilisé") ,
+ _("Taux référence"),
_("Débit"),
_("Crédit"),
_("Prog."),
@@ -107,6 +109,11 @@ if ( ! isset ($_REQUEST['oper_detail']))
$export->add("");
$export->add("");
$export->add("");
+ $export->add("");
+ $export->add("");
+ $export->add("");
+ $export->add("");
+
$export->add($tot_deb,"number");
$export->add($tot_cred,"number");
$export->add($diff,"number");
@@ -134,7 +141,9 @@ if ( ! isset ($_REQUEST['oper_detail']))
$export->add($op['description']);
$export->add($op['jr_optype']);
$export->add($op['cr_code_iso']);
- $export->add(bcadd($op['oc_amount'],$op['oc_vat_amount']),"number");
+ $export->add($op['oc_amount'],"number");
+ $export->add($op['currency_rate'],"number");
+ $export->add($op['currency_rate_ref'],"number");
$export->add($op['deb_montant'],"number");
$export->add($op['cred_montant'],"number");
$export->add(abs($progress),"number");
diff --git a/include/export/export_poste_detail_csv.php
b/include/export/export_poste_detail_csv.php
index 4a3887d..6250a00 100644
--- a/include/export/export_poste_detail_csv.php
+++ b/include/export/export_poste_detail_csv.php
@@ -88,6 +88,8 @@ if ( ! isset ($_REQUEST['oper_detail']))
$title[]=_("Type");
$title[]=_("Code devise");
$title[]=_("Devise");
+ $title[]=_("Taux utilisé");
+ $title[]=_("Taux référence");
$title[]=_("Débit");
$title[]=_("Crédit");
$title[]=_("Prog.");
@@ -119,6 +121,10 @@ if ( ! isset ($_REQUEST['oper_detail']))
$export->add("");
$export->add("");
$export->add("");
+ $export->add("");
+ $export->add("");
+ $export->add("");
+ $export->add("");
$export->add($tot_deb,"number");
$export->add($tot_cred,"number");
@@ -150,7 +156,9 @@ if ( ! isset ($_REQUEST['oper_detail']))
$export->add($op['description']);
$export->add($op['jr_optype']);
$export->add($op['cr_code_iso']);
-
$export->add(bcadd($op['oc_amount'],$op['oc_vat_amount']),"number");
+ $export->add($op['oc_amount'],"number");
+ $export->add($op['currency_rate'],"number");
+ $export->add($op['currency_rate_ref'],"number");
$export->add($op['deb_montant'],"number");
$export->add($op['cred_montant'],"number");
- [Noalyss-commit] [noalyss] 104/238: Reverse for Currency, (continued)
- [Noalyss-commit] [noalyss] 104/238: Reverse for Currency, Dany De Bontridder, 2019/10/26
- [Noalyss-commit] [noalyss] 101/238: Currency : SQL quant_fin is adapted, Dany De Bontridder, 2019/10/26
- [Noalyss-commit] [noalyss] 100/238: Currency : financial use the rate depending of the operation date, Dany De Bontridder, 2019/10/26
- [Noalyss-commit] [noalyss] 108/238: acc_ledger_fin . translation, Dany De Bontridder, 2019/10/26
- [Noalyss-commit] [noalyss] 99/238: Modify quant_fin , we add a column j_id to have a fk to jrnx and operation_currency, Dany De Bontridder, 2019/10/26
- [Noalyss-commit] [noalyss] 109/238: Indentation, Dany De Bontridder, 2019/10/26
- [Noalyss-commit] [noalyss] 116/238: Database upgrade 131, Dany De Bontridder, 2019/10/26
- [Noalyss-commit] [noalyss] 111/238: Currency : sales in listing mode, Dany De Bontridder, 2019/10/26
- [Noalyss-commit] [noalyss] 115/238: Currency : ledger printing for FIN + detail operation, Dany De Bontridder, 2019/10/26
- [Noalyss-commit] [noalyss] 127/238: Merge commit '3f53de417dd89e9a90a386404f93f8648155e046' into r700-currency, Dany De Bontridder, 2019/10/26
- [Noalyss-commit] [noalyss] 118/238: Currency : export CSV history for card and accounting, fix bug with unneeded oc_vat_amount + add the currency rate,
Dany De Bontridder <=
- [Noalyss-commit] [noalyss] 114/238: Currency : purchase oneline + extended html and csv, Dany De Bontridder, 2019/10/26
- [Noalyss-commit] [noalyss] 121/238: Currency : error when displaying, add 4 due to a mistype instruction, Dany De Bontridder, 2019/10/26
- [Noalyss-commit] [noalyss] 128/238: Missing bracket, Dany De Bontridder, 2019/10/26
- [Noalyss-commit] [noalyss] 136/238: Translation, Dany De Bontridder, 2019/10/26
- [Noalyss-commit] [noalyss] 131/238: Translation + use of httpInput, Dany De Bontridder, 2019/10/26
- [Noalyss-commit] [noalyss] 148/238: remove commented code, Dany De Bontridder, 2019/10/26
- [Noalyss-commit] [noalyss] 125/238: Merge branch 'master' into r700-currency, Dany De Bontridder, 2019/10/26
- [Noalyss-commit] [noalyss] 170/238: Merge branch 'r700-currency' of gitlab.noalyss.eu:noalyss/noalyss into r700-currency, Dany De Bontridder, 2019/10/26
- [Noalyss-commit] [noalyss] 129/238: Esthetic with button "Add accounting", Dany De Bontridder, 2019/10/26
- [Noalyss-commit] [noalyss] 144/238: Currency : meaning 1 EUR is worth x currency for Sales, Dany De Bontridder, 2019/10/26