Commit 7f29b08c764e45d091c473803d08131ecf95be24
1 parent
bda2a408
Exists in
3.5
and in
1 other branch
Update general ledger by year
Showing
1 changed file
with
7 additions
and
7 deletions
Show diff stats
accountingex/bookkeeping/listebyyear.php
1 | -<?PHP | |
1 | +<?php | |
2 | 2 | /* Copyright (C) 2013-2014 Olivier Geffroy <jeff@jeffinfo.com> |
3 | 3 | * Copyright (C) 2013-2014 Alexandre Spangaro <alexandre.spangaro@gmail.com> |
4 | 4 | * Copyright (C) 2013-2014 Florian Henry <florian.henry@open-concept.pro> |
... | ... | @@ -20,7 +20,7 @@ |
20 | 20 | |
21 | 21 | /** |
22 | 22 | * \file accountingex/bookkeeping/listebyyear.php |
23 | - * \ingroup Accounting Expert | |
23 | + * \ingroup Accounting Expert | |
24 | 24 | * \brief Book keeping by year |
25 | 25 | */ |
26 | 26 | |
... | ... | @@ -35,7 +35,7 @@ if (! $res && file_exists("../../../main.inc.php")) |
35 | 35 | if (! $res) |
36 | 36 | die("Include of main fails"); |
37 | 37 | |
38 | - // Class | |
38 | +// Class | |
39 | 39 | dol_include_once("/core/lib/date.lib.php"); |
40 | 40 | dol_include_once("/accountingex/core/lib/account.lib.php"); |
41 | 41 | |
... | ... | @@ -90,11 +90,11 @@ if ($resql) { |
90 | 90 | |
91 | 91 | print '<tr class="liste_titre">'; |
92 | 92 | print_liste_field_titre($langs->trans("Doctype"), $_SERVER['PHP_SELF'], "bk.doc_type", "", "", "", $sortfield, $sortorder); |
93 | - print_liste_field_titre($langs->trans("Docdate"), $_SERVER['PHP_SELF'], "bk.doc_date", "", "", "", $sortfield, $sortorder); | |
93 | + print_liste_field_titre($langs->trans("Date"), $_SERVER['PHP_SELF'], "bk.doc_date", "", "", "", $sortfield, $sortorder); | |
94 | 94 | print_liste_field_titre($langs->trans("Docref"), $_SERVER['PHP_SELF'], "bk.doc_ref", "", "", "", $sortfield, $sortorder); |
95 | - print_liste_field_titre($langs->trans("Numerocompte"), $_SERVER['PHP_SELF'], "bk.numero_compte", "", "", "", $sortfield, $sortorder); | |
96 | - print_liste_field_titre($langs->trans("Code_tiers"), $_SERVER['PHP_SELF'], "bk.code_tiers", "", "", "", $sortfield, $sortorder); | |
97 | - print_liste_field_titre($langs->trans("Labelcompte"), $_SERVER['PHP_SELF'], "bk_label_compte", "", "", "", $sortfield, $sortorder); | |
95 | + print_liste_field_titre($langs->trans("AccountAccounting"), $_SERVER['PHP_SELF'], "bk.numero_compte", "", "", "", $sortfield, $sortorder); | |
96 | + print_liste_field_titre($langs->trans("ThirdPartyAccount"), $_SERVER['PHP_SELF'], "bk.code_tiers", "", "", "", $sortfield, $sortorder); | |
97 | + print_liste_field_titre($langs->trans("Label"), $_SERVER['PHP_SELF'], "bk_label_compte", "", "", "", $sortfield, $sortorder); | |
98 | 98 | print_liste_field_titre($langs->trans("Debit"), $_SERVER['PHP_SELF'], "bk.debit", "", "", "", $sortfield, $sortorder); |
99 | 99 | print_liste_field_titre($langs->trans("Credit"), $_SERVER['PHP_SELF'], "bk.credit", "", "", "", $sortfield, $sortorder); |
100 | 100 | print_liste_field_titre($langs->trans("Amount"), $_SERVER['PHP_SELF'], "bk.montant", "", "", "", $sortfield, $sortorder); | ... | ... |