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'));
90$result =
restrictedArea($user,
'banque', $id,
'bank_account&bank_account',
'',
'', $fieldid);
98$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
103if (empty($reshook)) {
104 $backurlforlist = DOL_URL_ROOT.
'/compta/bank/list.php';
106 if (empty($backtopage) || ($cancel && empty($id))) {
107 if (empty($backtopage) || ($cancel && strpos($backtopage,
'__ID__'))) {
108 if (empty($id) && (($action !=
'add' && $action !=
'create') || $cancel)) {
109 $backtopage = $backurlforlist;
111 $backtopage = DOL_URL_ROOT.
'/compta/bank/card.php?id='.((!empty($id) &&
$id > 0) ? $id :
'__ID__');
117 if (!empty($backtopageforcancel)) {
118 header(
"Location: ".$backtopageforcancel);
120 } elseif (!empty($backtopage)) {
121 header(
"Location: ".$backtopage);
127 if ($action ==
'close' && $user->hasRight(
'banque',
'configurer')) {
133 $result =
$object->setStatut($object::STATUS_CLOSED,
null,
'',
'BANKACCOUNT_MODIFY');
136 if ($action ==
'reopen' && $user->hasRight(
'banque',
'configurer')) {
142 $result =
$object->setStatut($object::STATUS_OPEN,
null,
'',
'BANKACCOUNT_MODIFY');
145 if ($action ==
'add' && $user->hasRight(
'banque',
'configurer')) {
171 $object->address = trim(
GETPOST(
"account_address",
"alphanohtml"));
174 $object->owner_address = trim(
GETPOST(
"owner_address",
'alphanohtml'));
182 $account_number =
GETPOST(
'account_number',
'alphanohtml');
183 if (empty($account_number) || $account_number ==
'-1') {
186 $object->account_number = $account_number;
188 $fk_accountancy_journal =
GETPOSTINT(
'fk_accountancy_journal');
189 if ($fk_accountancy_journal <= 0) {
190 $object->fk_accountancy_journal = 0;
192 $object->fk_accountancy_journal = $fk_accountancy_journal;
206 $object->comment = trim(
GETPOST(
"account_comment",
'restricthtml'));
208 $object->fk_user_author = $user->id;
211 setEventMessages($langs->transnoentitiesnoconv(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"AccountancyCode")),
null,
'errors');
216 setEventMessages($langs->transnoentitiesnoconv(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"Ref")),
null,
'errors');
221 setEventMessages($langs->transnoentitiesnoconv(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"LabelBankCashAccount")),
null,
'errors');
227 $ret = $extrafields->setOptionalsFromPost(
null, $object,
'@GETPOSTISSET');
233 $categories =
GETPOST(
'categories',
'array:int');
234 $object->setCategories($categories);
250 $urltogo = $backtopage ? str_replace(
'__ID__', (
string)
$object->id, $backtopage) : $backurlforlist;
251 $urltogo = preg_replace(
'/--IDFORBACKTOPAGE--/', (
string)
$object->id, $urltogo);
253 if (empty($noback)) {
254 header(
"Location: " . $urltogo);
262 if ($action ==
'update' && $user->hasRight(
'banque',
'configurer')) {
289 $object->owner_address = trim(
GETPOST(
"owner_address",
'alphanohtml'));
297 $account_number =
GETPOST(
'account_number',
'alphanohtml');
298 if (empty($account_number) || $account_number ==
'-1') {
301 $object->account_number = $account_number;
303 $fk_accountancy_journal =
GETPOSTINT(
'fk_accountancy_journal');
304 if ($fk_accountancy_journal <= 0) {
305 $object->fk_accountancy_journal = 0;
307 $object->fk_accountancy_journal = $fk_accountancy_journal;
312 $object->address = trim(
GETPOST(
"account_address",
"alphanohtml"));
318 $object->comment = trim(
GETPOST(
"account_comment",
'restricthtml'));
321 setEventMessages($langs->transnoentitiesnoconv(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"AccountancyCode")),
null,
'errors');
326 setEventMessages($langs->transnoentitiesnoconv(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"Ref")),
null,
'errors');
331 setEventMessages($langs->transnoentitiesnoconv(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"LabelBankCashAccount")),
null,
'errors');
340 $ret = $extrafields->setOptionalsFromPost(
null, $object);
344 $result =
$object->update($user);
347 $categories =
GETPOST(
'categories',
'array:int');
348 $object->setCategories($categories);
365 if ($action ==
'confirm_delete' &&
GETPOST(
"confirm") ==
"yes" && $user->hasRight(
'banque',
'configurer')) {
369 $result =
$object->delete($user);
373 header(
"Location: " . DOL_URL_ROOT .
"/compta/bank/list.php");
392$countrynotdefined = $langs->trans(
"ErrorSetACountryFirst").
' ('.$langs->trans(
"SeeAbove").
')';
394$help_url =
'EN:Module_Banks_and_Cash|FR:Module_Banques_et_Caisses|ES:Módulo_Bancos_y_Cajas|DE:Modul_Banken_und_Barbestände';
395$title = $langs->trans(
"BankAccount");
396if ($action ==
'create') {
397 $title = $langs->trans(
"NewFinancialAccount");
398} elseif (!empty(
$object->ref)) {
399 $title =
$object->ref.
" - ".$langs->trans(
"Card");
405if ($action ==
'create') {
406 print
load_fiche_titre($langs->trans(
"NewFinancialAccount"),
'',
'bank_account');
408 if (
$conf->use_javascript_ajax) {
409 print
"\n".
'<script type="text/javascript">';
410 print
'jQuery(document).ready(function () {
411 jQuery("#type").change(function() {
412 document.formsoc.action.value="create";
413 document.formsoc.submit();
415 jQuery("#selectaccount_country_id").change(function() {
416 document.formsoc.action.value="create";
417 document.formsoc.submit();
420 print
'</script>'.
"\n";
423 print
'<form action="'.$_SERVER[
"PHP_SELF"].
'" name="formsoc" method="post">';
424 print
'<input type="hidden" name="token" value="'.newToken().
'">';
425 print
'<input type="hidden" name="action" value="add">';
426 print
'<input type="hidden" name="clos" value="0">';
427 print
'<input type="hidden" name="backtopage" value="'.$backtopage.
'">';
431 print
'<table class="border centpercent tableforfieldcreate">';
434 print
'<tr><td class="fieldrequired titlefieldcreate">'.$langs->trans(
"Ref").
'</td>';
435 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>';
438 print
'<tr><td class="fieldrequired">'.$langs->trans(
"LabelBankCashAccount").
'</td>';
439 print
'<td><input type="text" class="flat maxwidth150onsmartphone" name="label" value="'.dol_escape_htmltag(
GETPOST(
'label',
'alpha')).
'"></td></tr>';
442 print
'<tr><td class="fieldrequired">'.$langs->trans(
"AccountType").
'</td>';
444 $formbank->selectTypeOfBankAccount(GETPOSTISSET(
"type") ?
GETPOSTINT(
'type') :
Account::TYPE_CURRENT,
'type');
448 print
'<tr><td class="fieldrequired">'.$langs->trans(
"Currency").
'</td>';
450 $selectedcode =
$object->currency_code;
451 if (!$selectedcode) {
452 $selectedcode =
$conf->currency;
454 print $form->selectCurrency((GETPOSTISSET(
"account_currency_code") ?
GETPOST(
"account_currency_code") : $selectedcode),
'account_currency_code');
460 print
'<tr><td class="fieldrequired">'.$langs->trans(
"Status").
'</td>';
462 print $form->selectarray(
"clos",
$object->labelStatus, (
GETPOSTINT(
'clos') !=
'' ?
GETPOSTINT(
'clos') :
$object->
status), 0, 0, 0,
'', 0, 0, 0,
'',
'minwidth100 maxwidth150onsmartphone');
467 if (GETPOSTISSET(
"account_country_id")) {
468 $selectedcode =
GETPOST(
"account_country_id") ?
GETPOST(
"account_country_id") :
$object->country_code;
469 } elseif (empty($selectedcode)) {
470 $selectedcode =
$mysoc->country_code;
474 print
'<tr><td class="fieldrequired">'.$langs->trans(
"BankAccountCountry").
'</td>';
476 print
img_picto(
'',
'country',
'class="pictofixedwidth"');
477 print $form->select_country($selectedcode,
'account_country_id');
479 print
info_admin($langs->trans(
"YouCanChangeValuesForThisListFromDictionarySetup"), 1);
484 print
'<tr><td>'.$langs->trans(
'State').
'</td><td>';
486 print
img_picto(
'',
'state',
'class="pictofixedwidth"');
487 print $formcompany->select_state(GETPOSTISSET(
"account_state_id") ?
GETPOSTINT(
"account_state_id") : 0, $selectedcode,
'account_state_id');
489 print $countrynotdefined;
496 print
'<tr><td>'.$langs->trans(
"BankAccountDomiciliation").
'</td><td>';
497 print
'<textarea class="flat quatrevingtpercent" name="account_address" rows="'.ROWS_2.
'">';
499 print
"</textarea></td></tr>";
503 print
'<tr><td>'.$langs->trans(
"Web").
'</td>';
505 print
img_picto(
'',
'globe',
'class="pictofixedwidth"');
506 print
'<input class="minwidth300 widthcentpercentminusx maxwidth500" type="text" class="flat" name="url" value="'.GETPOST(
"url").
'">';
511 print
'<tr><td>'.$langs->trans(
"Categories").
'</td><td>';
512 print $form->selectCategories(Categorie::TYPE_ACCOUNT,
'categories', $object);
517 print
'<tr><td>'.$langs->trans(
"Comment").
'</td>';
520 require_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
521 $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%');
522 $doleditor->Create();
526 $parameters = array();
527 $reshook = $hookmanager->executeHooks(
'formObjectOptions', $parameters, $object, $action);
528 print $hookmanager->resPrint;
529 if (empty($reshook)) {
530 print
$object->showOptionals($extrafields,
'create', $parameters);
537 print
'<table class="border centpercent">';
540 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"InitialBankBalance").
'</td>';
541 print
'<td><input size="12" type="text" class="flat" name="solde" value="'.(GETPOSTISSET(
"solde") ?
GETPOST(
"solde") :
price2num(
$object->solde)).
'"></td></tr>';
543 print
'<tr><td>'.$langs->trans(
"Date").
'</td>';
546 print $form->selectDate($startdate,
're', 0, 0, 0,
'formsoc');
549 print
'<tr><td>'.$langs->trans(
"BalanceMinimalAllowed").
'</td>';
550 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>';
552 print
'<tr><td>'.$langs->trans(
"BalanceMinimalDesired").
'</td>';
553 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>';
560 print
'<table class="border centpercent">';
563 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"BankName").
'</td>';
564 print
'<td><input type="text" class="flat minwidth150" name="bank" value="'.(GETPOSTISSET(
'bank') ?
GETPOST(
'bank',
'alpha') :
$object->bank).
'"></td>';
568 $bickey =
"BICNumber";
569 if (
$object->getCountryCode() ==
'IN') {
574 print
'<tr><td>'.$langs->trans($ibankey).
'</td>';
575 print
'<td><input maxlength="34" type="text" class="flat minwidth300" name="iban" value="'.(GETPOSTISSET(
'iban') ?
GETPOST(
'iban',
'alpha') :
$object->iban).
'"></td></tr>';
578 print
'<tr><td>'.$langs->trans($bickey).
'</td>';
579 print
'<td><input maxlength="11" type="text" class="flat minwidth150" name="bic" value="'.(GETPOSTISSET(
'bic') ?
GETPOST(
'bic',
'alpha') :
$object->bic).
'"></td></tr>';
583 foreach (
$object->getFieldsToShow() as $val) {
585 if ($val ==
'BankCode') {
586 $name =
'code_banque';
587 $sizecss =
'minwidth100';
588 $content =
$object->code_banque;
589 } elseif ($val ==
'DeskCode') {
590 $name =
'code_guichet';
591 $sizecss =
'minwidth100';
592 $content =
$object->code_guichet;
593 } elseif ($val ==
'BankAccountNumber') {
595 $sizecss =
'minwidth200';
597 } elseif ($val ==
'BankAccountNumberKey') {
599 $sizecss =
'minwidth50';
603 $sizecss =
'undefined';
604 $content =
'undefined';
607 print
'<td>'.$langs->trans($val).
'</td>';
608 print
'<td><input type="text" class="flat '.$sizecss.
'" name="'.$name.
'" value="'.(GETPOSTISSET($name) ?
GETPOST($name,
'alpha') : $content).
'"></td>';
614 print
'<tr><td>'.$form->textwithpicto($langs->trans(
"SEPAXMLPlacePaymentTypeInformationInCreditTransfertransactionInformation"), $langs->trans(
"SEPAXMLPlacePaymentTypeInformationInCreditTransfertransactionInformationHelp")).
'</td>';
615 print
'<td><input type="checkbox" class="flat" name="pti_in_ctti"'. (empty(
GETPOST(
'pti_in_ctti')) ?
'' :
' checked ') .
'>';
622 print
'<table class="border centpercent">';
623 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"BankAccountOwner").
'</td>';
624 print
'<td><input type="text" class="flat minwidth300" name="proprio" value="'.(GETPOSTISSET(
'proprio') ?
GETPOST(
'proprio',
'alpha') :
$object->owner_name).
'">';
627 print
'<tr><td class="tdtop">'.$langs->trans(
"BankAccountOwnerAddress").
'</td><td>';
628 print
'<textarea class="flat quatrevingtpercent" name="owner_address" rows="'.ROWS_2.
'">';
629 print(GETPOSTISSET(
'owner_address') ?
GETPOST(
'owner_address',
'alpha') :
$object->owner_address);
630 print
"</textarea></td></tr>";
632 print
'<tr><td class="tdtop">'.$langs->trans(
"BankAccountOwnerZip").
'</td>';
633 print
'<td><input type="text" class="flat maxwidth100" name="owner_zip" value="'.(GETPOSTISSET(
'owner_zip') ?
GETPOST(
'owner_zip',
'alpha') :
$object->owner_zip).
'">';
636 print
'<tr><td class="tdtop">'.$langs->trans(
"BankAccountOwnerTown").
'</td>';
637 print
'<td><input type="text" class="flat maxwidth200" name="owner_town" value="'.(GETPOSTISSET(
'owner_town') ?
GETPOST(
'owner_town',
'alpha') :
$object->owner_town).
'">';
640 print
'<tr><td class="tdtop">'.$langs->trans(
"BankAccountOwnerCountry").
'</td>';
642 print
img_picto(
'',
'country',
'class="pictofixedwidth"');
643 print $form->select_country(GETPOSTISSET(
'owner_country_id') ?
GETPOST(
'owner_country_id',
'alpha') :
$object->owner_country_id,
'owner_country_id');
650 print
'<table class="border centpercent">';
654 $fieldrequired =
'fieldrequired ';
659 print
'<tr><td class="'.$fieldrequired.
'titlefieldcreate">'.$langs->trans(
"AccountancyCode").
'</td>';
661 print
img_picto(
'',
'accounting_account',
'class="pictofixedwidth"');
662 print $formaccounting->select_account(
$object->account_number,
'account_number', 1, array(), 1, 1);
663 if ($formaccounting->nbaccounts == 0) {
664 $langs->load(
"errors");
665 $htmltext = $langs->transnoentitiesnoconv(
"WarningGoOnAccountancySetupToAddAccounts", $langs->transnoentitiesnoconv(
"MenuAccountancy"), $langs->transnoentitiesnoconv(
"Setup"), $langs->transnoentitiesnoconv(
"Chartofaccounts"));
666 print $form->textwithpicto(
'', $htmltext);
670 print
'<tr><td class="'.$fieldrequired.
'titlefieldcreate">'.$langs->trans(
"AccountancyCode").
'</td>';
671 print
'<td><input type="text" name="account_number" value="'.(GETPOST(
"account_number") ?
GETPOST(
'account_number',
'alpha') :
$object->account_number).
'"></td></tr>';
677 print
'<tr><td class="'.$fieldrequired.
'titlefieldcreate">'.$langs->trans(
"AccountancyJournal").
'</td>';
679 print $formaccounting->select_journal((
string)
$object->fk_accountancy_journal,
'fk_accountancy_journal', 4, 1, 0, 0);
687 print $form->buttonsSaveCancel(
"CreateAccount");
696 print
dol_get_fiche_head($head,
'bankname', $langs->trans(
"FinancialAccount"), -1,
'account', 0,
'',
'', 0,
'', 1);
701 if ($action ==
'delete') {
702 $formconfirm = $form->formconfirm($_SERVER[
"PHP_SELF"].
'?id='.
$object->id, $langs->trans(
"DeleteAccount"), $langs->trans(
"ConfirmDeleteAccount"),
"confirm_delete");
708 $linkback =
'<a href="'.DOL_URL_ROOT.
'/compta/bank/list.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
711 dol_banner_tab($object,
'ref', $linkback, 1,
'ref',
'ref', $morehtmlref);
713 print
'<div class="fichecenter">';
714 print
'<div class="fichehalfleft">';
715 print
'<div class="underbanner clearboth"></div>';
717 print
'<table class="border centpercent tableforfield">';
720 print
'<tr><td class="titlefieldmiddle">'.$langs->trans(
"AccountType").
'</td>';
721 print
'<td>'.$object->type_lib[
$object->type].
'</td></tr>';
724 print
'<tr><td>'.$langs->trans(
"Currency").
'</td>';
726 $selectedcode =
$object->currency_code;
727 if (!$selectedcode) {
728 $selectedcode =
$conf->currency;
730 print $langs->trans(
"Currency".$selectedcode);
734 print
'<tr><td>'.$langs->trans(
"Conciliable").
'</td>';
736 $conciliate =
$object->canBeConciliated();
737 if ($conciliate == -2) {
738 print $langs->trans(
"No").
' <span class="opacitymedium">('.$langs->trans(
"CashAccount").
')</span>';
739 } elseif ($conciliate == -3) {
740 print $langs->trans(
"No").
' <span class="opacitymedium">('.$langs->trans(
"Closed").
')</span>';
742 print(
$object->rappro == 1 ? $langs->trans(
"Yes") : ($langs->trans(
"No").
' <span class="opacitymedium">('.$langs->trans(
"ConciliationDisabled").
')</span>'));
746 print
'<tr><td>'.$langs->trans(
"BalanceMinimalAllowed").
'</td>';
747 print
'<td>'.$object->min_allowed.
'</td></tr>';
749 print
'<tr><td>'.$langs->trans(
"BalanceMinimalDesired").
'</td>';
750 print
'<td>'.$object->min_desired.
'</td></tr>';
753 print
'<tr class="liste_titre_add"><td class="titlefield">'.$langs->trans(
"AccountancyCode").
'</td>';
756 if (empty(
$object->account_number)) {
760 $accountingaccount->fetch(0,
$object->account_number, 1);
761 print $accountingaccount->getNomUrl(0, 1, 1,
'', 1);
770 print
'<tr><td>'.$langs->trans(
"AccountancyJournal").
'</td>';
772 if (empty(
$object->fk_accountancy_journal)) {
774 } elseif (
$object->fk_accountancy_journal > 0) {
776 $accountingjournal->fetch(
$object->fk_accountancy_journal);
777 print $accountingjournal->getNomUrl(0, 1, 1,
'', 1);
784 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_view.tpl.php';
789 print
'<div class="fichehalfright">';
790 print
'<div class="underbanner clearboth"></div>';
792 print
'<table class="border tableforfield centpercent">';
796 print
'<tr><td class="titlefield">'.$langs->trans(
"Categories").
'</td><td>';
797 print $form->showCategories(
$object->id, Categorie::TYPE_ACCOUNT, 1);
801 print
'<tr><td class="tdtop titlefield">'.$langs->trans(
"Comment").
'</td>';
802 print
'<td>'.dol_htmlentitiesbr(
$object->comment).
'</td></tr>';
807 print
'<table class="border tableforfield centpercent">';
809 print
'<tr><td class="titlefieldmiddle">'.$langs->trans(
"BankName").
'</td>';
810 print
'<td>'.$object->bank.
'</td></tr>';
813 $bickey =
"BICNumber";
814 if (
$object->getCountryCode() ==
'IN') {
819 print
'<tr><td>'.$langs->trans($ibankey).
'</td>';
820 print
'<td>'.getIbanHumanReadable($object).
' ';
823 print
img_picto($langs->trans(
"IbanNotValid"),
'warning');
825 print
img_picto($langs->trans(
"IbanValid"),
'tick');
831 print
'<tr><td>'.$langs->trans($bickey).
'</td>';
832 print
'<td>'.$object->bic.
' ';
835 print
img_picto($langs->trans(
"SwiftNotValid"),
'warning');
837 print
img_picto($langs->trans(
"SwiftValid"),
'tick');
845 foreach (
$object->getFieldsToShow() as $val) {
847 if ($val ==
'BankCode') {
848 $content =
$object->code_banque;
849 } elseif ($val ==
'DeskCode') {
850 $content =
$object->code_guichet;
851 } elseif ($val ==
'BankAccountNumber') {
853 } elseif ($val ==
'BankAccountNumberKey') {
857 print
'<tr><td>'.$langs->trans($val).
'</td>';
858 print
'<td>'.$content.
'</td>';
863 print
'<tr><td>'.$form->textwithpicto($langs->trans(
"ICS"), $langs->trans(
"ICS").
' ('.$langs->trans(
"UsedFor", $langs->transnoentitiesnoconv(
"StandingOrder")).
')').
'</td>';
864 print
'<td>'.$object->ics.
'</td>';
870 print
'<tr><td>'.$form->textwithpicto($langs->trans(
"IDS"), $langs->trans(
"IDS").
' ('.$langs->trans(
"UsedFor", $langs->transnoentitiesnoconv(
"BankTransfer")).
')').
'</td>';
871 print
'<td>'.$object->ics_transfer.
'</td>';
875 print
'<tr><td>'.$form->textwithpicto($langs->trans(
"SEPAXMLPlacePaymentTypeInformationInCreditTransfertransactionInformation"), $langs->trans(
"SEPAXMLPlacePaymentTypeInformationInCreditTransfertransactionInformationHelp")).
'</td><td>';
876 print(empty(
$object->pti_in_ctti) ? $langs->trans(
"No") : $langs->trans(
"Yes"));
877 print
"</td></tr>\n";
881 print
'<tr><td>'.$langs->trans(
"BankAccountOwner").
'</td><td>';
883 print
"</td></tr>\n";
885 print
'<tr><td>'.$langs->trans(
"BankAccountOwnerAddress").
'</td><td>';
886 print nl2br(
$object->owner_address);
887 print
"</td></tr>\n";
889 print
'<tr><td>'.$langs->trans(
"BankAccountOwnerZip").
'</td>';
890 print
'<td>'.dol_escape_htmltag(
$object->owner_zip);
893 print
'<tr><td>'.$langs->trans(
"BankAccountOwnerTown").
'</td>';
894 print
'<td>'.dol_escape_htmltag(
$object->owner_town);
897 print
'<tr><td>'.$langs->trans(
"BankAccountOwnerCountry").
'</td>';
900 $langs->load(
"dict");
901 print(empty(
$object->owner_country_code) ?
'' : $langs->convToOutputCharset($langs->transnoentitiesnoconv(
"Country".
$object->owner_country_code)));
911 print
'<div class="clearboth"></div>';
918 print
'<div class="tabsAction">';
919 $parameters = array();
920 $reshook = $hookmanager->executeHooks(
'addMoreActionsButtons', $parameters, $object, $action);
925 if (empty($reshook)) {
926 if ($user->hasRight(
'banque',
'configurer') &&
$object->status == $object::STATUS_CLOSED) {
927 print
'<a class="butAction" href="'.$_SERVER[
"PHP_SELF"].
'?action=reopen&token='.newToken().
'&id='.
$object->id.
'">'.$langs->trans(
"ReOpen").
'</a>';
930 if ($user->hasRight(
'banque',
'configurer') &&
$object->status == $object::STATUS_OPEN) {
931 print
'<a class="butAction" href="'.$_SERVER[
"PHP_SELF"].
'?action=edit&token='.newToken().
'&id='.
$object->id.
'">'.$langs->trans(
"Modify").
'</a>';
934 if ($user->hasRight(
'banque',
'configurer') &&
$object->status == $object::STATUS_OPEN) {
935 print
'<a class="butAction" href="'.$_SERVER[
"PHP_SELF"].
'?action=close&token='.newToken().
'&id='.
$object->id.
'">'.$langs->trans(
"Close").
'</a>';
938 $canbedeleted =
$object->can_be_deleted();
939 if ($user->hasRight(
'banque',
'configurer') && $canbedeleted) {
940 print
'<a class="butActionDelete" href="'.$_SERVER[
"PHP_SELF"].
'?action=delete&token='.newToken().
'&id='.
$object->id.
'">'.$langs->trans(
"Delete").
'</a>';
953 if (
GETPOSTINT(
'id') && $action ==
'edit' && $user->hasRight(
'banque',
'configurer')) {
954 print
load_fiche_titre($langs->trans(
"EditFinancialAccount"),
'',
'bank_account');
956 if (
$conf->use_javascript_ajax) {
957 print
"\n".
'<script type="text/javascript">';
958 print
'jQuery(document).ready(function () {
959 jQuery("#type").change(function() {
960 document.formsoc.action.value="edit";
961 document.formsoc.submit();
965 print
'jQuery(document).ready(function () {
966 jQuery("#selectaccount_country_id").change(function() {
967 document.formsoc.action.value="edit";
968 document.formsoc.submit();
971 print
'</script>'.
"\n";
974 print
'<form action="'.$_SERVER[
"PHP_SELF"].
'?id='.
$object->id.
'" method="post" name="formsoc">';
975 print
'<input type="hidden" name="token" value="'.newToken().
'">';
976 print
'<input type="hidden" name="action" value="update">';
977 print
'<input type="hidden" name="id" value="'.GETPOSTINT(
"id").
'">'.
"\n\n";
978 print
'<input type="hidden" name="backtopage" value="'.$backtopage.
'">';
984 print
'<table class="border centpercent tableforfieldcreate">';
987 print
'<tr><td class="fieldrequired titlefieldcreate">'.$langs->trans(
"Ref").
'</td>';
988 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>';
991 print
'<tr><td class="fieldrequired">'.$langs->trans(
"Label").
'</td>';
992 print
'<td><input type="text" class="flat minwidth300" name="label" value="'.dol_escape_htmltag(GETPOSTISSET(
'label') ?
GETPOST(
'label',
'alpha') :
$object->label).
'"></td></tr>';
995 print
'<tr><td class="fieldrequired">'.$langs->trans(
"AccountType").
'</td>';
996 print
'<td class="maxwidth200onsmartphone">';
997 $formbank->selectTypeOfBankAccount((GETPOSTISSET(
'type') ?
GETPOSTINT(
'type') :
$object->
type),
'type');
1001 print
'<tr><td class="fieldrequired">'.$langs->trans(
"Currency");
1002 print
'<input type="hidden" value="'.$object->currency_code.
'">';
1004 print
'<td class="maxwidth200onsmartphone">';
1005 $selectedcode =
$object->currency_code;
1006 if (!$selectedcode) {
1007 $selectedcode =
$conf->currency;
1009 print
img_picto(
'',
'multicurrency',
'class="pictofixedwidth"');
1010 print $form->selectCurrency((GETPOSTISSET(
"account_currency_code") ?
GETPOST(
"account_currency_code") : $selectedcode),
'account_currency_code');
1016 print
'<tr><td class="fieldrequired">'.$langs->trans(
"Status").
'</td>';
1017 print
'<td class="maxwidth200onsmartphone">';
1023 $selectedcode =
$object->country_code;
1024 if (GETPOSTISSET(
"account_country_id")) {
1025 $selectedcode =
GETPOST(
"account_country_id");
1026 } elseif (empty($selectedcode)) {
1027 $selectedcode =
$mysoc->country_code;
1031 print
'<tr><td class="fieldrequired">'.$langs->trans(
"Country").
'</td>';
1032 print
'<td class="maxwidth200onsmartphone">';
1033 print
img_picto(
'',
'country',
'class="pictofixedwidth"').$form->select_country($selectedcode,
'account_country_id');
1035 print
info_admin($langs->trans(
"YouCanChangeValuesForThisListFromDictionarySetup"), 1);
1040 print
'<tr><td>'.$langs->trans(
'State').
'</td><td class="maxwidth200onsmartphone">';
1041 if ($selectedcode) {
1042 print
img_picto(
'',
'state',
'class="pictofixedwidth"');
1043 print $formcompany->select_state(GETPOSTISSET(
"account_state_id") ?
GETPOST(
"account_state_id") :
$object->state_id, $selectedcode,
'account_state_id');
1045 print $countrynotdefined;
1052 print
'<tr><td>'.$langs->trans(
"BankAccountDomiciliation").
'</td><td>';
1053 print
'<textarea class="flat quatrevingtpercent" name="account_address" rows="'.ROWS_2.
'">';
1055 print
"</textarea></td></tr>";
1059 print
'<tr><td>'.$langs->trans(
"Conciliable").
'</td>';
1061 $conciliate =
$object->canBeConciliated();
1062 if ($conciliate == -2) {
1063 print $langs->trans(
"No").
' <span class="opacitymedium">('.$langs->trans(
"CashAccount").
')</span>';
1064 } elseif ($conciliate == -3) {
1065 print $langs->trans(
"No").
' <span class="opacitymedium">('.$langs->trans(
"Closed").
')</span>';
1067 print
'<input type="checkbox" class="flat" id="norappro" name="norappro"'.(($conciliate > 0) ?
'' :
' checked="checked"').
'"> <label for="norappro" class="opacitymedium">'.$langs->trans(
"DisableConciliation").
'</label>';
1072 print
'<tr><td>'.$langs->trans(
"BalanceMinimalAllowed").
'</td>';
1073 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>';
1075 print
'<tr><td>'.$langs->trans(
"BalanceMinimalDesired").
'</td>';
1076 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>';
1079 print
'<tr><td>'.$langs->trans(
"Web").
'</td>';
1081 print
img_picto(
'',
'globe',
'class="pictofixedwidth"');
1082 print
'<input class="maxwidth200onsmartphone" type="text" class="flat" name="url" value="'.(GETPOSTISSET(
"url") ?
GETPOST(
"url") :
$object->url).
'">';
1087 print
'<tr><td>'.$langs->trans(
"Categories").
'</td><td>';
1088 print $form->selectCategories(Categorie::TYPE_ACCOUNT,
'categories', $object);
1093 print
'<tr><td class="tdtop">'.$langs->trans(
"Comment").
'</td>';
1096 require_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
1097 $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%');
1098 $doleditor->Create();
1102 $parameters = array();
1103 $reshook = $hookmanager->executeHooks(
'formObjectOptions', $parameters, $object, $action);
1104 print $hookmanager->resPrint;
1105 if (empty($reshook)) {
1106 print
$object->showOptionals($extrafields,
'edit', $parameters);
1115 print
'<table class="border centpercent">';
1118 $tdextra =
' class="titlefieldcreate"';
1121 $tdextra =
' class="fieldrequired titlefieldcreate"';
1124 print
'<tr><td'.$tdextra.
'>'.$langs->trans(
"AccountancyCode").
'</td>';
1128 print
img_picto(
'',
'accounting_account',
'class="pictofixedwidth"');
1129 print $formaccounting->select_account(
$object->account_number,
'account_number', 1, array(), 1, 1);
1130 if ($formaccounting->nbaccounts == 0) {
1131 $langs->load(
"errors");
1132 $htmltext = $langs->transnoentitiesnoconv(
"WarningGoOnAccountancySetupToAddAccounts", $langs->transnoentitiesnoconv(
"MenuAccountancy"), $langs->transnoentitiesnoconv(
"Setup"), $langs->transnoentitiesnoconv(
"Chartofaccounts"));
1133 print $form->textwithpicto(
'', $htmltext);
1136 print
'<input type="text" name="account_number" value="'.(GETPOST(
"account_number") ?
GETPOST(
"account_number") :
$object->account_number).
'">';
1143 print
'<tr><td class="fieldrequired">'.$langs->trans(
"AccountancyJournal").
'</td>';
1145 print $formaccounting->select_journal((
string)
$object->fk_accountancy_journal,
'fk_accountancy_journal', 4, 1, 0, 0);
1155 print
'<table class="border centpercent">';
1158 print
'<tr class="liste_titre_add"><td class="titlefieldcreate">'.$langs->trans(
"BankName").
'</td>';
1159 print
'<td><input type="text" class="flat width300" name="bank" value="'.$object->bank.
'"></td>';
1163 $bickey =
"BICNumber";
1164 if (
$object->getCountryCode() ==
'IN') {
1170 $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';
1171 print $form->textwithpicto($langs->trans($ibankey), $tooltip, 1,
'help',
'', 0, 3,
'iban');
1173 print
'<td><input class="minwidth300 maxwidth200onsmartphone" maxlength="34" type="text" class="flat" name="iban" value="'.(GETPOSTISSET(
'iban') ?
GETPOST(
'iban',
'alphanohtml') :
$object->iban).
'"></td></tr>';
1177 $tooltip = $langs->trans(
"Example").
': LIABLT2XXXX';
1178 print $form->textwithpicto($langs->trans($bickey), $tooltip, 1,
'help',
'', 0, 3,
'bic');
1180 print
'<td><input class="minwidth150 maxwidth200onsmartphone" maxlength="11" type="text" class="flat" name="bic" value="'.(GETPOSTISSET(
'bic') ?
GETPOST(
'bic',
'alphanohtml') :
$object->bic).
'"></td></tr>';
1183 foreach (
$object->getFieldsToShow() as $val) {
1185 if ($val ==
'BankCode') {
1186 $name =
'code_banque';
1188 $content =
$object->code_banque;
1189 } elseif ($val ==
'DeskCode') {
1190 $name =
'code_guichet';
1192 $content =
$object->code_guichet;
1193 } elseif ($val ==
'BankAccountNumber') {
1197 } elseif ($val ==
'BankAccountNumberKey') {
1202 $name =
'undefined';
1204 $content =
'undefined';
1207 print
'<tr><td>'.$langs->trans($val).
'</td>';
1208 print
'<td><input type="text" class="flat '.$css.
'" name="'.$name.
'" value="'.
dol_escape_htmltag($content).
'"></td>';
1213 print
'<tr><td>'.$form->textwithpicto($langs->trans(
"ICS"), $langs->trans(
"ICS").
' ('.$langs->trans(
"UsedFor", $langs->transnoentitiesnoconv(
"StandingOrder")).
')').
'</td>';
1214 print
'<td><input class="minwidth150 maxwidth200onsmartphone" maxlength="32" type="text" class="flat" name="ics" value="'.(GETPOSTISSET(
'ics') ?
GETPOST(
'ics',
'alphanohtml') :
$object->ics).
'"></td></tr>';
1219 print
'<tr><td>'.$form->textwithpicto($langs->trans(
"IDS"), $langs->trans(
"IDS").
' ('.$langs->trans(
"UsedFor", $langs->transnoentitiesnoconv(
"BankTransfer")).
')').
'</td>';
1220 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>';
1222 if (
$mysoc->isInSEPA()) {
1223 print
'<tr><td>'.$form->textwithpicto($langs->trans(
"SEPAXMLPlacePaymentTypeInformationInCreditTransfertransactionInformation"), $langs->trans(
"SEPAXMLPlacePaymentTypeInformationInCreditTransfertransactionInformationHelp")).
'</td>';
1224 print
'<td><input type="checkbox" class="flat" name="pti_in_ctti"'. (
$object->pti_in_ctti ?
' checked ' :
'') .
'>';
1233 print
'<table class="border centpercent">';
1235 print
'<tr><td>'.$langs->trans(
"BankAccountOwner").
'</td>';
1236 print
'<td><input class="maxwidth200onsmartphone" type="text" class="flat" name="proprio" value="'.(GETPOSTISSET(
'proprio') ?
GETPOST(
'proprio',
'alpha') :
$object->owner_name).
'"></td>';
1239 print
'<tr><td class="titlefieldcreate tdtop">'.$langs->trans(
"BankAccountOwnerAddress").
'</td><td>';
1240 print
'<textarea class="flat quatrevingtpercent" name="owner_address" rows="'.ROWS_2.
'">';
1241 print GETPOSTISSET(
'owner_address') ?
GETPOST(
'owner_address',
'alpha') :
$object->owner_address;
1242 print
"</textarea></td></tr>";
1244 print
'<tr><td class="tdtop">'.$langs->trans(
"BankAccountOwnerZip").
'</td>';
1245 print
'<td><input type="text" class="flat maxwidth100" name="owner_zip" value="'.(GETPOSTISSET(
'owner_zip') ?
GETPOST(
'owner_zip',
'alpha') :
$object->owner_zip).
'">';
1248 print
'<tr><td class="tdtop">'.$langs->trans(
"BankAccountOwnerTown").
'</td>';
1249 print
'<td><input type="text" class="flat maxwidth200" name="owner_town" value="'.(GETPOSTISSET(
'owner_town') ?
GETPOST(
'owner_town',
'alpha') :
$object->owner_town).
'">';
1252 print
'<tr><td class="tdtop">'.$langs->trans(
"BankAccountOwnerCountry").
'</td>';
1254 print
img_picto(
'',
'country',
'class="pictofixedwidth"');
1255 print $form->select_country(GETPOSTISSET(
'owner_country_id') ?
GETPOST(
'owner_country_id',
'alpha') :
$object->owner_country_id,
'owner_country_id');
1263 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.
info_admin($text, $infoonimgalt=0, $nodiv=0, $admin='1', $morecss='hideonsmartphone', $textfordropdown='', $picto='', $textonpictotooltip='')
Show information in HTML for admin users or standard users.
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, $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.
GETPOSTFLOAT($paramname, $rounding='', $option=2)
Return the value of a $_GET or $_POST supervariable, converted into float.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='', $morecssonpicto='widthpictotitle')
Load a title with picto.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
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.