123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478 |
- <?php
- /* Copyright (C) 2013-2016 Olivier Geffroy <jeff@jeffinfo.com>
- * Copyright (C) 2013-2016 Florian Henry <florian.henry@open-concept.pro>
- * Copyright (C) 2013-2017 Alexandre Spangaro <aspangaro@zendsi.com>
- * Copyright (C) 2016 Laurent Destailleur <eldy@users.sourceforge.net>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- /**
- * \file htdocs/accountancy/bookkeeping/list.php
- * \ingroup Advanced accountancy
- * \brief List operation of book keeping
- */
- require '../../main.inc.php';
- // Class
- require_once DOL_DOCUMENT_ROOT . '/core/lib/accounting.lib.php';
- require_once DOL_DOCUMENT_ROOT . '/accountancy/class/bookkeeping.class.php';
- require_once DOL_DOCUMENT_ROOT . '/accountancy/class/accountingjournal.class.php';
- require_once DOL_DOCUMENT_ROOT . '/core/class/html.formother.class.php';
- require_once DOL_DOCUMENT_ROOT . '/core/class/html.formaccounting.class.php';
- // Langs
- $langs->load("accountancy");
- $page = GETPOST("page");
- $sortorder = GETPOST("sortorder");
- $sortfield = GETPOST("sortfield");
- $action = GETPOST('action', 'alpha');
- $search_mvt_num = GETPOST('search_mvt_num', 'int');
- $search_doc_type = GETPOST("search_doc_type");
- $search_doc_ref = GETPOST("search_doc_ref");
- $search_date_start = dol_mktime(0, 0, 0, GETPOST('date_startmonth', 'int'), GETPOST('date_startday', 'int'), GETPOST('date_startyear', 'int'));
- $search_date_end = dol_mktime(0, 0, 0, GETPOST('date_endmonth', 'int'), GETPOST('date_endday', 'int'), GETPOST('date_endyear', 'int'));
- $search_doc_date = dol_mktime(0, 0, 0, GETPOST('doc_datemonth', 'int'), GETPOST('doc_dateday', 'int'), GETPOST('doc_dateyear', 'int'));
- if (GETPOST("button_delmvt_x") || GETPOST("button_delmvt")) {
- $action = 'delbookkeepingyear';
- }
- if (GETPOST("button_export_csv_x") || GETPOST("button_export_csv")) {
- $action = 'export_csv';
- }
- $search_accountancy_code = GETPOST("search_accountancy_code");
- $search_accountancy_code_start = GETPOST('search_accountancy_code_start', 'alpha');
- if ($search_accountancy_code_start == - 1) {
- $search_accountancy_code_start = '';
- }
- $search_accountancy_code_end = GETPOST('search_accountancy_code_end', 'alpha');
- if ($search_accountancy_code_end == - 1) {
- $search_accountancy_code_end = '';
- }
- $search_accountancy_aux_code = GETPOST("search_accountancy_aux_code");
- $search_accountancy_aux_code_start = GETPOST('search_accountancy_aux_code_start', 'alpha');
- if ($search_accountancy_aux_code_start == - 1) {
- $search_accountancy_aux_code_start = '';
- }
- $search_accountancy_aux_code_end = GETPOST('search_accountancy_aux_code_end', 'alpha');
- if ($search_accountancy_aux_code_end == - 1) {
- $search_accountancy_aux_code_end = '';
- }
- $search_mvt_label = GETPOST('search_mvt_label', 'alpha');
- $search_direction = GETPOST('search_direction', 'alpha');
- $search_ledger_code = GETPOST('search_ledger_code', 'alpha');
- // Load variable for pagination
- $limit = GETPOST('limit') ? GETPOST('limit', 'int') : (empty($conf->global->ACCOUNTING_LIMIT_LIST_VENTILATION)?$conf->liste_limit:$conf->global->ACCOUNTING_LIMIT_LIST_VENTILATION);
- $sortfield = GETPOST('sortfield', 'alpha');
- $sortorder = GETPOST('sortorder', 'alpha');
- $page = GETPOST('page','int');
- if ($page < 0) { $page = 0; }
- $offset = $limit * $page;
- $pageprev = $page - 1;
- $pagenext = $page + 1;
- if ($sortorder == "") $sortorder = "ASC";
- if ($sortfield == "") $sortfield = "t.rowid";
- $object = new BookKeeping($db);
- $formaccounting = new FormAccounting($db);
- $formother = new FormOther($db);
- $form = new Form($db);
- if ($action != 'export_csv' && ! isset($_POST['begin']) && ! isset($_GET['begin']) && ! isset($_POST['formfilteraction'])) {
- $search_date_start = dol_mktime(0, 0, 0, 1, 1, dol_print_date(dol_now(), '%Y'));
- $search_date_end = dol_mktime(0, 0, 0, 12, 31, dol_print_date(dol_now(), '%Y'));
- }
- /*
- * Action
- */
- if (GETPOST('cancel')) { $action='list'; $massaction=''; }
- if (! GETPOST('confirmmassaction') && $massaction != 'presend' && $massaction != 'confirm_presend') { $massaction=''; }
- if (GETPOST("button_removefilter_x") || GETPOST("button_removefilter.x") || GETPOST("button_removefilter")) // All tests are required to be compatible with all browsers
- {
- $search_mvt_num = '';
- $search_doc_type = '';
- $search_doc_ref = '';
- $search_doc_date = '';
- $search_accountancy_code = '';
- $search_accountancy_code_start = '';
- $search_accountancy_code_end = '';
- $search_accountancy_aux_code = '';
- $search_accountancy_aux_code_start = '';
- $search_accountancy_aux_code_end = '';
- $search_mvt_label = '';
- $search_direction = '';
- $search_ledger_code = '';
- $search_date_start = '';
- $search_date_end = '';
- }
- // Must be after the remove filter action, before the export.
- $param = '';
- $filter = array ();
- if (! empty($search_date_start)) {
- $filter['t.doc_date>='] = $search_date_start;
- $tmp=dol_getdate($search_date_start);
- $param .= '&date_startmonth=' . $tmp['mon'] . '&date_startday=' . $tmp['mday'] . '&date_startyear=' . $tmp['year'];
- }
- if (! empty($search_date_end)) {
- $filter['t.doc_date<='] = $search_date_end;
- $tmp=dol_getdate($search_date_end);
- $param .= '&date_endmonth=' . $tmp['mon'] . '&date_endday=' . $tmp['mday'] . '&date_endyear=' . $tmp['year'];
- }
- if (! empty($search_doc_date)) {
- $filter['t.doc_date'] = $search_doc_date;
- $tmp=dol_getdate($search_doc_date);
- $param .= '&doc_datemonth=' . $tmp['mon'] . '&doc_dateday=' . $tmp['mday'] . '&doc_dateyear=' . $tmp['year'];
- }
- if (! empty($search_doc_type)) {
- $filter['t.doc_type'] = $search_doc_type;
- $param .= '&search_doc_type=' . $search_doc_type;
- }
- if (! empty($search_doc_ref)) {
- $filter['t.doc_ref'] = $search_doc_ref;
- $param .= '&search_doc_ref=' . $search_doc_ref;
- }
- if (! empty($search_accountancy_code)) {
- $filter['t.numero_compte'] = $search_accountancy_code;
- $param .= '&search_accountancy_code=' . $search_accountancy_code;
- }
- if (! empty($search_accountancy_code_start)) {
- $filter['t.numero_compte>='] = $search_accountancy_code_start;
- $param .= '&search_accountancy_code_start=' . $search_accountancy_code_start;
- }
- if (! empty($search_accountancy_code_end)) {
- $filter['t.numero_compte<='] = $search_accountancy_code_end;
- $param .= '&search_accountancy_code_end=' . $search_accountancy_code_end;
- }
- if (! empty($search_accountancy_aux_code)) {
- $filter['t.code_tiers'] = $search_accountancy_aux_code;
- $param .= '&search_accountancy_aux_code=' . $search_accountancy_aux_code;
- }
- if (! empty($search_accountancy_aux_code_start)) {
- $filter['t.code_tiers>='] = $search_accountancy_aux_code_start;
- $param .= '&search_accountancy_aux_code_start=' . $search_accountancy_aux_code_start;
- }
- if (! empty($search_accountancy_aux_code_end)) {
- $filter['t.code_tiers<='] = $search_accountancy_aux_code_end;
- $param .= '&search_accountancy_aux_code_end=' . $search_accountancy_aux_code_end;
- }
- if (! empty($search_mvt_label)) {
- $filter['t.label_compte'] = $search_mvt_label;
- $param .= '&search_mvt_label=' . $search_mvt_label;
- }
- if (! empty($search_direction)) {
- $filter['t.sens'] = $search_direction;
- $param .= '&search_direction=' . $search_direction;
- }
- if (! empty($search_ledger_code)) {
- $filter['t.code_journal'] = $search_ledger_code;
- $param .= '&search_ledger_code=' . $search_ledger_code;
- }
- if (! empty($search_mvt_num)) {
- $filter['t.piece_num'] = $search_mvt_num;
- $param .= '&search_mvt_num=' . $search_mvt_num;
- }
- if ($action == 'delbookkeeping') {
- $import_key = GETPOST('importkey', 'alpha');
- if (! empty($import_key)) {
- $result = $object->deleteByImportkey($import_key);
- if ($result < 0) {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- Header("Location: list.php");
- exit();
- }
- }
- if ($action == 'delbookkeepingyearconfirm') {
- $delyear = GETPOST('delyear', 'int');
- if ($delyear==-1) {
- $delyear=0;
- }
- $deljournal = GETPOST('deljournal','alpha');
- if ($deljournal==-1) {
- $deljournal=0;
- }
- if (! empty($delyear) || ! empty($deljournal))
- {
- $result = $object->deleteByYearAndJournal($delyear,$deljournal);
- if ($result < 0) {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- else
- {
- setEventMessages("RecordDeleted", null, 'mesgs');
- }
- Header("Location: list.php");
- exit;
- }
- else
- {
- setEventMessages("NoRecordDeleted", null, 'warnings');
- Header("Location: list.php");
- exit;
- }
- }
- if ($action == 'delmouvconfirm') {
- $mvt_num = GETPOST('mvt_num', 'int');
- if (! empty($mvt_num)) {
- $result = $object->deleteMvtNum($mvt_num);
- if ($result < 0) {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- else
- {
- setEventMessages($langs->trans("RecordDeleted"), null, 'mesgs');
- }
- Header("Location: list.php");
- exit;
- }
- }
- if ($action == 'export_csv') {
- include DOL_DOCUMENT_ROOT . '/accountancy/class/accountancyexport.class.php';
- $result = $object->fetchAll($sortorder, $sortfield, 0, 0, $filter);
- if ($result < 0)
- {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- else
- {
- $accountancyexport = new AccountancyExport($db);
- $accountancyexport->export($object->lines);
- if (!empty($accountancyexport->errors)) {
- setEventMessages('', $accountancyexport->errors, 'errors');
- }
- exit;
- }
- }
- /*
- * View
- */
- $title_page = $langs->trans("Bookkeeping");
- llxHeader('', $title_page);
- // List
- $nbtotalofrecords = '';
- if (empty($conf->global->MAIN_DISABLE_FULL_SCANLIST)) {
- $nbtotalofrecords = $object->fetchAll($sortorder, $sortfield, 0, 0, $filter);
- if ($nbtotalofrecords < 0) {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- }
- // TODO Do not use this
- $result = $object->fetchAll($sortorder, $sortfield, $limit, $offset, $filter);
- if ($result < 0) {
- setEventMessages($object->error, $object->errors, 'errors');
- }
- $num=count($object->lines);
- if ($action == 'delmouv') {
- $formconfirm = $form->formconfirm($_SERVER["PHP_SELF"] . '?mvt_num=' . GETPOST('mvt_num'), $langs->trans('DeleteMvt'), $langs->trans('ConfirmDeleteMvtPartial'), 'delmouvconfirm', '', 0, 1);
- print $formconfirm;
- }
- if ($action == 'delbookkeepingyear') {
- $form_question = array ();
- $delyear = GETPOST('delyear');
- $deljournal = GETPOST('deljournal');
- if (empty($delyear)) {
- $delyear = dol_print_date(dol_now(), '%Y');
- }
- $year_array = $formaccounting->selectyear_accountancy_bookkepping($delyear, 'delyear', 0, 'array');
- $journal_array = $formaccounting->selectjournal($deljournal, 'deljournal', '', 1, 'array', 1, 1);
- $form_question['delyear'] = array (
- 'name' => 'delyear',
- 'type' => 'select',
- 'label' => $langs->trans('DelYear'),
- 'values' => $year_array,
- 'default' => $delyear
- );
- $form_question['deljournal'] = array (
- 'name' => 'deljournal',
- 'type' => 'select',
- 'label' => $langs->trans('DelJournal'),
- 'values' => $journal_array,
- 'default' => $deljournal
- );
- $formconfirm = $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans('DeleteMvt'), $langs->trans('ConfirmDeleteMvt'), 'delbookkeepingyearconfirm', $form_question, 0, 1, 250);
- print $formconfirm;
- }
- //$param=''; param started before
- if (! empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) $param.='&contextpage='.$contextpage;
- if ($limit > 0 && $limit != $conf->liste_limit) $param.='&limit='.$limit;
- print '<form method="POST" id="searchFormList" action="' . $_SERVER["PHP_SELF"] . '">';
- print '<input type="hidden" name="action" value="list">';
- if ($optioncss != '') print '<input type="hidden" name="optioncss" value="'.$optioncss.'">';
- print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
- print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
- print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
- print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
- print '<input type="hidden" name="page" value="'.$page.'">';
- $button = '<a class="butAction" name="button_export_csv" href="'.$_SERVER["PHP_SELF"].'?action=export_csv'.($param?'&'.$param:'').'">';
- if (count($filter)) $button.= $langs->trans("ExportFilteredList");
- else $button.= $langs->trans("ExportList");
- $button.= '</a>';
- $groupby = ' <a class="nohover" href="'.DOL_URL_ROOT.'/accountancy/bookkeeping/listbyaccount.php"">' . $langs->trans("GroupByAccountAccounting") . '</a>';
- print_barre_liste($title_page, $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, $button, $result, $nbtotalofrecords, 'title_accountancy', 0, $groupby, '', $limit);
- print '<div class="tabsAction">' . "\n";
- print '<div class="inline-block divButAction"><a class="butAction" href="./card.php?action=create">' . $langs->trans("NewAccountingMvt") . '</a></div>';
- print '<div class="inline-block divButAction"><a class="butActionDelete" name="button_delmvt" href="'.$_SERVER["PHP_SELF"].'?action=delbookkeepingyear'.($param?'&'.$param:'').'">' . $langs->trans("DelBookKeeping") . '</a></div>';
- print '</div>';
- print '<table class="noborder" width="100%">';
- print '<tr class="liste_titre_filter">';
- print '<td class="liste_titre"><input type="text" name="search_mvt_num" size="6" value="' . dol_escape_htmltag($search_mvt_num) . '"></td>';
- print '<td class="liste_titre center">';
- print $langs->trans('From') . ': ';
- print $form->select_date($search_date_start, 'date_start', 0, 0, 1);
- print '<br>';
- print $langs->trans('to') . ': ';
- print $form->select_date($search_date_end, 'date_end', 0, 0, 1);
- print '</td>';
- print '<td class="liste_titre"><input type="text" name="search_doc_ref" size="8" value="' . dol_escape_htmltag($search_doc_ref) . '"></td>';
- print '<td class="liste_titre">';
- print $langs->trans('From');
- print $formaccounting->select_account($search_accountancy_code_start, 'search_accountancy_code_start', 1, array (), 1, 1, '');
- print '<br>';
- print $langs->trans('to');
- print $formaccounting->select_account($search_accountancy_code_end, 'search_accountancy_code_end', 1, array (), 1, 1, '');
- print '</td>';
- print '<td class="liste_titre">';
- print $langs->trans('From');
- print $formaccounting->select_auxaccount($search_accountancy_aux_code_start, 'search_accountancy_aux_code_start', 1);
- print '<br>';
- print $langs->trans('to');
- print $formaccounting->select_auxaccount($search_accountancy_aux_code_end, 'search_accountancy_aux_code_end', 1);
- print '</td>';
- print '<td class="liste_titre">';
- print '<input type="text" size="7" class="flat" name="search_mvt_label" value="' . $search_mvt_label . '"/>';
- print '</td>';
- print '<td class="liste_titre center"> </td>';
- print '<td class="liste_titre center"> </td>';
- print '<td class="liste_titre center"><input type="text" name="search_ledger_code" size="3" value="' . $search_ledger_code . '"></td>';
- print '<td class="liste_titre center">';
- $searchpicto=$form->showFilterButtons();
- print $searchpicto;
- print '</td>';
- print '</tr>';
- print '<tr class="liste_titre">';
- print_liste_field_titre($langs->trans("TransactionNumShort"), $_SERVER['PHP_SELF'], "t.piece_num", "", $param, "", $sortfield, $sortorder);
- print_liste_field_titre($langs->trans("Docdate"), $_SERVER['PHP_SELF'], "t.doc_date", "", $param, 'align="center"', $sortfield, $sortorder);
- print_liste_field_titre($langs->trans("Docref"), $_SERVER['PHP_SELF'], "t.doc_ref", "", $param, "", $sortfield, $sortorder);
- print_liste_field_titre($langs->trans("AccountAccountingShort"), $_SERVER['PHP_SELF'], "t.numero_compte", "", $param, "", $sortfield, $sortorder);
- print_liste_field_titre($langs->trans("Code_tiers"), $_SERVER['PHP_SELF'], "t.code_tiers", "", $param, "", $sortfield, $sortorder);
- print_liste_field_titre($langs->trans("Label"), $_SERVER['PHP_SELF'], "t.label_compte", "", $param, "", $sortfield, $sortorder);
- print_liste_field_titre($langs->trans("Debit"), $_SERVER['PHP_SELF'], "t.debit", "", $param, 'align="right"', $sortfield, $sortorder);
- print_liste_field_titre($langs->trans("Credit"), $_SERVER['PHP_SELF'], "t.credit", "", $param, 'align="right"', $sortfield, $sortorder);
- print_liste_field_titre($langs->trans("Codejournal"), $_SERVER['PHP_SELF'], "t.code_journal", "", $param, 'align="center"', $sortfield, $sortorder);
- $checkpicto='';
- if ($massactionbutton) $checkpicto=$form->showCheckAddButtons('checkforselect', 1);
- print_liste_field_titre($checkpicto, $_SERVER["PHP_SELF"], "", $param, "", 'width="60" align="center"', $sortfield, $sortorder);
- print "</tr>\n";
- $total_debit = 0;
- $total_credit = 0;
- foreach ($object->lines as $line ) {
- $var = ! $var;
- $total_debit += $line->debit;
- $total_credit += $line->credit;
- print '<tr class="oddeven">';
- print '<td><a href="./card.php?piece_num=' . $line->piece_num . '">' . $line->piece_num . '</a></td>';
- print '<td align="center">' . dol_print_date($line->doc_date, 'day') . '</td>';
- print '<td class="nowrap">' . $line->doc_ref . '</td>';
- print '<td>' . length_accountg($line->numero_compte) . '</td>';
- print '<td>' . length_accounta($line->code_tiers) . '</td>';
- print '<td>' . $line->label_compte . '</td>';
- print '<td align="right">' . price($line->debit) . '</td>';
- print '<td align="right">' . price($line->credit) . '</td>';
- $accountingjournal = new AccountingJournal($db);
- $accountingjournal->fetch('',$line->code_journal);
- print '<td align="center">' . $accountingjournal->getNomUrl(0,0,0,'',0) . '</td>';
- print '<td align="center">';
- print '<a href="./card.php?piece_num=' . $line->piece_num . '">' . img_edit() . '</a> ';
- print '<a href="' . $_SERVER['PHP_SELF'] . '?action=delmouv&mvt_num=' . $line->piece_num . $param . '&page=' . $page . '">' . img_delete() . '</a>';
- print '</td>';
- print "</tr>\n";
- }
- print '<tr class="liste_total">';
- if ($num < $limit) print '<td align="left" colspan="6">'.$langs->trans("Total").'</td>';
- else print '<td align="left" colspan="6">'.$langs->trans("Totalforthispage").'</td>';
- print '</td>';
- print '<td align="right">';
- print price($total_debit);
- print '</td>';
- print '<td align="right">';
- print price($total_credit);
- print '</td>';
- print '<td></td>';
- print '</tr>';
- print "</table>";
- print '</form>';
- llxFooter();
- $db->close();
|