dolibarr 21.0.0-beta
variousjournal.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2021-2024 Alexandre Spangaro <alexandre@inovea-conseil.com>
3 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
4 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19
26// Load Dolibarr environment
27require '../../main.inc.php';
28require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
29require_once DOL_DOCUMENT_ROOT.'/core/lib/accounting.lib.php';
30require_once DOL_DOCUMENT_ROOT.'/accountancy/class/accountingjournal.class.php';
31
41// Load translation files required by the page
42$langs->loadLangs(array("banks", "accountancy", "compta", "other", "errors"));
43
44$id_journal = GETPOSTINT('id_journal');
45$action = GETPOST('action', 'aZ09');
46
47$date_startmonth = GETPOSTINT('date_startmonth');
48$date_startday = GETPOSTINT('date_startday');
49$date_startyear = GETPOSTINT('date_startyear');
50$date_endmonth = GETPOSTINT('date_endmonth');
51$date_endday = GETPOSTINT('date_endday');
52$date_endyear = GETPOSTINT('date_endyear');
53$in_bookkeeping = GETPOST('in_bookkeeping');
54if ($in_bookkeeping == '') {
55 $in_bookkeeping = 'notyet';
56}
57
58// Get information of a journal
59$object = new AccountingJournal($db);
60$result = $object->fetch($id_journal);
61if ($result > 0) {
62 $id_journal = $object->id;
63} elseif ($result < 0) {
64 dol_print_error(null, $object->error, $object->errors);
65} elseif ($result == 0) {
66 accessforbidden('ErrorRecordNotFound');
67}
68
69$hookmanager->initHooks(array('globaljournal', $object->nature.'journal'));
70$parameters = array();
71
72$date_start = dol_mktime(0, 0, 0, $date_startmonth, $date_startday, $date_startyear);
73$date_end = dol_mktime(23, 59, 59, $date_endmonth, $date_endday, $date_endyear);
74
75$pastmonth = null; // Initialise, could be unset
76$pastmonthyear = null; // Initialise, could be unset
77
78if (empty($date_startmonth)) {
79 // Period by default on transfer
81 $date_start = $dates['date_start'];
82 $pastmonthyear = $dates['pastmonthyear'];
83 $pastmonth = $dates['pastmonth'];
84}
85if (empty($date_endmonth)) {
86 // Period by default on transfer
88 $date_end = $dates['date_end'];
89 $pastmonthyear = $dates['pastmonthyear'];
90 $pastmonth = $dates['pastmonth'];
91}
92
93if (!GETPOSTISSET('date_startmonth') && (empty($date_start) || empty($date_end))) { // We define date_start and date_end, only if we did not submit the form
94 $date_start = dol_get_first_day($pastmonthyear, $pastmonth, false);
95 $date_end = dol_get_last_day($pastmonthyear, $pastmonth, false);
96}
97
98$data_type = 'view';
99if ($action == 'writebookkeeping') {
100 $data_type = 'bookkeeping';
101}
102if ($action == 'exportcsv') {
103 $data_type = 'csv';
104}
105$journal_data = $object->getData($user, $data_type, $date_start, $date_end, $in_bookkeeping);
106if (!is_array($journal_data)) {
107 setEventMessages($object->error, $object->errors, 'errors');
108}
109
110// Security check
111if (!isModEnabled('accounting')) {
113}
114if ($user->socid > 0) {
116}
117if (!$user->hasRight('accounting', 'bind', 'write')) {
119}
120
121
122/*
123 * Actions
124 */
125
126$reshook = $hookmanager->executeHooks('doActions', $parameters, $user, $action); // Note that $action and $object may have been modified by some hooks
127
128$reload = false;
129
130// Bookkeeping Write
131if ($action == 'writebookkeeping' && $user->hasRight('accounting', 'bind', 'write')) {
132 $error = 0;
133
134 $result = $object->writeIntoBookkeeping($user, $journal_data);
135 if ($result < 0) {
136 setEventMessages($object->error, $object->errors, 'errors');
137 $error = abs($result);
138 }
139
140 $nb_elements = count($journal_data);
141 if (empty($error) && $nb_elements > 0) {
142 setEventMessages($langs->trans("GeneralLedgerIsWritten"), null, 'mesgs');
143 } elseif ($nb_elements == $error) {
144 setEventMessages($langs->trans("NoNewRecordSaved"), null, 'warnings');
145 } else {
146 setEventMessages($langs->trans("GeneralLedgerSomeRecordWasNotRecorded"), null, 'warnings');
147 }
148
149 $reload = true;
150} elseif ($action == 'exportcsv' && $user->hasRight('accounting', 'bind', 'write')) {
151 // Export CSV
152 $result = $object->exportCsv($journal_data, $date_end);
153 if ($result < 0) {
154 setEventMessages($object->error, $object->errors, 'errors');
155 $reload = true;
156 } else {
157 $filename = 'journal';
158 $type_export = 'journal';
159
160 require_once DOL_DOCUMENT_ROOT . '/core/lib/date.lib.php';
161 include DOL_DOCUMENT_ROOT.'/accountancy/tpl/export_journal.tpl.php';
162
163 print $result;
164
165 $db->close();
166 exit();
167 }
168}
169
170// Must reload data, so we make a redirect
171if ($reload) {
172 $param = 'id_journal=' . $id_journal;
173 $param .= '&date_startday=' . $date_startday;
174 $param .= '&date_startmonth=' . $date_startmonth;
175 $param .= '&date_startyear=' . $date_startyear;
176 $param .= '&date_endday=' . $date_endday;
177 $param .= '&date_endmonth=' . $date_endmonth;
178 $param .= '&date_endyear=' . $date_endyear;
179 $param .= '&in_bookkeeping=' . $in_bookkeeping;
180 header("Location: " . $_SERVER['PHP_SELF'] . ($param ? '?' . $param : ''));
181 exit;
182}
183
184
185/*
186 * View
187 */
188
189$form = new Form($db);
190
191if ($object->nature == 2) {
192 $some_mandatory_steps_of_setup_were_not_done = getDolGlobalString('ACCOUNTING_ACCOUNT_CUSTOMER') == "" || getDolGlobalString('ACCOUNTING_ACCOUNT_CUSTOMER') == '-1';
193 $account_accounting_not_defined = getDolGlobalString('ACCOUNTING_ACCOUNT_CUSTOMER') == "" || getDolGlobalString('ACCOUNTING_ACCOUNT_CUSTOMER') == '-1';
194} elseif ($object->nature == 3) {
195 $some_mandatory_steps_of_setup_were_not_done = getDolGlobalString('ACCOUNTING_ACCOUNT_SUPPLIER') == "" || getDolGlobalString('ACCOUNTING_ACCOUNT_SUPPLIER') == '-1';
196 $account_accounting_not_defined = getDolGlobalString('ACCOUNTING_ACCOUNT_SUPPLIER') == "" || getDolGlobalString('ACCOUNTING_ACCOUNT_SUPPLIER') == '-1';
197} elseif ($object->nature == 4) {
198 $some_mandatory_steps_of_setup_were_not_done = getDolGlobalString('ACCOUNTING_ACCOUNT_CUSTOMER') == "" || getDolGlobalString('ACCOUNTING_ACCOUNT_CUSTOMER') == '-1'
199 || getDolGlobalString('ACCOUNTING_ACCOUNT_SUPPLIER') == "" || getDolGlobalString('ACCOUNTING_ACCOUNT_SUPPLIER') == '-1'
200 || !getDolGlobalString('SALARIES_ACCOUNTING_ACCOUNT_PAYMENT') || getDolGlobalString('SALARIES_ACCOUNTING_ACCOUNT_PAYMENT') == '-1';
201 $account_accounting_not_defined = getDolGlobalString('ACCOUNTING_ACCOUNT_CUSTOMER') == "" || getDolGlobalString('ACCOUNTING_ACCOUNT_CUSTOMER') == '-1'
202 || getDolGlobalString('ACCOUNTING_ACCOUNT_SUPPLIER') == "" || getDolGlobalString('ACCOUNTING_ACCOUNT_SUPPLIER') == '-1';
203} elseif ($object->nature == 5) {
204 $some_mandatory_steps_of_setup_were_not_done = !getDolGlobalString('SALARIES_ACCOUNTING_ACCOUNT_PAYMENT') || getDolGlobalString('SALARIES_ACCOUNTING_ACCOUNT_PAYMENT') == '-1';
205 $account_accounting_not_defined = !getDolGlobalString('SALARIES_ACCOUNTING_ACCOUNT_PAYMENT') || getDolGlobalString('SALARIES_ACCOUNTING_ACCOUNT_PAYMENT') == '-1';
206} else {
207 $title = $object->getLibType();
208 $some_mandatory_steps_of_setup_were_not_done = false;
209 $account_accounting_not_defined = false;
210}
211
212$title = $langs->trans("GenerationOfAccountingEntries") . ' - ' . $object->getNomUrl(0, 2, 1, '', 1);
213$help_url = 'EN:Module_Double_Entry_Accounting|FR:Module_Comptabilit&eacute;_en_Partie_Double#G&eacute;n&eacute;ration_des_&eacute;critures_en_comptabilit&eacute;';
214llxHeader('', dol_string_nohtmltag($title), $help_url, '', 0, 0, '', '', '', 'mod-accountancy accountancy-generation page-variousjournal');
215
216$nom = $title;
217$nomlink = '';
218$periodlink = '';
219$exportlink = '';
220$builddate = dol_now();
221$description = $langs->trans("DescJournalOnlyBindedVisible") . '<br>';
222if ($object->nature == 2 || $object->nature == 3) {
223 if (getDolGlobalString('FACTURE_DEPOSITS_ARE_JUST_PAYMENTS')) {
224 $description .= $langs->trans("DepositsAreNotIncluded");
225 } else {
226 $description .= $langs->trans("DepositsAreIncluded");
227 }
228 if (getDolGlobalString('FACTURE_SUPPLIER_DEPOSITS_ARE_JUST_PAYMENTS')) {
229 $description .= $langs->trans("SupplierDepositsAreNotIncluded");
230 }
231}
232
233$listofchoices = array('notyet' => $langs->trans("NotYetInGeneralLedger"), 'already' => $langs->trans("AlreadyInGeneralLedger"));
234$period = $form->selectDate($date_start ? $date_start : -1, 'date_start', 0, 0, 0, '', 1, 0) . ' - ' . $form->selectDate($date_end ? $date_end : -1, 'date_end', 0, 0, 0, '', 1, 0);
235$period .= ' - ' . $langs->trans("JournalizationInLedgerStatus") . ' ' . $form->selectarray('in_bookkeeping', $listofchoices, $in_bookkeeping, 1);
236
237$varlink = 'id_journal=' . $id_journal;
238
239journalHead($nom, $nomlink, $period, $periodlink, $description, $builddate, $exportlink, array('action' => ''), '', $varlink);
240
241if (getDolGlobalString('ACCOUNTANCY_FISCAL_PERIOD_MODE') != 'blockedonclosed') {
242 // Test that setup is complete (we are in accounting, so test on entity is always on $conf->entity only, no sharing allowed)
243 // Fiscal period test
244 $sql = "SELECT COUNT(rowid) as nb FROM ".MAIN_DB_PREFIX."accounting_fiscalyear WHERE entity = ".((int) $conf->entity);
245 $resql = $db->query($sql);
246 if ($resql) {
247 $obj = $db->fetch_object($resql);
248 if ($obj->nb == 0) {
249 print '<br><div class="warning">'.img_warning().' '.$langs->trans("TheFiscalPeriodIsNotDefined");
250 $desc = ' : '.$langs->trans("AccountancyAreaDescFiscalPeriod", 4, '{link}');
251 $desc = str_replace('{link}', '<strong>'.$langs->transnoentitiesnoconv("MenuAccountancy").'-'.$langs->transnoentitiesnoconv("Setup")."-".$langs->transnoentitiesnoconv("FiscalPeriod").'</strong>', $desc);
252 print $desc;
253 print '</div>';
254 }
255 } else {
256 dol_print_error($db);
257 }
258}
259
260if ($object->nature == 4) { // Bank journal
261 // Test that setup is complete (we are in accounting, so test on entity is always on $conf->entity only, no sharing allowed)
262 $sql = "SELECT COUNT(rowid) as nb";
263 $sql .= " FROM " . MAIN_DB_PREFIX . "bank_account";
264 $sql .= " WHERE entity = " . (int) $conf->entity;
265 $sql .= " AND fk_accountancy_journal IS NULL";
266 $sql .= " AND clos=0";
267 $resql = $db->query($sql);
268 if ($resql) {
269 $obj = $db->fetch_object($resql);
270 if ($obj->nb > 0) {
271 print '<br>' . img_warning() . ' ' . $langs->trans("TheJournalCodeIsNotDefinedOnSomeBankAccount");
272 print ' : ' . $langs->trans("AccountancyAreaDescBank", 9, '<strong>' . $langs->transnoentitiesnoconv("MenuAccountancy") . '-' . $langs->transnoentitiesnoconv("Setup") . "-" . $langs->transnoentitiesnoconv("BankAccounts") . '</strong>');
273 }
274 } else {
275 dol_print_error($db);
276 }
277}
278
279// Button to write into Ledger
280if ($some_mandatory_steps_of_setup_were_not_done) {
281 print '<br><div class="warning">' . img_warning() . ' ' . $langs->trans("SomeMandatoryStepsOfSetupWereNotDone");
282 print ' : ' . $langs->trans("AccountancyAreaDescMisc", 4, '<strong>' . $langs->transnoentitiesnoconv("MenuAccountancy") . '-' . $langs->transnoentitiesnoconv("Setup") . "-" . $langs->transnoentitiesnoconv("MenuDefaultAccounts") . '</strong>');
283 print '</div>';
284}
285print '<br><div class="tabsAction tabsActionNoBottom centerimp">';
286if (getDolGlobalString('ACCOUNTING_ENABLE_EXPORT_DRAFT_JOURNAL') && $in_bookkeeping == 'notyet') {
287 print '<input type="button" class="butAction" name="exportcsv" value="' . $langs->trans("ExportDraftJournal") . '" onclick="launch_export();" />';
288}
289if ($account_accounting_not_defined) {
290 print '<input type="button" class="butActionRefused classfortooltip" title="' . dol_escape_htmltag($langs->trans("SomeMandatoryStepsOfSetupWereNotDone")) . '" value="' . $langs->trans("WriteBookKeeping") . '" />';
291} else {
292 if ($in_bookkeeping == 'notyet') {
293 print '<input type="button" class="butAction" name="writebookkeeping" value="' . $langs->trans("WriteBookKeeping") . '" onclick="writebookkeeping();" />';
294 } else {
295 print '<a href="#" class="butActionRefused classfortooltip" name="writebookkeeping">' . $langs->trans("WriteBookKeeping") . '</a>';
296 }
297}
298print '</div>';
299
300// TODO Avoid using js. We can use a direct link with $param
301print '
302 <script type="text/javascript">
303 function launch_export() {
304 $("div.fiche form input[name=\"action\"]").val("exportcsv");
305 $("div.fiche form input[type=\"submit\"]").click();
306 $("div.fiche form input[name=\"action\"]").val("");
307 }
308 function writebookkeeping() {
309 console.log("click on writebookkeeping");
310 $("div.fiche form input[name=\"action\"]").val("writebookkeeping");
311 $("div.fiche form input[type=\"submit\"]").click();
312 $("div.fiche form input[name=\"action\"]").val("");
313 }
314 </script>';
315
316$object_label = $langs->trans("ObjectsRef");
317if ($object->nature == 2 || $object->nature == 3) {
318 $object_label = $langs->trans("InvoiceRef");
319}
320if ($object->nature == 5) {
321 $object_label = $langs->trans("ExpenseReportRef");
322}
323
324
325// Show result array
326$i = 0;
327
328print '<br>';
329
330print '<div class="div-table-responsive">';
331print '<table class="noborder centpercent">';
332print '<tr class="liste_titre">';
333print '<td>' . $langs->trans("Date") . '</td>';
334print '<td>' . $langs->trans("Piece") . ' (' . $object_label . ')</td>';
335print '<td>' . $langs->trans("AccountAccounting") . '</td>';
336print '<td>' . $langs->trans("SubledgerAccount") . '</td>';
337print '<td>' . $langs->trans("LabelOperation") . '</td>';
338if ($object->nature == 4) {
339 print '<td class="center">' . $langs->trans("PaymentMode") . '</td>';
340} // bank
341print '<td class="right">' . $langs->trans("AccountingDebit") . '</td>';
342print '<td class="right">' . $langs->trans("AccountingCredit") . '</td>';
343print "</tr>\n";
344
345if (is_array($journal_data) && !empty($journal_data)) {
346 foreach ($journal_data as $element_id => $element) {
347 foreach ($element['blocks'] as $lines) {
348 foreach ($lines as $line) {
349 print '<tr class="oddeven">';
350 print '<td>' . $line['date'] . '</td>';
351 print '<td>' . $line['piece'] . '</td>';
352 print '<td>' . $line['account_accounting'] . '</td>';
353 print '<td>' . $line['subledger_account'] . '</td>';
354 print '<td>' . $line['label_operation'] . '</td>';
355 if ($object->nature == 4) {
356 print '<td class="center">' . $line['payment_mode'] . '</td>';
357 }
358 print '<td class="right nowraponall">' . $line['debit'] . '</td>';
359 print '<td class="right nowraponall">' . $line['credit'] . '</td>';
360 print '</tr>';
361
362 $i++;
363 }
364 }
365 }
366}
367
368if (!$i) {
369 $colspan = 7;
370 if ($object->nature == 4) {
371 $colspan++;
372 }
373 print '<tr class="oddeven"><td colspan="'.$colspan.'"><span class="opacitymedium">'.$langs->trans("NoRecordFound").'</span></td></tr>';
374}
375
376print '</table>';
377print '</div>';
378
379llxFooter();
380
381$db->close();
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:66
journalHead($nom, $variant, $period, $periodlink, $description, $builddate, $exportlink='', $moreparam=array(), $calcmode='', $varlink='', $moreoptions=array())
Show header of a page used to transfer/dispatch data in accounting.
getDefaultDatesForTransfer()
Return Default dates for transfer based on periodicity option in accountancy setup.
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Definition wrapper.php:71
Class to manage accounting journals.
Class to manage generation of HTML components Only common components must be here.
dol_get_first_day($year, $month=1, $gm=false)
Return GMT time for first day of a month or year.
Definition date.lib.php:600
dol_get_last_day($year, $month=12, $gm=false)
Return GMT time for last day of a month or year.
Definition date.lib.php:619
llxFooter()
Footer empty.
Definition document.php:107
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed information (by default a local PHP server timestamp) Rep...
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_string_nohtmltag($stringtoclean, $removelinefeed=1, $pagecodeto='UTF-8', $strip_tags=0, $removedoublespaces=1)
Clean a string from all HTML tags and entities.
dol_now($mode='auto')
Return date for now.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
Definition member.php:79
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.