34require
'../../main.inc.php';
44require_once DOL_DOCUMENT_ROOT.
'/core/lib/bank.lib.php';
45require_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
46require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formaccounting.class.php';
47require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
48require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formbank.class.php';
49require_once DOL_DOCUMENT_ROOT.
'/compta/bank/class/account.class.php';
50require_once DOL_DOCUMENT_ROOT.
'/core/class/extrafields.class.php';
52 require_once DOL_DOCUMENT_ROOT.
'/categories/class/categorie.class.php';
55 require_once DOL_DOCUMENT_ROOT.
'/accountancy/class/accountingaccount.class.php';
58 require_once DOL_DOCUMENT_ROOT.
'/accountancy/class/accountingjournal.class.php';
62$langs->loadLangs(array(
"banks",
"bills",
"categories",
"companies",
"compta",
"withdrawals"));
64$action =
GETPOST(
'action',
'aZ09');
65$cancel =
GETPOST(
'cancel',
'alpha');
66$backtopage =
GETPOST(
'backtopage',
'alpha');
67$backtopageforcancel =
GETPOST(
'backtopageforcancel',
'alpha');
72$extrafields->fetch_name_optionals_label(
$object->table_element);
75$hookmanager->initHooks(array(
'bankcard',
'globalcard'));
80if ($action ==
'create' || $action ==
'add') {
94$result =
restrictedArea($user,
'banque', $id,
'bank_account&bank_account',
'',
'', $fieldid);
101$parameters = array();
102$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
107if (empty($reshook)) {
108 $backurlforlist = DOL_URL_ROOT.
'/compta/bank/list.php';
110 if (empty($backtopage) || ($cancel && empty($id))) {
111 if (empty($backtopage) || ($cancel && strpos($backtopage,
'__ID__'))) {
112 if (empty($id) && (($action !=
'add' && $action !=
'create') || $cancel)) {
113 $backtopage = $backurlforlist;
115 $backtopage = DOL_URL_ROOT.
'/compta/bank/card.php?id='.((!empty($id) &&
$id > 0) ? $id :
'__ID__');
121 if (!empty($backtopageforcancel)) {
122 header(
"Location: ".$backtopageforcancel);
124 } elseif (!empty($backtopage)) {
125 header(
"Location: ".$backtopage);
131 if ($action ==
'close' && $user->hasRight(
'banque',
'configurer')) {
137 $result =
$object->setStatut($object::STATUS_CLOSED,
null,
'',
'BANKACCOUNT_MODIFY');
140 if ($action ==
'reopen' && $user->hasRight(
'banque',
'configurer')) {
146 $result =
$object->setStatut($object::STATUS_OPEN,
null,
'',
'BANKACCOUNT_MODIFY');
149 if ($action ==
'add' && $user->hasRight(
'banque',
'configurer')) {
175 $object->address = trim(
GETPOST(
"account_address",
"alphanohtml"));
178 $object->owner_address = trim(
GETPOST(
"owner_address",
'alphanohtml'));
186 $account_number =
GETPOST(
'account_number',
'alphanohtml');
187 if (empty($account_number) || $account_number ==
'-1') {
190 $object->account_number = $account_number;
192 $fk_accountancy_journal =
GETPOSTINT(
'fk_accountancy_journal');
193 if ($fk_accountancy_journal <= 0) {
194 $object->fk_accountancy_journal = 0;
196 $object->fk_accountancy_journal = $fk_accountancy_journal;
210 $object->comment = trim(
GETPOST(
"account_comment",
'restricthtml'));
212 $object->fk_user_author = $user->id;
215 setEventMessages($langs->transnoentitiesnoconv(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"AccountancyCode")),
null,
'errors');
220 setEventMessages($langs->transnoentitiesnoconv(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"Ref")),
null,
'errors');
225 setEventMessages($langs->transnoentitiesnoconv(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"LabelBankCashAccount")),
null,
'errors');
231 $ret = $extrafields->setOptionalsFromPost(
null, $object,
'@GETPOSTISSET');
237 $categories =
GETPOST(
'categories',
'array:int');
238 $object->setCategories($categories);
254 $urltogo = $backtopage ? str_replace(
'__ID__', (
string)
$object->id, $backtopage) : $backurlforlist;
255 $urltogo = preg_replace(
'/--IDFORBACKTOPAGE--/', (
string)
$object->id, $urltogo);
257 if (empty($noback)) {
258 header(
"Location: " . $urltogo);
266 if ($action ==
'update' && $user->hasRight(
'banque',
'configurer')) {
293 $object->owner_address = trim(
GETPOST(
"owner_address",
'alphanohtml'));
301 $account_number =
GETPOST(
'account_number',
'alphanohtml');
302 if (empty($account_number) || $account_number ==
'-1') {
305 $object->account_number = $account_number;
307 $fk_accountancy_journal =
GETPOSTINT(
'fk_accountancy_journal');
308 if ($fk_accountancy_journal <= 0) {
309 $object->fk_accountancy_journal = 0;
311 $object->fk_accountancy_journal = $fk_accountancy_journal;
316 $object->address = trim(
GETPOST(
"account_address",
"alphanohtml"));
322 $object->comment = trim(
GETPOST(
"account_comment",
'restricthtml'));
325 setEventMessages($langs->transnoentitiesnoconv(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"AccountancyCode")),
null,
'errors');
330 setEventMessages($langs->transnoentitiesnoconv(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"Ref")),
null,
'errors');
335 setEventMessages($langs->transnoentitiesnoconv(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"LabelBankCashAccount")),
null,
'errors');
344 $ret = $extrafields->setOptionalsFromPost(
null, $object);
348 $result =
$object->update($user);
351 $categories =
GETPOST(
'categories',
'array:int');
352 $object->setCategories($categories);
369 if ($action ==
'confirm_delete' &&
GETPOST(
"confirm") ==
"yes" && $user->hasRight(
'banque',
'configurer')) {
373 $result =
$object->delete($user);
377 header(
"Location: " . DOL_URL_ROOT .
"/compta/bank/list.php");
396$countrynotdefined = $langs->trans(
"ErrorSetACountryFirst").
' ('.$langs->trans(
"SeeAbove").
')';
398$help_url =
'EN:Module_Banks_and_Cash|FR:Module_Banques_et_Caisses|ES:Módulo_Bancos_y_Cajas|DE:Modul_Banken_und_Barbestände';
399$title = $langs->trans(
"BankAccount");
400if ($action ==
'create') {
401 $title = $langs->trans(
"NewFinancialAccount");
402} elseif (!empty(
$object->ref)) {
403 $title =
$object->ref.
" - ".$langs->trans(
"Card");
409if ($action ==
'create') {
410 print
load_fiche_titre($langs->trans(
"NewFinancialAccount"),
'',
'bank_account');
412 if (
$conf->use_javascript_ajax) {
413 print
"\n".
'<script type="text/javascript">';
414 print
'jQuery(document).ready(function () {
415 jQuery("#type").change(function() {
416 document.formsoc.action.value="create";
417 document.formsoc.submit();
419 jQuery("#selectaccount_country_id").change(function() {
420 document.formsoc.action.value="create";
421 document.formsoc.submit();
424 print
'</script>'.
"\n";
427 print
'<form action="'.$_SERVER[
"PHP_SELF"].
'" name="formsoc" method="post">';
428 print
'<input type="hidden" name="token" value="'.newToken().
'">';
429 print
'<input type="hidden" name="action" value="add">';
430 print
'<input type="hidden" name="clos" value="0">';
431 print
'<input type="hidden" name="backtopage" value="'.$backtopage.
'">';
435 print
'<table class="border centpercent tableforfieldcreate">';
438 print
'<tr><td class="fieldrequired titlefieldcreate">'.$langs->trans(
"Ref").
'</td>';
439 print
'<td><input type="text" class="flat width100" name="ref" value="'.dol_escape_htmltag(
GETPOSTISSET(
'ref') ?
GETPOST(
"ref",
'alpha') :
$object->
ref).
'" maxlength="12" autofocus></td></tr>';
442 print
'<tr><td class="fieldrequired">'.$langs->trans(
"LabelBankCashAccount").
'</td>';
443 print
'<td><input type="text" class="flat maxwidth150onsmartphone" name="label" value="'.dol_escape_htmltag(
GETPOST(
'label',
'alpha')).
'"></td></tr>';
446 print
'<tr><td class="fieldrequired">'.$langs->trans(
"AccountType").
'</td>';
452 print
'<tr><td class="fieldrequired">'.$langs->trans(
"Currency").
'</td>';
454 $selectedcode =
$object->currency_code;
455 if (!$selectedcode) {
456 $selectedcode =
$conf->currency;
458 print $form->selectCurrency((
GETPOSTISSET(
"account_currency_code") ?
GETPOST(
"account_currency_code") : $selectedcode),
'account_currency_code');
464 print
'<tr><td class="fieldrequired">'.$langs->trans(
"Status").
'</td>';
466 print $form->selectarray(
"clos",
$object->labelStatus, (
GETPOSTINT(
'clos') !=
'' ?
GETPOSTINT(
'clos') :
$object->
status), 0, 0, 0,
'', 0, 0, 0,
'',
'minwidth100 maxwidth150onsmartphone');
472 $selectedcode =
GETPOST(
"account_country_id") ?
GETPOST(
"account_country_id") :
$object->country_code;
473 } elseif (empty($selectedcode)) {
474 $selectedcode =
$mysoc->country_code;
478 print
'<tr><td class="fieldrequired">'.$langs->trans(
"BankAccountCountry").
'</td>';
480 print
img_picto(
'',
'country',
'class="pictofixedwidth"');
481 print $form->select_country($selectedcode,
'account_country_id');
483 print
info_admin($langs->trans(
"YouCanChangeValuesForThisListFromDictionarySetup"), 1);
488 print
'<tr><td>'.$langs->trans(
'State').
'</td><td>';
490 print
img_picto(
'',
'state',
'class="pictofixedwidth"');
491 print $formcompany->select_state(
GETPOSTISSET(
"account_state_id") ?
GETPOSTINT(
"account_state_id") : 0, $selectedcode,
'account_state_id');
493 print $countrynotdefined;
500 print
'<tr><td>'.$langs->trans(
"BankAccountDomiciliation").
'</td><td>';
501 print
'<textarea class="flat quatrevingtpercent" name="account_address" rows="'.ROWS_2.
'">';
503 print
"</textarea></td></tr>";
507 print
'<tr><td>'.$langs->trans(
"Web").
'</td>';
509 print
img_picto(
'',
'globe',
'class="pictofixedwidth"');
510 print
'<input class="minwidth300 widthcentpercentminusx maxwidth500" type="text" class="flat" name="url" value="'.GETPOST(
"url").
'">';
515 print
'<tr><td>'.$langs->trans(
"Categories").
'</td><td>';
516 print $form->selectCategories(Categorie::TYPE_ACCOUNT,
'categories', $object);
521 print
'<tr><td>'.$langs->trans(
"Comment").
'</td>';
524 require_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
525 $doleditor =
new DolEditor(
'account_comment', (
GETPOST(
"account_comment") ?
GETPOST(
"account_comment") :
$object->comment),
'', 90,
'dolibarr_notes',
'', false, true,
isModEnabled(
'fckeditor') &&
getDolGlobalInt(
'FCKEDITOR_ENABLE_SOCIETE'), ROWS_4,
'90%');
526 $doleditor->Create();
530 $parameters = array();
531 $reshook = $hookmanager->executeHooks(
'formObjectOptions', $parameters, $object, $action);
532 print $hookmanager->resPrint;
533 if (empty($reshook)) {
534 print
$object->showOptionals($extrafields,
'create', $parameters);
541 print
'<table class="border centpercent">';
544 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"InitialBankBalance").
'</td>';
545 print
'<td><input size="12" type="text" class="flat" name="solde" value="'.(GETPOSTISSET(
"solde") ?
GETPOST(
"solde") :
price2num(
$object->solde)).
'"></td></tr>';
547 print
'<tr><td>'.$langs->trans(
"Date").
'</td>';
550 print $form->selectDate($startdate,
're', 0, 0, 0,
'formsoc');
553 print
'<tr><td>'.$langs->trans(
"BalanceMinimalAllowed").
'</td>';
554 print
'<td><input size="12" type="text" class="flat" name="account_min_allowed" value="'.(GETPOSTISSET(
"account_min_allowed") ?
GETPOST(
"account_min_allowed") :
$object->min_allowed).
'"></td></tr>';
556 print
'<tr><td>'.$langs->trans(
"BalanceMinimalDesired").
'</td>';
557 print
'<td><input size="12" type="text" class="flat" name="account_min_desired" value="'.(GETPOSTISSET(
"account_min_desired") ?
GETPOST(
"account_min_desired") :
$object->min_desired).
'"></td></tr>';
564 print
'<table class="border centpercent">';
567 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"BankName").
'</td>';
568 print
'<td><input type="text" class="flat minwidth150" name="bank" value="'.(GETPOSTISSET(
'bank') ?
GETPOST(
'bank',
'alpha') :
$object->bank).
'"></td>';
572 $bickey =
"BICNumber";
573 if (
$object->getCountryCode() ==
'IN') {
578 print
'<tr><td>'.$langs->trans($ibankey).
'</td>';
579 print
'<td><input maxlength="34" type="text" class="flat minwidth300" name="iban" value="'.(GETPOSTISSET(
'iban') ?
GETPOST(
'iban',
'alpha') :
$object->iban).
'"></td></tr>';
582 print
'<tr><td>'.$langs->trans($bickey).
'</td>';
583 print
'<td><input maxlength="11" type="text" class="flat minwidth150" name="bic" value="'.(GETPOSTISSET(
'bic') ?
GETPOST(
'bic',
'alpha') :
$object->bic).
'"></td></tr>';
587 foreach (
$object->getFieldsToShow() as $val) {
589 if ($val ==
'BankCode') {
590 $name =
'code_banque';
591 $sizecss =
'minwidth100';
592 $content =
$object->code_banque;
593 } elseif ($val ==
'DeskCode') {
594 $name =
'code_guichet';
595 $sizecss =
'minwidth100';
596 $content =
$object->code_guichet;
597 } elseif ($val ==
'BankAccountNumber') {
599 $sizecss =
'minwidth200';
601 } elseif ($val ==
'BankAccountNumberKey') {
603 $sizecss =
'minwidth50';
607 $sizecss =
'undefined';
608 $content =
'undefined';
611 print
'<td>'.$langs->trans($val).
'</td>';
612 print
'<td><input type="text" class="flat '.$sizecss.
'" name="'.$name.
'" value="'.(
GETPOSTISSET($name) ?
GETPOST($name,
'alpha') : $content).
'"></td>';
618 print
'<tr><td>'.$form->textwithpicto($langs->trans(
"SEPAXMLPlacePaymentTypeInformationInCreditTransfertransactionInformation"), $langs->trans(
"SEPAXMLPlacePaymentTypeInformationInCreditTransfertransactionInformationHelp")).
'</td>';
619 print
'<td><input type="checkbox" class="flat" name="pti_in_ctti"'. (empty(
GETPOST(
'pti_in_ctti')) ?
'' :
' checked ') .
'>';
626 print
'<table class="border centpercent">';
627 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"BankAccountOwner").
'</td>';
628 print
'<td><input type="text" class="flat minwidth300" name="proprio" value="'.(GETPOSTISSET(
'proprio') ?
GETPOST(
'proprio',
'alpha') :
$object->owner_name).
'">';
631 print
'<tr><td class="tdtop">'.$langs->trans(
"BankAccountOwnerAddress").
'</td><td>';
632 print
'<textarea class="flat quatrevingtpercent" name="owner_address" rows="'.ROWS_2.
'">';
634 print
"</textarea></td></tr>";
636 print
'<tr><td class="tdtop">'.$langs->trans(
"BankAccountOwnerZip").
'</td>';
637 print
'<td><input type="text" class="flat maxwidth100" name="owner_zip" value="'.(GETPOSTISSET(
'owner_zip') ?
GETPOST(
'owner_zip',
'alpha') :
$object->owner_zip).
'">';
640 print
'<tr><td class="tdtop">'.$langs->trans(
"BankAccountOwnerTown").
'</td>';
641 print
'<td><input type="text" class="flat maxwidth200" name="owner_town" value="'.(GETPOSTISSET(
'owner_town') ?
GETPOST(
'owner_town',
'alpha') :
$object->owner_town).
'">';
644 print
'<tr><td class="tdtop">'.$langs->trans(
"BankAccountOwnerCountry").
'</td>';
646 print
img_picto(
'',
'country',
'class="pictofixedwidth"');
647 print $form->select_country(
GETPOSTISSET(
'owner_country_id') ?
GETPOST(
'owner_country_id',
'alpha') :
$object->owner_country_id,
'owner_country_id');
654 print
'<table class="border centpercent">';
658 $fieldrequired =
'fieldrequired ';
663 print
'<tr><td class="'.$fieldrequired.
'titlefieldcreate">'.$langs->trans(
"AccountancyCode").
'</td>';
665 print
img_picto(
'',
'accounting_account',
'class="pictofixedwidth"');
666 print $formaccounting->select_account(
$object->account_number,
'account_number', 1, array(), 1, 1);
667 if ($formaccounting->nbaccounts == 0) {
668 $langs->load(
"errors");
669 $htmltext = $langs->transnoentitiesnoconv(
"WarningGoOnAccountancySetupToAddAccounts", $langs->transnoentitiesnoconv(
"MenuAccountancy"), $langs->transnoentitiesnoconv(
"Setup"), $langs->transnoentitiesnoconv(
"Chartofaccounts"));
670 print $form->textwithpicto(
'', $htmltext);
674 print
'<tr><td class="'.$fieldrequired.
'titlefieldcreate">'.$langs->trans(
"AccountancyCode").
'</td>';
675 print
'<td><input type="text" name="account_number" value="'.(GETPOST(
"account_number") ?
GETPOST(
'account_number',
'alpha') :
$object->account_number).
'"></td></tr>';
681 print
'<tr><td class="'.$fieldrequired.
'titlefieldcreate">'.$langs->trans(
"AccountancyJournal").
'</td>';
683 print $formaccounting->select_journal((
string)
$object->fk_accountancy_journal,
'fk_accountancy_journal', 4, 1, 0, 0);
691 print $form->buttonsSaveCancel(
"CreateAccount");
700 print
dol_get_fiche_head($head,
'bankname', $langs->trans(
"FinancialAccount"), -1,
'account', 0,
'',
'', 0,
'', 1);
705 if ($action ==
'delete') {
706 $formconfirm = $form->formconfirm($_SERVER[
"PHP_SELF"].
'?id='.
$object->id, $langs->trans(
"DeleteAccount"), $langs->trans(
"ConfirmDeleteAccount"),
"confirm_delete");
712 $linkback =
'<a href="'.DOL_URL_ROOT.
'/compta/bank/list.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
715 dol_banner_tab($object,
'ref', $linkback, 1,
'ref',
'ref', $morehtmlref);
717 print
'<div class="fichecenter">';
718 print
'<div class="fichehalfleft">';
719 print
'<div class="underbanner clearboth"></div>';
721 print
'<table class="border centpercent tableforfield">';
724 print
'<tr><td class="titlefieldmiddle">'.$langs->trans(
"AccountType").
'</td>';
725 print
'<td>'.$object->type_lib[
$object->type].
'</td></tr>';
728 print
'<tr><td>'.$langs->trans(
"Currency").
'</td>';
730 $selectedcode =
$object->currency_code;
731 if (!$selectedcode) {
732 $selectedcode =
$conf->currency;
734 print $langs->trans(
"Currency".$selectedcode);
738 print
'<tr><td>'.$langs->trans(
"Conciliable").
'</td>';
740 $conciliate =
$object->canBeConciliated();
741 if ($conciliate == -2) {
742 print $langs->trans(
"No").
' <span class="opacitymedium">('.$langs->trans(
"CashAccount").
')</span>';
743 } elseif ($conciliate == -3) {
744 print $langs->trans(
"No").
' <span class="opacitymedium">('.$langs->trans(
"Closed").
')</span>';
746 print(
$object->rappro == 1 ? $langs->trans(
"Yes") : ($langs->trans(
"No").
' <span class="opacitymedium">('.$langs->trans(
"ConciliationDisabled").
')</span>'));
750 print
'<tr><td>'.$langs->trans(
"BalanceMinimalAllowed").
'</td>';
751 print
'<td>'.$object->min_allowed.
'</td></tr>';
753 print
'<tr><td>'.$langs->trans(
"BalanceMinimalDesired").
'</td>';
754 print
'<td>'.$object->min_desired.
'</td></tr>';
757 print
'<tr class="liste_titre_add"><td class="titlefield">'.$langs->trans(
"AccountancyCode").
'</td>';
760 if (empty(
$object->account_number)) {
764 $accountingaccount->fetch(0,
$object->account_number, 1);
765 print $accountingaccount->getNomUrl(0, 1, 1,
'', 1);
774 print
'<tr><td>'.$langs->trans(
"AccountancyJournal").
'</td>';
776 if (empty(
$object->fk_accountancy_journal)) {
778 } elseif (
$object->fk_accountancy_journal > 0) {
780 $accountingjournal->fetch(
$object->fk_accountancy_journal);
781 print $accountingjournal->getNomUrl(0, 1, 1,
'', 1);
788 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_view.tpl.php';
793 print
'<div class="fichehalfright">';
794 print
'<div class="underbanner clearboth"></div>';
796 print
'<table class="border tableforfield centpercent">';
800 print
'<tr><td class="titlefield">'.$langs->trans(
"Categories").
'</td><td>';
801 print $form->showCategories(
$object->id, Categorie::TYPE_ACCOUNT, 1);
805 print
'<tr><td class="tdtop titlefield">'.$langs->trans(
"Comment").
'</td>';
806 print
'<td>'.dol_htmlentitiesbr(
$object->comment).
'</td></tr>';
811 print
'<table class="border tableforfield centpercent">';
813 print
'<tr><td class="titlefieldmiddle">'.$langs->trans(
"BankName").
'</td>';
814 print
'<td>'.$object->bank.
'</td></tr>';
817 $bickey =
"BICNumber";
818 if (
$object->getCountryCode() ==
'IN') {
823 print
'<tr><td>'.$langs->trans($ibankey).
'</td>';
824 print
'<td>'.getIbanHumanReadable($object).
' ';
827 print
img_picto($langs->trans(
"IbanNotValid"),
'warning');
829 print
img_picto($langs->trans(
"IbanValid"),
'tick');
835 print
'<tr><td>'.$langs->trans($bickey).
'</td>';
836 print
'<td>'.$object->bic.
' ';
839 print
img_picto($langs->trans(
"SwiftNotValid"),
'warning');
841 print
img_picto($langs->trans(
"SwiftValid"),
'tick');
849 foreach (
$object->getFieldsToShow() as $val) {
851 if ($val ==
'BankCode') {
852 $content =
$object->code_banque;
853 } elseif ($val ==
'DeskCode') {
854 $content =
$object->code_guichet;
855 } elseif ($val ==
'BankAccountNumber') {
857 } elseif ($val ==
'BankAccountNumberKey') {
861 print
'<tr><td>'.$langs->trans($val).
'</td>';
862 print
'<td>'.$content.
'</td>';
867 print
'<tr><td>'.$form->textwithpicto($langs->trans(
"ICS"), $langs->trans(
"ICS").
' ('.$langs->trans(
"UsedFor", $langs->transnoentitiesnoconv(
"StandingOrder")).
')').
'</td>';
868 print
'<td>'.$object->ics.
'</td>';
874 print
'<tr><td>'.$form->textwithpicto($langs->trans(
"IDS"), $langs->trans(
"IDS").
' ('.$langs->trans(
"UsedFor", $langs->transnoentitiesnoconv(
"BankTransfer")).
')').
'</td>';
875 print
'<td>'.$object->ics_transfer.
'</td>';
879 print
'<tr><td>'.$form->textwithpicto($langs->trans(
"SEPAXMLPlacePaymentTypeInformationInCreditTransfertransactionInformation"), $langs->trans(
"SEPAXMLPlacePaymentTypeInformationInCreditTransfertransactionInformationHelp")).
'</td><td>';
880 print(empty(
$object->pti_in_ctti) ? $langs->trans(
"No") : $langs->trans(
"Yes"));
881 print
"</td></tr>\n";
885 print
'<tr><td>'.$langs->trans(
"BankAccountOwner").
'</td><td>';
887 print
"</td></tr>\n";
889 print
'<tr><td>'.$langs->trans(
"BankAccountOwnerAddress").
'</td><td>';
890 print nl2br(
$object->owner_address);
891 print
"</td></tr>\n";
893 print
'<tr><td>'.$langs->trans(
"BankAccountOwnerZip").
'</td>';
894 print
'<td>'.dol_escape_htmltag(
$object->owner_zip);
897 print
'<tr><td>'.$langs->trans(
"BankAccountOwnerTown").
'</td>';
898 print
'<td>'.dol_escape_htmltag(
$object->owner_town);
901 print
'<tr><td>'.$langs->trans(
"BankAccountOwnerCountry").
'</td>';
904 $langs->load(
"dict");
905 print(empty(
$object->owner_country_code) ?
'' : $langs->convToOutputCharset($langs->transnoentitiesnoconv(
"Country".
$object->owner_country_code)));
915 print
'<div class="clearboth"></div>';
922 print
'<div class="tabsAction">';
923 $parameters = array();
924 $reshook = $hookmanager->executeHooks(
'addMoreActionsButtons', $parameters, $object, $action);
929 if (empty($reshook)) {
930 if ($user->hasRight(
'banque',
'configurer') &&
$object->status == $object::STATUS_CLOSED) {
931 print
'<a class="butAction" href="'.$_SERVER[
"PHP_SELF"].
'?action=reopen&token='.
newToken().
'&id='.
$object->id.
'">'.$langs->trans(
"ReOpen").
'</a>';
934 if ($user->hasRight(
'banque',
'configurer') &&
$object->status == $object::STATUS_OPEN) {
935 print
'<a class="butAction" href="'.$_SERVER[
"PHP_SELF"].
'?action=edit&token='.
newToken().
'&id='.
$object->id.
'">'.$langs->trans(
"Modify").
'</a>';
938 if ($user->hasRight(
'banque',
'configurer') &&
$object->status == $object::STATUS_OPEN) {
939 print
'<a class="butAction" href="'.$_SERVER[
"PHP_SELF"].
'?action=close&token='.
newToken().
'&id='.
$object->id.
'">'.$langs->trans(
"Close").
'</a>';
942 $canbedeleted =
$object->can_be_deleted();
943 if ($user->hasRight(
'banque',
'configurer') && $canbedeleted) {
944 print
'<a class="butActionDelete" href="'.$_SERVER[
"PHP_SELF"].
'?action=delete&token='.
newToken().
'&id='.
$object->id.
'">'.$langs->trans(
"Delete").
'</a>';
957 if (
GETPOSTINT(
'id') && $action ==
'edit' && $user->hasRight(
'banque',
'configurer')) {
958 print
load_fiche_titre($langs->trans(
"EditFinancialAccount"),
'',
'bank_account');
960 if (
$conf->use_javascript_ajax) {
961 print
"\n".
'<script type="text/javascript">';
962 print
'jQuery(document).ready(function () {
963 jQuery("#type").change(function() {
964 document.formsoc.action.value="edit";
965 document.formsoc.submit();
969 print
'jQuery(document).ready(function () {
970 jQuery("#selectaccount_country_id").change(function() {
971 document.formsoc.action.value="edit";
972 document.formsoc.submit();
975 print
'</script>'.
"\n";
978 print
'<form action="'.$_SERVER[
"PHP_SELF"].
'?id='.
$object->id.
'" method="post" name="formsoc">';
979 print
'<input type="hidden" name="token" value="'.newToken().
'">';
980 print
'<input type="hidden" name="action" value="update">';
981 print
'<input type="hidden" name="id" value="'.GETPOSTINT(
"id").
'">'.
"\n\n";
982 print
'<input type="hidden" name="backtopage" value="'.$backtopage.
'">';
988 print
'<table class="border centpercent tableforfieldcreate">';
991 print
'<tr><td class="fieldrequired titlefieldcreate">'.$langs->trans(
"Ref").
'</td>';
992 print
'<td><input type="text" class="flat maxwidth200" name="ref" value="'.dol_escape_htmltag(
GETPOSTISSET(
'ref') ?
GETPOST(
'ref',
'alpha') :
$object->
ref).
'" maxlength="12" autofocus></td></tr>';
995 print
'<tr><td class="fieldrequired">'.$langs->trans(
"Label").
'</td>';
996 print
'<td><input type="text" class="flat minwidth300" name="label" value="'.dol_escape_htmltag(
GETPOSTISSET(
'label') ?
GETPOST(
'label',
'alpha') :
$object->label).
'"></td></tr>';
999 print
'<tr><td class="fieldrequired">'.$langs->trans(
"AccountType").
'</td>';
1000 print
'<td class="maxwidth200onsmartphone">';
1005 print
'<tr><td class="fieldrequired">'.$langs->trans(
"Currency");
1006 print
'<input type="hidden" value="'.$object->currency_code.
'">';
1008 print
'<td class="maxwidth200onsmartphone">';
1009 $selectedcode =
$object->currency_code;
1010 if (!$selectedcode) {
1011 $selectedcode =
$conf->currency;
1013 print
img_picto(
'',
'multicurrency',
'class="pictofixedwidth"');
1014 print $form->selectCurrency((
GETPOSTISSET(
"account_currency_code") ?
GETPOST(
"account_currency_code") : $selectedcode),
'account_currency_code');
1020 print
'<tr><td class="fieldrequired">'.$langs->trans(
"Status").
'</td>';
1021 print
'<td class="maxwidth200onsmartphone">';
1027 $selectedcode =
$object->country_code;
1029 $selectedcode =
GETPOST(
"account_country_id");
1030 } elseif (empty($selectedcode)) {
1031 $selectedcode =
$mysoc->country_code;
1035 print
'<tr><td class="fieldrequired">'.$langs->trans(
"Country").
'</td>';
1036 print
'<td class="maxwidth200onsmartphone">';
1037 print
img_picto(
'',
'country',
'class="pictofixedwidth"').$form->select_country($selectedcode,
'account_country_id');
1039 print
info_admin($langs->trans(
"YouCanChangeValuesForThisListFromDictionarySetup"), 1);
1044 print
'<tr><td>'.$langs->trans(
'State').
'</td><td class="maxwidth200onsmartphone">';
1045 if ($selectedcode) {
1046 print
img_picto(
'',
'state',
'class="pictofixedwidth"');
1047 print $formcompany->select_state(
GETPOSTISSET(
"account_state_id") ?
GETPOST(
"account_state_id") :
$object->state_id, $selectedcode,
'account_state_id');
1049 print $countrynotdefined;
1056 print
'<tr><td>'.$langs->trans(
"BankAccountDomiciliation").
'</td><td>';
1057 print
'<textarea class="flat quatrevingtpercent" name="account_address" rows="'.ROWS_2.
'">';
1059 print
"</textarea></td></tr>";
1063 print
'<tr><td>'.$langs->trans(
"Conciliable").
'</td>';
1065 $conciliate =
$object->canBeConciliated();
1066 if ($conciliate == -2) {
1067 print $langs->trans(
"No").
' <span class="opacitymedium">('.$langs->trans(
"CashAccount").
')</span>';
1068 } elseif ($conciliate == -3) {
1069 print $langs->trans(
"No").
' <span class="opacitymedium">('.$langs->trans(
"Closed").
')</span>';
1071 print
'<input type="checkbox" class="flat" id="norappro" name="norappro"'.(($conciliate > 0) ?
'' :
' checked="checked"').
'"> <label for="norappro" class="opacitymedium">'.$langs->trans(
"DisableConciliation").
'</label>';
1076 print
'<tr><td>'.$langs->trans(
"BalanceMinimalAllowed").
'</td>';
1077 print
'<td><input size="12" type="text" class="flat" name="account_min_allowed" value="'.(GETPOSTISSET(
"account_min_allowed") ?
GETPOST(
"account_min_allowed") :
$object->min_allowed).
'"></td></tr>';
1079 print
'<tr><td>'.$langs->trans(
"BalanceMinimalDesired").
'</td>';
1080 print
'<td><input size="12" type="text" class="flat" name="account_min_desired" value="'.(GETPOSTISSET(
"account_min_desired") ?
GETPOST(
"account_min_desired") :
$object->min_desired).
'"></td></tr>';
1083 print
'<tr><td>'.$langs->trans(
"Web").
'</td>';
1085 print
img_picto(
'',
'globe',
'class="pictofixedwidth"');
1086 print
'<input class="maxwidth200onsmartphone" type="text" class="flat" name="url" value="'.(GETPOSTISSET(
"url") ?
GETPOST(
"url") :
$object->url).
'">';
1091 print
'<tr><td>'.$langs->trans(
"Categories").
'</td><td>';
1092 print $form->selectCategories(Categorie::TYPE_ACCOUNT,
'categories', $object);
1097 print
'<tr><td class="tdtop">'.$langs->trans(
"Comment").
'</td>';
1100 require_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
1101 $doleditor =
new DolEditor(
'account_comment', (
GETPOST(
"account_comment") ?
GETPOST(
"account_comment") :
$object->comment),
'', 90,
'dolibarr_notes',
'', false, true,
isModEnabled(
'fckeditor') &&
getDolGlobalInt(
'FCKEDITOR_ENABLE_SOCIETE'), ROWS_4,
'95%');
1102 $doleditor->Create();
1106 $parameters = array();
1107 $reshook = $hookmanager->executeHooks(
'formObjectOptions', $parameters, $object, $action);
1108 print $hookmanager->resPrint;
1109 if (empty($reshook)) {
1110 print
$object->showOptionals($extrafields,
'edit', $parameters);
1119 print
'<table class="border centpercent">';
1122 $tdextra =
' class="titlefieldcreate"';
1125 $tdextra =
' class="fieldrequired titlefieldcreate"';
1128 print
'<tr><td'.$tdextra.
'>'.$langs->trans(
"AccountancyCode").
'</td>';
1132 print
img_picto(
'',
'accounting_account',
'class="pictofixedwidth"');
1133 print $formaccounting->select_account(
$object->account_number,
'account_number', 1, array(), 1, 1);
1134 if ($formaccounting->nbaccounts == 0) {
1135 $langs->load(
"errors");
1136 $htmltext = $langs->transnoentitiesnoconv(
"WarningGoOnAccountancySetupToAddAccounts", $langs->transnoentitiesnoconv(
"MenuAccountancy"), $langs->transnoentitiesnoconv(
"Setup"), $langs->transnoentitiesnoconv(
"Chartofaccounts"));
1137 print $form->textwithpicto(
'', $htmltext);
1140 print
'<input type="text" name="account_number" value="'.(GETPOST(
"account_number") ?
GETPOST(
"account_number") :
$object->account_number).
'">';
1147 print
'<tr><td class="fieldrequired">'.$langs->trans(
"AccountancyJournal").
'</td>';
1149 print $formaccounting->select_journal((
string)
$object->fk_accountancy_journal,
'fk_accountancy_journal', 4, 1, 0, 0);
1159 print
'<table class="border centpercent">';
1162 print
'<tr class="liste_titre_add"><td class="titlefieldcreate">'.$langs->trans(
"BankName").
'</td>';
1163 print
'<td><input type="text" class="flat width300" name="bank" value="'.$object->bank.
'"></td>';
1167 $bickey =
"BICNumber";
1168 if (
$object->getCountryCode() ==
'IN') {
1174 $tooltip = $langs->trans(
"Example").
':<br>CH93 0076 2011 6238 5295 7<br>LT12 1000 0111 0100 1000<br>FR14 2004 1010 0505 0001 3M02 606<br>LU28 0019 4006 4475 0000<br>DE89 3704 0044 0532 0130 00';
1175 print $form->textwithpicto($langs->trans($ibankey), $tooltip, 1,
'help',
'', 0, 3,
'iban');
1177 print
'<td><input class="minwidth300 maxwidth200onsmartphone" maxlength="34" type="text" class="flat" name="iban" value="'.(GETPOSTISSET(
'iban') ?
GETPOST(
'iban',
'alphanohtml') :
$object->iban).
'"></td></tr>';
1181 $tooltip = $langs->trans(
"Example").
': LIABLT2XXXX';
1182 print $form->textwithpicto($langs->trans($bickey), $tooltip, 1,
'help',
'', 0, 3,
'bic');
1184 print
'<td><input class="minwidth150 maxwidth200onsmartphone" maxlength="11" type="text" class="flat" name="bic" value="'.(GETPOSTISSET(
'bic') ?
GETPOST(
'bic',
'alphanohtml') :
$object->bic).
'"></td></tr>';
1187 foreach (
$object->getFieldsToShow() as $val) {
1189 if ($val ==
'BankCode') {
1190 $name =
'code_banque';
1192 $content =
$object->code_banque;
1193 } elseif ($val ==
'DeskCode') {
1194 $name =
'code_guichet';
1196 $content =
$object->code_guichet;
1197 } elseif ($val ==
'BankAccountNumber') {
1201 } elseif ($val ==
'BankAccountNumberKey') {
1206 $name =
'undefined';
1208 $content =
'undefined';
1211 print
'<tr><td>'.$langs->trans($val).
'</td>';
1212 print
'<td><input type="text" class="flat '.$css.
'" name="'.$name.
'" value="'.
dol_escape_htmltag($content).
'"></td>';
1217 print
'<tr><td>'.$form->textwithpicto($langs->trans(
"ICS"), $langs->trans(
"ICS").
' ('.$langs->trans(
"UsedFor", $langs->transnoentitiesnoconv(
"StandingOrder")).
')').
'</td>';
1218 print
'<td><input class="minwidth150 maxwidth200onsmartphone" maxlength="32" type="text" class="flat" name="ics" value="'.(GETPOSTISSET(
'ics') ?
GETPOST(
'ics',
'alphanohtml') :
$object->ics).
'"></td></tr>';
1223 print
'<tr><td>'.$form->textwithpicto($langs->trans(
"IDS"), $langs->trans(
"IDS").
' ('.$langs->trans(
"UsedFor", $langs->transnoentitiesnoconv(
"BankTransfer")).
')').
'</td>';
1224 print
'<td><input class="minwidth150 maxwidth200onsmartphone" maxlength="32" type="text" class="flat" name="ics_transfer" value="'.(GETPOSTISSET(
'ics_transfer') ?
GETPOST(
'ics_transfer',
'alphanohtml') :
$object->ics_transfer).
'"></td></tr>';
1226 if (
$mysoc->isInSEPA()) {
1227 print
'<tr><td>'.$form->textwithpicto($langs->trans(
"SEPAXMLPlacePaymentTypeInformationInCreditTransfertransactionInformation"), $langs->trans(
"SEPAXMLPlacePaymentTypeInformationInCreditTransfertransactionInformationHelp")).
'</td>';
1228 print
'<td><input type="checkbox" class="flat" name="pti_in_ctti"'. (
$object->pti_in_ctti ?
' checked ' :
'') .
'>';
1237 print
'<table class="border centpercent">';
1239 print
'<tr><td>'.$langs->trans(
"BankAccountOwner").
'</td>';
1240 print
'<td><input class="maxwidth200onsmartphone" type="text" class="flat" name="proprio" value="'.(GETPOSTISSET(
'proprio') ?
GETPOST(
'proprio',
'alpha') :
$object->owner_name).
'"></td>';
1243 print
'<tr><td class="titlefieldcreate tdtop">'.$langs->trans(
"BankAccountOwnerAddress").
'</td><td>';
1244 print
'<textarea class="flat quatrevingtpercent" name="owner_address" rows="'.ROWS_2.
'">';
1246 print
"</textarea></td></tr>";
1248 print
'<tr><td class="tdtop">'.$langs->trans(
"BankAccountOwnerZip").
'</td>';
1249 print
'<td><input type="text" class="flat maxwidth100" name="owner_zip" value="'.(GETPOSTISSET(
'owner_zip') ?
GETPOST(
'owner_zip',
'alpha') :
$object->owner_zip).
'">';
1252 print
'<tr><td class="tdtop">'.$langs->trans(
"BankAccountOwnerTown").
'</td>';
1253 print
'<td><input type="text" class="flat maxwidth200" name="owner_town" value="'.(GETPOSTISSET(
'owner_town') ?
GETPOST(
'owner_town',
'alpha') :
$object->owner_town).
'">';
1256 print
'<tr><td class="tdtop">'.$langs->trans(
"BankAccountOwnerCountry").
'</td>';
1258 print
img_picto(
'',
'country',
'class="pictofixedwidth"');
1259 print $form->select_country(
GETPOSTISSET(
'owner_country_id') ?
GETPOST(
'owner_country_id',
'alpha') :
$object->owner_country_id,
'owner_country_id');
1267 print $form->buttonsSaveCancel(
"Modify");
$id
Support class for third parties, contacts, members, users or resources.
if(! $sortfield) if(! $sortorder) $object
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
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.
checkIbanForAccount($account=null, $ibantocheck=null)
Check IBAN number information for a bank account.
bank_prepare_head(Account $object)
Prepare array with list of tabs.
checkSwiftForAccount($account=null, $swift=null)
Check SWIFT information for a bank account.
Class to manage bank accounts.
const TYPE_SAVINGS
Savings account.
const TYPE_CURRENT
Current account.
Class to manage accounting accounts.
Class to manage accounting journals.
Class to manage a WYSIWYG editor.
print $langs trans("Ref").' m titre as m m statut as status
Or an array listing all the potential status of the object: array: int of the status => translated la...
getCountry($searchkey, $withcode='', $dbtouse=null, $outputlangs=null, $entconv=1, $searchlabel='')
Return country label, code or id from an id, code or label.
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...
dol_getIdFromCode($db, $key, $tablename, $fieldkey='code', $fieldid='id', $entityfilter=0, $filters='', $useCache=true)
Return an id or code from a code or id.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
Show picto whatever it's its name (generic function)
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0, $morecssdiv='')
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.
dol_string_nospecial($str, $newstr='_', $badcharstoreplace='', $badcharstoremove='', $keepspaces=0)
Clean a string from all punctuation characters to use it as a ref or login.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
newToken()
Return the value of token currently saved into session with name 'newtoken'.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0, $nodefault=0)
Return value of a param into GET or POST supervariable.
GETPOSTFLOAT($paramname, $rounding='', $option=2)
Return the value of a $_GET or $_POST supervariable, converted into float.
GETPOSTINT($paramname, $method=0, $nodefault=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='', $morecssonpicto='widthpictotitle')
Load a title with picto.
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname from a POST of a form.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
info_admin($text, $infoonimgalt=0, $nodiv=0, $admin='1', $morecss='hideonsmartphone', $textfordropdown='', $picto='', $textonpictotooltip='', $cssfordropdown='info_admin')
Show information in HTML for admin users or standard users.
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...
div refaddress div address
if(preg_match('/(crypted|dolcrypt):/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type
'integer', 'integer:ObjectClass:PathToClass[:AddCreateButtonOrNot[:Filter[:Sortfield]]]',...
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.