30require
'../../main.inc.php';
31require_once DOL_DOCUMENT_ROOT.
'/core/lib/accounting.lib.php';
32require_once DOL_DOCUMENT_ROOT.
'/accountancy/class/bookkeeping.class.php';
33require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formaccounting.class.php';
34require_once DOL_DOCUMENT_ROOT.
'/compta/facture/class/facture.class.php';
35require_once DOL_DOCUMENT_ROOT.
'/fourn/class/fournisseur.facture.class.php';
36require_once DOL_DOCUMENT_ROOT.
'/accountancy/class/accountingjournal.class.php';
37require_once DOL_DOCUMENT_ROOT.
'/accountancy/class/accountingaccount.class.php';
38require_once DOL_DOCUMENT_ROOT.
'/accountancy/class/lettering.class.php';
41$langs->loadLangs(array(
"accountancy",
"bills",
"compta"));
43$action =
GETPOST(
'action',
'aZ09');
44$cancel =
GETPOST(
'cancel',
'aZ09');
45$confirm =
GETPOST(
'confirm',
'alpha');
47$optioncss =
GETPOST(
'optioncss',
'aZ');
56$accountingaccount_number =
GETPOST(
'accountingaccount_number',
'alphanohtml');
57$accountingaccount->fetch(0, $accountingaccount_number,
true);
58$accountingaccount_label = $accountingaccount->label;
60$journal_code =
GETPOST(
'code_journal',
'alpha');
61$accountingjournal->fetch(0, $journal_code);
62$journal_label = $accountingjournal->label;
64$subledger_account =
GETPOST(
'subledger_account',
'alphanohtml');
65if ($subledger_account == -1) {
66 $subledger_account =
null;
68$subledger_label =
GETPOST(
'subledger_label',
'alphanohtml');
70$label_operation =
GETPOST(
'label_operation',
'alphanohtml');
74$save =
GETPOST(
'save',
'alpha');
78$update =
GETPOST(
'update',
'alpha');
80 $action =
'confirm_update';
84$hookmanager->initHooks(array(
'bookkeepingcard',
'globalcard'));
89if (!isModEnabled(
'accounting')) {
92if ($user->socid > 0) {
95if (!$user->hasRight(
'accounting',
'mouvements',
'lire')) {
99$permissiontoadd = $user->hasRight(
'accounting',
'mouvements',
'creer');
100$permissiontodelete = $user->hasRight(
'accounting',
'mouvements',
'supprimer');
107$parameters = array();
108$reshook = $hookmanager->executeHooks(
'doActions', $parameters,
$object, $action);
112if (empty($reshook)) {
114 header(
"Location: ".DOL_URL_ROOT.
'/accountancy/bookkeeping/list.php');
118 if ($action ==
"confirm_update" && $permissiontoadd) {
121 if (((
float) $debit != 0.0) && ((
float) $credit != 0.0)) {
126 if (empty($accountingaccount_number) || $accountingaccount_number ==
'-1') {
128 setEventMessages($langs->trans(
'ErrorFieldRequired', $langs->transnoentitiesnoconv(
"AccountAccountingShort")),
null,
'errors');
135 $result =
$object->fetch($id,
null, $mode);
140 $object->numero_compte = $accountingaccount_number;
141 $object->subledger_account = $subledger_account;
142 $object->subledger_label = $subledger_label;
143 $object->label_compte = $accountingaccount_label;
144 $object->label_operation = $label_operation;
148 if ((
float) $debit != 0.0) {
153 if ((
float) $credit != 0.0) {
159 $result =
$object->update($user,
false, $mode);
163 if ($mode !=
'_tmp') {
174 } elseif ($action ==
"add" && $permissiontoadd) {
177 if (((
float) $debit != 0.0) && ((
float) $credit != 0.0)) {
182 if (empty($accountingaccount_number) || $accountingaccount_number ==
'-1') {
184 setEventMessages($langs->trans(
'ErrorFieldRequired', $langs->transnoentitiesnoconv(
"AccountAccountingShort")),
null,
'errors');
197 $object->numero_compte = $accountingaccount_number;
198 $object->subledger_account = $subledger_account;
199 $object->subledger_label = $subledger_label;
200 $object->label_compte = $accountingaccount_label;
201 $object->label_operation = $label_operation;
206 $object->piece_num = $piece_num;
208 $object->code_journal = $journal_code;
209 $object->journal_label = $journal_label;
213 if ((
float) $debit != 0.0) {
219 if ((
float) $credit != 0.0) {
225 $result =
$object->createStd($user,
false, $mode);
230 if ($mode !=
'_tmp') {
240 } elseif ($action ==
"confirm_delete" && $permissiontoadd) {
243 $result =
$object->fetch($id,
null, $mode);
244 $piece_num = (int)
$object->piece_num;
251 $result =
$object->delete($user, 0, $mode);
257 } elseif ($action ==
"confirm_create" && $permissiontoadd) {
262 if (!$journal_code || $journal_code ==
'-1') {
263 setEventMessages($langs->trans(
'ErrorFieldRequired', $langs->transnoentitiesnoconv(
"Journal")),
null,
'errors');
267 if (!
GETPOST(
'doc_ref',
'alpha')) {
268 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"Piece")),
null,
'errors');
279 $object->doc_date = $date_start;
283 $object->code_journal = $journal_code;
284 $object->journal_label = $journal_label;
290 $result =
$object->createStd($user, 0, $mode);
297 $reshook = $hookmanager->executeHooks(
'afterCreateBookkeeping', $parameters,
$object, $action);
299 if ($mode !=
'_tmp') {
304 $piece_num = (int)
$object->piece_num;
309 if ($action ==
'setdate' && $permissiontoadd) {
311 $result =
$object->updateByMvt($piece_num,
'doc_date', $db->idate($datedoc), $mode);
315 if ($mode !=
'_tmp') {
322 if ($action ==
'setjournal' && $permissiontoadd) {
323 $result =
$object->updateByMvt($piece_num,
'code_journal', $journal_code, $mode);
324 $result =
$object->updateByMvt($piece_num,
'journal_label', $journal_label, $mode);
328 if ($mode !=
'_tmp') {
335 if ($action ==
'setdocref' && $permissiontoadd) {
336 $refdoc =
GETPOST(
'doc_ref',
'alpha');
337 $result =
$object->updateByMvt($piece_num,
'doc_ref', $refdoc, $mode);
341 if ($mode !=
'_tmp') {
349 if ($action ==
'valid' && $permissiontoadd) {
350 $result =
$object->transformTransaction(0, $piece_num);
354 header(
"Location: list.php?sortfield=t.piece_num&sortorder=asc");
360 $toselect = explode(
',',
GETPOST(
'toselect',
'alphanohtml'));
362 if ($action ==
'deletebookkeepingwriting' && $confirm ==
"yes" && $permissiontodelete) {
367 $nb_lettering = $lettering->bookkeepingLetteringAll($toselect,
true);
368 if ($nb_lettering < 0) {
377 foreach ($toselect as $toselectid) {
378 $result =
$object->fetch($toselectid);
379 if ($result >= 0 && (!isset(
$object->date_validation) ||
$object->date_validation ===
'')) {
388 } elseif ($result < 0) {
392 } elseif (isset(
$object->date_validation) &&
$object->date_validation !=
'') {
393 setEventMessages($langs->trans(
"ValidatedRecordWhereFound"),
null,
'errors');
406 } elseif ($nbok > 0) {
412 header(
"Location: ".DOL_URL_ROOT.
'/accountancy/bookkeeping/list.php?noreset=1');
426$form =
new Form($db);
429$title = $langs->trans(
"CreateMvts");
430$help_url =
'EN:Module_Double_Entry_Accounting|FR:Module_Comptabilité_en_Partie_Double';
432llxHeader(
'', $title, $help_url,
'', 0, 0,
'',
'',
'',
'mod-accountancy accountancy-consultation page-card');
435if ($action ==
'delete') {
436 $formconfirm = $form->formconfirm($_SERVER[
"PHP_SELF"].
'?id='.
$id.
'&mode='.$mode, $langs->trans(
'DeleteMvt'), $langs->trans(
'ConfirmDeleteMvt', $langs->transnoentitiesnoconv(
"RegistrationInAccounting")),
'confirm_delete',
'', 0, 1);
440if ($action ==
'create') {
444 $next_num_mvt =
$object->getNextNumMvt(
'_tmp');
446 if (empty($next_num_mvt)) {
450 print
'<form action="'.$_SERVER[
"PHP_SELF"].
'" name="create_mvt" method="POST">';
451 if ($optioncss !=
'') {
452 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
454 print
'<input type="hidden" name="token" value="'.newToken().
'">';
455 print
'<input type="hidden" name="action" value="confirm_create">'.
"\n";
456 print
'<input type="hidden" name="next_num_mvt" value="'.$next_num_mvt.
'">'.
"\n";
457 print
'<input type="hidden" name="mode" value="_tmp">'.
"\n";
461 print
'<table class="border centpercent">';
469 print
'<td class="titlefieldcreate fieldrequired">'.$langs->trans(
"Docdate").
'</td>';
471 print $form->selectDate(
'',
'doc_date', 0, 0, 0,
"create_mvt", 1, 1);
476 print
'<td class="fieldrequired">'.$langs->trans(
"Codejournal").
'</td>';
477 print
'<td>'.$formaccounting->select_journal($journal_code,
'code_journal', 0, 0, 1, 1).
'</td>';
481 print
'<td class="fieldrequired">'.$langs->trans(
"Piece").
'</td>';
482 print
'<td><input type="text" class="minwidth200" name="doc_ref" value="'.GETPOST(
'doc_ref',
'alpha').
'"></td>';
491 $reshookAddLine = $hookmanager->executeHooks(
'bookkeepingAddLine', $parameters,
$object, $action);
497 print $form->buttonsSaveCancel(
"Create");
503 $result =
$object->fetchPerMvt($piece_num, $mode);
508 if (!empty(
$object->piece_num)) {
509 $backlink =
'<a href="'.DOL_URL_ROOT.
'/accountancy/bookkeeping/list.php?restore_lastsearch_values=1">'.$langs->trans(
'BackToList').
'</a>';
519 $head[$h][0] = $_SERVER[
'PHP_SELF'].
'?piece_num='.((int)
$object->piece_num).($mode ?
'&mode='.$mode :
'');
520 $head[$h][1] = $langs->trans(
"Transaction");
521 $head[$h][2] =
'transaction';
529 $morehtmlref =
'<div style="clear: both;"></div>';
530 $morehtmlref .=
'<div class="refidno opacitymedium">';
531 $morehtmlref .=
$object->label;
532 $morehtmlref .=
'</div>';
534 dol_banner_tab(
$object,
'ref', $backlink, 1,
'piece_num',
'piece_num', $morehtmlref);
536 print
'<div class="fichecenter">';
538 print
'<div class="fichehalfleft">';
540 print
'<div class="underbanner clearboth"></div>';
541 print
'<table class="border tableforfield centpercent">';
545 print
'<td class="titlefield">'.$langs->trans(
"NumMvts").
'</td>';
546 print
'<td>'.($mode ==
'_tmp' ?
'<span class="opacitymedium" title="Id tmp '.$object->piece_num.
'">'.$langs->trans(
"Draft").
'</span>' :
$object->piece_num).
'</td>';
551 print
'<table class="nobordernopadding centpercent"><tr><td>';
552 print $langs->trans(
'Piece');
554 if ($action !=
'editdocref') {
555 print
'<td class="right">';
556 if ($permissiontoadd) {
557 print
'<a class="editfielda reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=editdocref&token='.
newToken().
'&piece_num='.((int)
$object->piece_num).
'&mode='.urlencode((
string) $mode).
'">'.
img_edit($langs->transnoentitiesnoconv(
'Edit'), 1).
'</a>';
561 print
'</tr></table>';
563 if ($action ==
'editdocref') {
564 print
'<form name="setdocref" action="'.$_SERVER[
"PHP_SELF"].
'?piece_num='.((int)
$object->piece_num).
'" method="POST">';
565 if ($optioncss !=
'') {
566 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
568 print
'<input type="hidden" name="token" value="'.newToken().
'">';
569 print
'<input type="hidden" name="action" value="setdocref">';
570 print
'<input type="hidden" name="mode" value="'.$mode.
'">';
571 print
'<input type="text" size="20" name="doc_ref" value="'.dol_escape_htmltag(
$object->doc_ref).
'">';
572 print
'<input type="submit" class="button button-edit" value="'.$langs->trans(
'Modify').
'">';
582 print
'<table class="nobordernopadding centpercent"><tr><td>';
583 print $langs->trans(
'Docdate');
585 if ($action !=
'editdate') {
586 print
'<td class="right">';
587 if ($permissiontoadd) {
588 print
'<a class="editfielda reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=editdate&token='.
newToken().
'&piece_num='.((int)
$object->piece_num).
'&mode='.urlencode((
string) $mode).
'">'.
img_edit($langs->transnoentitiesnoconv(
'SetDate'), 1).
'</a>';
592 print
'</tr></table>';
593 print
'</td><td colspan="3">';
594 if ($action ==
'editdate') {
595 print
'<form name="setdate" action="'.$_SERVER[
"PHP_SELF"].
'?piece_num='.((int)
$object->piece_num).
'" method="POST">';
596 if ($optioncss !=
'') {
597 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
599 print
'<input type="hidden" name="token" value="'.newToken().
'">';
600 print
'<input type="hidden" name="action" value="setdate">';
601 print
'<input type="hidden" name="mode" value="'.$mode.
'">';
602 print $form->selectDate(
$object->doc_date ?
$object->doc_date : -1,
'doc_date', 0, 0, 0,
"setdate");
603 print
'<input type="submit" class="button button-edit" value="'.$langs->trans(
'Modify').
'">';
613 print
'<table class="nobordernopadding" width="100%"><tr><td>';
614 print $langs->trans(
'Codejournal');
616 if ($action !=
'editjournal') {
617 print
'<td class="right">';
618 if ($permissiontoadd) {
619 print
'<a class="editfielda reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=editjournal&token='.
newToken().
'&piece_num='.((int)
$object->piece_num).
'&mode='.urlencode((
string) $mode).
'">'.
img_edit($langs->transnoentitiesnoconv(
'Edit'), 1).
'</a>';
623 print
'</tr></table>';
625 if ($action ==
'editjournal') {
626 print
'<form name="setjournal" action="'.$_SERVER[
"PHP_SELF"].
'?piece_num='.((int)
$object->piece_num).
'" method="POST">';
627 if ($optioncss !=
'') {
628 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
630 print
'<input type="hidden" name="token" value="'.newToken().
'">';
631 print
'<input type="hidden" name="action" value="setjournal">';
632 print
'<input type="hidden" name="mode" value="'.$mode.
'">';
633 print $formaccounting->select_journal(
$object->code_journal,
'code_journal', 0, 0, 0, 1, 1);
634 print
'<input type="submit" class="button button-edit" value="'.$langs->trans(
'Modify').
'">';
647 print
'<div class="fichehalfright">';
649 print
'<div class="underbanner clearboth"></div>';
650 print
'<table class="border tableforfield centpercent">';
653 if (!empty(
$object->doc_type)) {
655 print
'<td class="titlefield">'.$langs->trans(
"Doctype").
'</td>';
656 print
'<td>'.$object->doc_type.
'</td>';
662 print
'<td class="titlefield">'.$langs->trans(
"DateCreation").
'</td>';
671 print
'<td class="titlefield">' . $form->textwithpicto($langs->trans(
'DateDue'), $langs->trans(
"IfTransactionHasDueDate")) .
'</td>';
679 if ($mode !=
"_tmp") {
682 print
'<td class="titlefield">' . $langs->trans(
"DateExport") .
'</td>';
690 print
'<td class="titlefield">' . $langs->trans(
"DateValidation") .
'</td>';
697 if (!empty(
$object->import_key)) {
699 print
'<td class="titlefield">' . $langs->trans(
"ImportId") .
'</td>';
752 print
'<div class="clearboth"></div>';
758 $result =
$object->fetchAllPerMvt($piece_num, $mode);
764 $tmptoselect = array();
765 $atleastonevalidated = 0;
766 $atleastoneexported = 0;
767 foreach (
$object->linesmvt as $line) {
768 $tmptoselect[] = $line->id;
769 if (!empty($line->date_validation)) {
770 $atleastonevalidated = 1;
772 if (!empty($line->date_export) || !empty($line->date_validation)) {
773 $atleastoneexported = 1;
777 if ($mode !=
'_tmp' && !$atleastonevalidated) {
778 print
"\n".
'<div class="tabsAction">'.
"\n";
780 $parameters = array();
781 $reshook = $hookmanager->executeHooks(
'addMoreActionsButtons', $parameters,
$object, $action);
782 if (empty($reshook)) {
783 if ($permissiontodelete) {
784 if (!isset($hookmanager->resArray[
'no_button_edit']) || $hookmanager->resArray[
'no_button_edit'] != 1) {
785 print
dolGetButtonAction(
'', $langs->trans(
'Delete'),
'delete', DOL_URL_ROOT.
'/accountancy/bookkeeping/card.php?action=deletebookkeepingwriting&confirm=yes&token='.
newToken().
'&piece_num='.((
int)
$object->piece_num).
'&toselect='.implode(
',', $tmptoselect),
'', $permissiontodelete);
796 print
'<form action="'.$_SERVER[
"PHP_SELF"].
'?piece_num='.((int)
$object->piece_num).
'" method="POST">';
797 if ($optioncss !=
'') {
798 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
800 print
'<input type="hidden" name="token" value="'.newToken().
'">';
801 print
'<input type="hidden" name="doc_date" value="'.$object->doc_date.
'">'.
"\n";
802 print
'<input type="hidden" name="doc_type" value="'.$object->doc_type.
'">'.
"\n";
803 print
'<input type="hidden" name="doc_ref" value="'.$object->doc_ref.
'">'.
"\n";
804 print
'<input type="hidden" name="code_journal" value="'.$object->code_journal.
'">'.
"\n";
805 print
'<input type="hidden" name="fk_doc" value="'.$object->fk_doc.
'">'.
"\n";
806 print
'<input type="hidden" name="fk_docdet" value="'.$object->fk_docdet.
'">'.
"\n";
807 print
'<input type="hidden" name="mode" value="'.$mode.
'">'.
"\n";
809 if (count(
$object->linesmvt) > 0) {
810 print
'<div class="div-table-responsive-no-min">';
811 print
'<table class="noborder centpercent">';
816 print
'<tr class="liste_titre">';
823 if (empty(
$object->date_validation)) {
832 if (!empty(
$object->linesmvt[0])) {
833 $tmpline =
$object->linesmvt[0];
834 if (!empty($tmpline->numero_compte)) {
840 foreach (
$object->linesmvt as $line) {
841 $total_debit += $line->debit;
842 $total_credit += $line->credit;
844 if ($action ==
'update' && $line->id == $id) {
845 print
'<tr class="oddeven" data-lineid="'.((int) $line->id).
'">';
846 print
'<!-- td columns in edit mode -->';
848 print $formaccounting->select_account((GETPOSTISSET(
"accountingaccount_number") ?
GETPOST(
"accountingaccount_number",
"alpha") : $line->numero_compte),
'accountingaccount_number', 1, array(), 1, 1,
'minwidth200 maxwidth500');
856 print $formaccounting->select_auxaccount((GETPOSTISSET(
"subledger_account") ?
GETPOST(
"subledger_account",
"alpha") : $line->subledger_account),
'subledger_account', 1,
'maxwidth250',
'',
'subledger_label');
858 print
'<input type="text" class="maxwidth150" name="subledger_account" value="'.(GETPOSTISSET(
"subledger_account") ?
GETPOST(
"subledger_account",
"alpha") : $line->subledger_account).
'" placeholder="'.
dol_escape_htmltag($langs->trans(
"SubledgerAccount")).
'">';
861 print
'<br><input type="text" class="maxwidth150" name="subledger_label" value="'.(GETPOSTISSET(
"subledger_label") ?
GETPOST(
"subledger_label",
"alpha") : $line->subledger_label).
'" placeholder="'.
dol_escape_htmltag($langs->trans(
"SubledgerAccountLabel")).
'">';
863 print
'<td><input type="text" class="minwidth200" name="label_operation" value="'.(GETPOSTISSET(
"label_operation") ?
GETPOST(
"label_operation",
"alpha") : $line->label_operation).
'"></td>';
864 print
'<td class="right"><input type="text" class="right width50" name="debit" value="'.(GETPOSTISSET(
"debit") ?
GETPOST(
"debit",
"alpha") :
price($line->debit)).
'"></td>';
865 print
'<td class="right"><input type="text" class="right width50" name="credit" value="'.(GETPOSTISSET(
"credit") ?
GETPOST(
"credit",
"alpha") :
price($line->credit)).
'"></td>';
867 print
'<input type="hidden" name="id" value="'.$line->id.
'">'.
"\n";
868 print
'<input type="submit" class="button" name="update" value="'.$langs->trans(
"Update").
'">';
871 } elseif (empty($line->numero_compte) || (empty($line->debit) && empty($line->credit))) {
872 if (($action ==
"" || $action ==
'add') && $permissiontoadd) {
873 print
'<tr class="oddeven" data-lineid="'.((int) $line->id).
'">';
874 print
'<!-- td columns in add mode -->';
876 print $formaccounting->select_account($action ==
'add' ?
GETPOST(
'accountingaccount_number') :
'',
'accountingaccount_number', 1, array(), 1, 1,
'minwidth200 maxwidth500');
884 print $formaccounting->select_auxaccount(
'',
'subledger_account', 1,
'maxwidth250',
'',
'subledger_label');
886 print
'<input type="text" class="maxwidth150" name="subledger_account" value="" placeholder="' .
dol_escape_htmltag($langs->trans(
"SubledgerAccount")) .
'">';
888 print
'<br><input type="text" class="maxwidth150" name="subledger_label" value="" placeholder="' .
dol_escape_htmltag($langs->trans(
"SubledgerAccountLabel")) .
'">';
890 print
'<td><input type="text" class="minwidth200" name="label_operation" value="' .
dol_escape_htmltag($label_operation) .
'"/></td>';
891 print
'<td class="right"><input type="text" class="right width50" name="debit" value=""/></td>';
892 print
'<td class="right"><input type="text" class="right width50" name="credit" value=""/></td>';
893 print
'<td class="center"><input type="submit" class="button small" name="save" value="' . $langs->trans(
"Add") .
'"></td>';
897 print
'<tr class="oddeven" data-lineid="'.((int) $line->id).
'">';
898 print
'<!-- td columns in display mode -->';
899 $resultfetch = $accountingaccount->fetch(0, $line->numero_compte,
true);
901 if ($resultfetch > 0) {
902 print $accountingaccount->getNomUrl(0, 1, 1,
'', 0);
904 print
dol_escape_htmltag($line->numero_compte).
' <span class="warning">('.$langs->trans(
"AccountRemovedFromCurrentChartOfAccount").
')</span>';
907 print
'<td>'.length_accounta($line->subledger_account);
908 if ($line->subledger_label) {
909 print
' - <span class="opacitymedium">'.dol_escape_htmltag($line->subledger_label).
'</span>';
912 print
'<td>'.$line->label_operation.
'</td>';
913 print
'<td class="right nowraponall amount">'.($line->debit != 0 ?
price($line->debit) :
'').
'</td>';
914 print
'<td class="right nowraponall amount">'.($line->credit != 0 ?
price($line->credit) :
'').
'</td>';
916 print
'<td class="center nowraponall">';
917 if ($permissiontoadd) {
918 if (empty($line->date_export) && empty($line->date_validation)) {
919 print
'<a class="editfielda reposition" href="' . $_SERVER[
"PHP_SELF"] .
'?action=update&id=' . $line->id .
'&piece_num=' . ((int) $line->piece_num) .
'&mode=' . urlencode((
string) $mode) .
'&token=' . urlencode(
newToken()) .
'">';
920 print
img_edit(
'', 0,
'class="marginrightonly"');
923 print
'<a class="editfielda nohover cursornotallowed reposition disabled" href="#" title="'.dol_escape_htmltag($langs->trans(
"ForbiddenTransactionAlreadyExported")).
'">';
924 print
img_edit($langs->trans(
"ForbiddenTransactionAlreadyExported"), 0,
'class="marginrightonly"');
928 if (empty($line->date_validation)) {
929 $actiontodelete =
'delete';
930 if ($mode ==
'_tmp' || $action !=
'delmouv') {
931 $actiontodelete =
'confirm_delete';
934 print
'<a href="' . $_SERVER[
"PHP_SELF"] .
'?action=' . $actiontodelete .
'&id=' . $line->id .
'&piece_num=' . ((int) $line->piece_num) .
'&mode=' . urlencode((
string) $mode) .
'&token=' . urlencode(
newToken()) .
'">';
938 print
'<a class="editfielda nohover cursornotallowed disabled" href="#" title="'.dol_escape_htmltag($langs->trans(
"ForbiddenTransactionAlreadyExported")).
'">';
939 print
img_delete($langs->trans(
"ForbiddenTransactionAlreadyValidated"));
948 $total_debit =
price2num($total_debit,
'MT');
949 $total_credit =
price2num($total_credit,
'MT');
951 if ($total_debit != $total_credit) {
952 setEventMessages(
null, array($langs->trans(
'MvtNotCorrectlyBalanced', $total_debit, $total_credit)),
'warnings');
958 if ($mode ==
'_tmp' && $action ==
'' && $permissiontoadd) {
960 print
'<div class="center">';
961 if (empty($total_debit) && empty($total_credit)) {
962 print
'<input type="submit" class="button" disabled="disabled" href="#" title="'.dol_escape_htmltag($langs->trans(
"EnterNonEmptyLinesFirst")).
'" value="'.
dol_escape_htmltag($langs->trans(
"ValidTransaction")).
'">';
963 } elseif ($total_debit == $total_credit) {
964 print
'<a class="button" href="'.$_SERVER[
"PHP_SELF"].
'?piece_num='.((int)
$object->piece_num).
'&action=valid&token='.
newToken().
'">'.$langs->trans(
"ValidTransaction").
'</a>';
966 print
'<input type="submit" class="button" disabled="disabled" href="#" title="'.dol_escape_htmltag($langs->trans(
"MvtNotCorrectlyBalanced", $total_debit, $total_credit)).
'" value="'.
dol_escape_htmltag($langs->trans(
"ValidTransaction")).
'">';
970 print
'<a class="button button-cancel" href="'.DOL_URL_ROOT.
'/accountancy/bookkeeping/list.php">'.$langs->trans(
"Cancel").
'</a>';
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
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.
Class to manage accounting accounts.
Class to manage accounting journals.
Class to manage Ledger (General Ledger and Subledger)
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...
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
img_delete($titlealt='default', $other='class="pictodelete"', $morecss='')
Show delete logo.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
price($amount, $form=0, $outlangs='', $trunc=1, $rounding=-1, $forcerounding=-1, $currency_code='')
Function to format a value into an amount for visual output Function used into PDF and HTML pages.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
newToken()
Return the value of token currently saved into session with name 'newtoken'.
dolGetButtonAction($label, $text='', $actionType='default', $url='', $id='', $userRight=1, $params=array())
Function dolGetButtonAction.
print_liste_field_titre($name, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $tooltip="", $forcenowrapcolumntitle=0)
Show title line of an array.
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.
img_edit($titlealt='default', $float=0, $other='')
Show logo edit/modify fiche.
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...
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.