29require
'../main.inc.php';
30require_once DOL_DOCUMENT_ROOT.
'/compta/bank/class/account.class.php';
31require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formprojet.class.php';
32require_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
33require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
34require_once DOL_DOCUMENT_ROOT.
'/core/lib/loan.lib.php';
35require_once DOL_DOCUMENT_ROOT.
'/loan/class/loan.class.php';
37if (isModEnabled(
'accounting')) {
38 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formaccounting.class.php';
39 require_once DOL_DOCUMENT_ROOT.
'/accountancy/class/accountingaccount.class.php';
42if (isModEnabled(
'project')) {
43 require_once DOL_DOCUMENT_ROOT.
'/projet/class/project.class.php';
56$langs->loadLangs(array(
"banks",
"bills",
"compta",
"loan"));
59$action =
GETPOST(
'action',
'aZ09');
61$cancel =
GETPOST(
'cancel',
'alpha');
68 $socid = $user->socid;
70$hookmanager->initHooks(array(
'loancard',
'globalcard'));
75$permissiontoadd = $user->hasRight(
'loan',
'write');
86$reshook = $hookmanager->executeHooks(
'doActions', $parameters,
$object, $action);
92 if ($action ==
'confirm_paid' && $confirm ==
'yes' && $permissiontoadd) {
94 $result =
$object->setPaid($user);
103 if ($action ==
'confirm_delete' && $confirm ==
'yes' && $permissiontoadd) {
105 $result =
$object->delete($user);
108 header(
"Location: list.php");
116 if ($action ==
'add' && $permissiontoadd) {
127 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentities(
"LoanCapital")),
null,
'errors');
132 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentities(
"DateStart")),
null,
'errors');
137 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentities(
"DateEnd")),
null,
'errors');
142 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentities(
"Rate")),
null,
'errors');
149 $object->datestart = $datestart;
158 $accountancy_account_capital =
GETPOST(
'accountancy_account_capital');
159 $accountancy_account_insurance =
GETPOST(
'accountancy_account_insurance');
160 $accountancy_account_interest =
GETPOST(
'accountancy_account_interest');
162 if ($accountancy_account_capital <= 0) {
165 $object->account_capital = $accountancy_account_capital;
167 if ($accountancy_account_insurance <= 0) {
168 $object->account_insurance =
'';
170 $object->account_insurance = $accountancy_account_insurance;
172 if ($accountancy_account_interest <= 0) {
173 $object->account_interest =
'';
175 $object->account_interest = $accountancy_account_interest;
186 header(
"Location: list.php");
189 } elseif ($action ==
'update' && $permissiontoadd) {
200 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentities(
"LoanCapital")),
null,
'errors');
203 $object->datestart = $datestart;
211 $accountancy_account_capital =
GETPOST(
'accountancy_account_capital');
212 $accountancy_account_insurance =
GETPOST(
'accountancy_account_insurance');
213 $accountancy_account_interest =
GETPOST(
'accountancy_account_interest');
215 if ($accountancy_account_capital <= 0) {
218 $object->account_capital = $accountancy_account_capital;
220 if ($accountancy_account_insurance <= 0) {
221 $object->account_insurance =
'';
223 $object->account_insurance = $accountancy_account_insurance;
225 if ($accountancy_account_interest <= 0) {
226 $object->account_interest =
'';
228 $object->account_interest = $accountancy_account_interest;
232 $result =
$object->update($user);
235 header(
"Location: ".$_SERVER[
"PHP_SELF"].
"?id=".$id);
242 header(
"Location: ".$_SERVER[
"PHP_SELF"].
"?id=".$id);
248 if ($action ==
'classin' && $permissiontoadd) {
250 $result =
$object->setProject($projectid);
256 if ($action ==
'setlabel' && $permissiontoadd) {
258 $result =
$object->setValueFrom(
'label',
GETPOST(
'label'),
'',
null,
'text',
'', $user,
'LOAN_MODIFY');
265 include DOL_DOCUMENT_ROOT.
'/core/actions_builddoc.inc.php';
273$form =
new Form($db);
276$outputlangs = $langs;
277$formaccounting =
null;
278if (isModEnabled(
'accounting')) {
281$title = $langs->trans(
"Loan").
' - '.$langs->trans(
"Card");
282$help_url =
'EN:Module_Loan|FR:Module_Emprunt';
284llxHeader(
"", $title, $help_url,
'', 0, 0,
'',
'',
'',
'mod-loan page-card');
288if ($action ==
'create') {
290 require_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
296 print
'<form name="loan" method="POST" action="'.$_SERVER[
"PHP_SELF"].
'">'.
"\n";
297 print
'<input type="hidden" name="token" value="'.newToken().
'">';
298 print
'<input type="hidden" name="action" value="add">';
302 print
'<table class="border centpercent">';
305 print
'<tr><td class="fieldrequired titlefieldcreate">'.$langs->trans(
"Label").
'</td><td><input name="label" class="minwidth300" maxlength="255" value="'.
dol_escape_htmltag(
GETPOST(
'label')).
'" autofocus="autofocus"></td></tr>';
308 if (isModEnabled(
"bank")) {
309 print
'<tr><td class="fieldrequired">'.$langs->trans(
"BankAccount").
'</td><td>';
310 $form->select_comptes(
GETPOST(
"accountid"),
"accountid", 0,
"courant=1", 1);
313 print
'<tr><td>'.$langs->trans(
"BankAccount").
'</td><td>';
314 print $langs->trans(
"NoBankAccountDefined");
319 print
'<tr><td class="fieldrequired">'.$langs->trans(
"LoanCapital").
'</td><td><input name="capital" size="10" value="'.
dol_escape_htmltag(
GETPOST(
"capital")).
'"></td></tr>';
323 print
'<td class="fieldrequired">'.$langs->trans(
"DateStart").
'</td><td>';
324 print $form->selectDate(!empty($datestart) ? $datestart : -1,
'start', 0, 0, 0,
'add', 1, 1);
329 print
'<td class="fieldrequired">'.$langs->trans(
"DateEnd").
'</td><td>';
330 print $form->selectDate(!empty($dateend) ? $dateend : -1,
'end', 0, 0, 0,
'add', 1, 1);
334 print
'<tr><td class="fieldrequired">'.$langs->trans(
"Nbterms").
'</td><td><input name="nbterm" size="5" value="'.
dol_escape_htmltag(
GETPOST(
'nbterm')).
'"></td></tr>';
337 print
'<tr><td class="fieldrequired">'.$langs->trans(
"Rate").
'</td><td><input name="rate" size="5" value="'.
dol_escape_htmltag(
GETPOST(
"rate")).
'"> %</td></tr>';
340 print
'<tr><td>'.$langs->trans(
"Insurance").
'</td><td><input name="insurance_amount" size="10" value="'.
dol_escape_htmltag(
GETPOST(
"insurance_amount")).
'" placeholder="'.$langs->trans(
'Amount').
'"></td></tr>';
343 if (isModEnabled(
'project')) {
347 $langs->loadLangs(array(
"projects"));
349 print
'<tr><td>'.$langs->trans(
"Project").
'</td><td>';
351 $numproject = $formproject->select_projects(-1, (
string) $projectid,
'projectid', 16, 0, 1, 1);
358 print
'<td class="tdtop">'.$langs->trans(
'NotePrivate').
'</td>';
361 $doleditor =
new DolEditor(
'note_private',
GETPOST(
'note_private',
'alpha'),
'', 160,
'dolibarr_notes',
'In',
false,
true, !
getDolGlobalString(
'FCKEDITOR_ENABLE_NOTE_PUBLIC') ? 0 : 1, ROWS_6,
'90%');
362 print $doleditor->Create(1);
368 print
'<td class="tdtop">'.$langs->trans(
'NotePublic').
'</td>';
370 $doleditor =
new DolEditor(
'note_public',
GETPOST(
'note_public',
'alpha'),
'', 160,
'dolibarr_notes',
'In',
false,
true, !
getDolGlobalString(
'FCKEDITOR_ENABLE_NOTE_PRIVATE') ? 0 : 1, ROWS_6,
'90%');
371 print $doleditor->Create(1);
375 if (isModEnabled(
'accounting') && $formaccounting !==
null) {
378 print
'<tr><td class="titlefieldcreate fieldrequired">'.$langs->trans(
"LoanAccountancyCapitalCode").
'</td>';
380 print $formaccounting->select_account(
GETPOST(
'accountancy_account_capital') ?
GETPOST(
'accountancy_account_capital') :
getDolGlobalString(
'LOAN_ACCOUNTING_ACCOUNT_CAPITAL'),
'accountancy_account_capital', 1, array(), 1, 1);
384 print
'<tr><td class="fieldrequired">'.$langs->trans(
"LoanAccountancyInsuranceCode").
'</td>';
386 print $formaccounting->select_account(
GETPOST(
'accountancy_account_insurance') ?
GETPOST(
'accountancy_account_insurance') :
getDolGlobalString(
'LOAN_ACCOUNTING_ACCOUNT_INSURANCE'),
'accountancy_account_insurance', 1, array(), 1, 1);
390 print
'<tr><td class="fieldrequired">'.$langs->trans(
"LoanAccountancyInterestCode").
'</td>';
392 print $formaccounting->select_account(
GETPOST(
'accountancy_account_interest') ?
GETPOST(
'accountancy_account_interest') :
getDolGlobalString(
'LOAN_ACCOUNTING_ACCOUNT_INTEREST'),
'accountancy_account_interest', 1, array(), 1, 1);
397 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"LoanAccountancyCapitalCode").
'</td>';
398 print
'<td><input name="accountancy_account_capital" size="16" value="'.$object->accountancy_account_capital.
'">';
402 print
'<tr><td>'.$langs->trans(
"LoanAccountancyInsuranceCode").
'</td>';
403 print
'<td><input name="accountancy_account_insurance" size="16" value="'.$object->accountancy_account_insurance.
'">';
407 print
'<tr><td>'.$langs->trans(
"LoanAccountancyInterestCode").
'</td>';
408 print
'<td><input name="accountancy_account_interest" size="16" value="'.$object->accountancy_account_interest.
'">';
415 print $form->buttonsSaveCancel(
"Add");
428 $totalpaid =
$object->getSumPayment();
431 if ($action ==
'paid') {
432 $text = $langs->trans(
'ConfirmPayLoan');
433 print $form->formconfirm($_SERVER[
"PHP_SELF"].
"?id=".
$object->id, $langs->trans(
'PayLoan'), $text,
"confirm_paid",
'',
'', 2);
436 if ($action ==
'delete') {
437 $text = $langs->trans(
'ConfirmDeleteLoan');
438 print $form->formconfirm($_SERVER[
'PHP_SELF'].
'?id='.
$object->id, $langs->trans(
'DeleteLoan'), $text,
'confirm_delete',
'',
'', 2);
441 if ($action ==
'edit') {
442 print
'<form name="update" action="'.$_SERVER[
"PHP_SELF"].
'" method="POST">'.
"\n";
443 print
'<input type="hidden" name="token" value="'.newToken().
'">';
444 print
'<input type="hidden" name="action" value="update">';
445 print
'<input type="hidden" name="id" value="'.$id.
'">';
448 print
dol_get_fiche_head($head,
'card', $langs->trans(
"Loan"), -1,
'money-bill-alt', 0,
'',
'', 0,
'', 1);
451 $linkback =
'<a href="'.DOL_URL_ROOT.
'/loan/list.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
453 $morehtmlref =
'<div class="refidno">';
455 $morehtmlref .= $form->editfieldkey(
"Label",
'label',
$object->label,
$object, $user->hasRight(
'loan',
'write'),
'string',
'', 0, 1);
456 $morehtmlref .= $form->editfieldval(
"Label",
'label',
$object->label,
$object, $user->hasRight(
'loan',
'write'),
'string',
'',
null,
null,
'', 1);
458 if (isModEnabled(
'project')) {
459 $langs->loadLangs(array(
"projects"));
460 $morehtmlref .=
'<br>'.$langs->trans(
'Project').
' ';
461 if ($user->hasRight(
'loan',
'write')) {
462 if ($action !=
'classify') {
463 $morehtmlref .=
'<a class="editfielda" href="'.$_SERVER[
'PHP_SELF'].
'?action=classify&token='.
newToken().
'&id='.
$object->id.
'">'.
img_edit($langs->transnoentitiesnoconv(
'SetProject')).
'</a> : ';
465 if ($action ==
'classify') {
468 $morehtmlref .=
'<form method="post" action="'.$_SERVER[
'PHP_SELF'].
'?id='.
$object->id.
'">';
469 $morehtmlref .=
'<input type="hidden" name="action" value="classin">';
470 $morehtmlref .=
'<input type="hidden" name="token" value="'.newToken().
'">';
471 $morehtmlref .= $formproject->select_projects(-1, (
string)
$object->fk_project,
'projectid', $maxlength, 0, 1, 0, 1, 0, 0,
'', 1);
472 $morehtmlref .=
'<input type="submit" class="button valignmiddle" value="'.$langs->trans(
"Modify").
'">';
473 $morehtmlref .=
'</form>';
475 $morehtmlref .= $form->form_project($_SERVER[
'PHP_SELF'].
'?id='.
$object->id, -1, (
string)
$object->fk_project,
'none', 0, 0, 0, 1,
'',
'maxwidth300');
478 if (!empty(
$object->fk_project)) {
480 $proj->fetch(
$object->fk_project);
481 $morehtmlref .=
' : '.$proj->getNomUrl(1);
483 $morehtmlref .=
' - '.$proj->title;
490 $morehtmlref .=
'</div>';
492 $object->totalpaid = $totalpaid;
494 dol_banner_tab(
$object,
'id', $linkback, 1,
'rowid',
'ref', $morehtmlref,
'', 0,
'', $morehtmlstatus);
496 print
'<div class="fichecenter">';
497 print
'<div class="fichehalfleft">';
498 print
'<div class="underbanner clearboth"></div>';
500 print
'<table class="border centpercent tableforfield">';
503 if ($action ==
'edit') {
504 print
'<tr><td class="fieldrequired titlefield">'.$langs->trans(
"LoanCapital").
'</td><td>';
505 print
'<input name="capital" size="10" value="'.$object->capital.
'"></td></tr>';
508 print
'<tr><td class="titlefield">'.$langs->trans(
"LoanCapital").
'</td><td><span class="amount">'.
price(
$object->capital, 0, $outputlangs, 1, -1, -1,
$conf->currency).
'</span></td></tr>';
512 if ($action ==
'edit') {
513 print
'<tr><td class="titlefield">'.$langs->trans(
"Insurance").
'</td><td>';
514 print
'<input name="insurance_amount" size="10" value="'.$object->insurance_amount.
'"></td></tr>';
517 print
'<tr><td class="titlefield">'.$langs->trans(
"Insurance").
'</td><td><span class="amount">'.
price(
$object->insurance_amount, 0, $outputlangs, 1, -1, -1,
$conf->currency).
'</span></td></tr>';
521 print
'<tr><td>'.$langs->trans(
"DateStart").
"</td>";
523 if ($action ==
'edit') {
524 print $form->selectDate(
$object->datestart,
'start', 0, 0, 0,
'update', 1, 0);
531 print
'<tr><td>'.$langs->trans(
"DateEnd").
"</td>";
533 if ($action ==
'edit') {
534 print $form->selectDate(
$object->dateend,
'end', 0, 0, 0,
'update', 1, 0);
541 print
'<tr><td>'.$langs->trans(
"Nbterms").
'</td>';
543 if ($action ==
'edit') {
544 print
'<input name="nbterm" size="4" value="'.$object->nbterm.
'">';
551 print
'<tr><td>'.$langs->trans(
"Rate").
'</td>';
553 if ($action ==
'edit') {
554 print
'<input name="rate" size="4" value="'.$object->rate.
'">%';
562 if ($action ==
'edit') {
563 print
'<td class="nowrap fieldrequired">';
564 print $langs->trans(
"LoanAccountancyCapitalCode");
567 if (isModEnabled(
'accounting') && $formaccounting !==
null) {
569 print $formaccounting->select_account(
$object->account_capital,
'accountancy_account_capital', 1, array(), 1, 1);
571 print
'<input name="accountancy_account_capital" size="16" value="'.$object->account_capital.
'">';
575 print
'<td class="nowrap">';
576 print $langs->trans(
"LoanAccountancyCapitalCode");
579 if (isModEnabled(
'accounting')) {
581 $accountingaccount->fetch(0,
$object->account_capital, 1);
583 print $accountingaccount->getNomUrl(0, 1, 1,
'', 1);
585 print
$object->account_capital;
594 if ($action ==
'edit') {
595 print
'<td class="nowrap fieldrequired">';
596 print $langs->trans(
"LoanAccountancyInsuranceCode");
599 if (isModEnabled(
'accounting') && $formaccounting !==
null) {
601 print $formaccounting->select_account(
$object->account_insurance,
'accountancy_account_insurance', 1, array(), 1, 1);
603 print
'<input name="accountancy_account_insurance" size="16" value="'.$object->account_insurance.
'">';
607 print
'<td class="nowrap">';
608 print $langs->trans(
"LoanAccountancyInsuranceCode");
611 if (isModEnabled(
'accounting')) {
613 $accountingaccount->fetch(0,
$object->account_insurance, 1);
615 print $accountingaccount->getNomUrl(0, 1, 1,
'', 1);
617 print
$object->account_insurance;
626 if ($action ==
'edit') {
627 print
'<td class="nowrap fieldrequired">';
628 print $langs->trans(
"LoanAccountancyInterestCode");
631 if (isModEnabled(
'accounting') && $formaccounting !==
null) {
633 print $formaccounting->select_account(
$object->account_interest,
'accountancy_account_interest', 1, array(), 1, 1);
635 print
'<input name="accountancy_account_interest" size="16" value="'.$object->account_interest.
'">';
639 print
'<td class="nowrap">';
640 print $langs->trans(
"LoanAccountancyInterestCode");
643 if (isModEnabled(
'accounting')) {
645 $accountingaccount->fetch(0,
$object->account_interest, 1);
647 print $accountingaccount->getNomUrl(0, 1, 1,
'', 1);
649 print
$object->account_interest;
657 $parameters = array();
658 $reshook = $hookmanager->executeHooks(
'formObjectOptions', $parameters,
$object, $action);
659 print $hookmanager->resPrint;
664 print
'<div class="fichehalfright">';
669 $sql =
"SELECT p.rowid, p.num_payment, p.datep as dp,";
670 $sql .=
" p.amount_capital, p.amount_insurance, p.amount_interest,";
671 $sql .=
" b.fk_account,";
672 $sql .=
" c.libelle as paiement_type";
673 $sql .=
" FROM ".MAIN_DB_PREFIX.
"payment_loan as p";
674 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"bank as b ON p.fk_bank = b.rowid";
675 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"c_paiement as c ON p.fk_typepayment = c.id,";
676 $sql .=
" ".MAIN_DB_PREFIX.
"loan as l";
677 $sql .=
" WHERE p.fk_loan = ".((int) $id);
678 $sql .=
" AND p.fk_loan = l.rowid";
679 $sql .=
" AND l.entity IN ( ".getEntity(
'loan').
")";
680 $sql .=
" ORDER BY dp DESC";
683 $resql = $db->query($sql);
685 $num = $db->num_rows($resql);
687 $total_insurance = 0;
691 print
'<div class="div-table-responsive-no-min">';
692 print
'<table class="noborder paymenttable">';
693 print
'<tr class="liste_titre">';
694 print
'<td>'.$langs->trans(
"RefPayment").
'</td>';
695 print
'<td>'.$langs->trans(
"Date").
'</td>';
696 print
'<td>'.$langs->trans(
"Type").
'</td>';
697 print
'<td>'.$langs->trans(
"BankAccount").
'</td>';
698 print
'<td class="right">'.$langs->trans(
"Insurance").
'</td>';
699 print
'<td class="right">'.$langs->trans(
"Interest").
'</td>';
700 print
'<td class="right">'.$langs->trans(
"LoanCapital").
'</td>';
701 print
'<td class="right">'.$langs->trans(
"Total").
'</td>';
704 $conf->cache[
'bankaccount'] = array();
707 $objp = $db->fetch_object($resql);
709 print
'<tr class="oddeven">';
710 print
'<td><a href="'.DOL_URL_ROOT.
'/loan/payment/card.php?id='.$objp->rowid.
'">'.
img_object($langs->trans(
"Payment"),
"payment").
' '.$objp->rowid.
'</a></td>';
711 print
'<td>'.dol_print_date($db->jdate($objp->dp),
'day').
"</td>\n";
712 print
"<td>".$objp->paiement_type.
' '.$objp->num_payment.
"</td>\n";
714 if (!empty(
$conf->cache[
'bankaccount'][$objp->fk_account])) {
715 $tmpbank =
$conf->cache[
'bankaccount'][$objp->fk_account];
718 $tmpbank->fetch($objp->fk_account);
719 $conf->cache[
'bankaccount'][$objp->fk_account] = $tmpbank;
721 print $tmpbank->getNomUrl(1);
723 print
'<td class="nowrap right"><span class="amount">'.price($objp->amount_insurance, 0, $outputlangs, 1, -1, -1,
$conf->currency).
"</span></td>\n";
724 print
'<td class="nowrap right"><span class="amount">'.price($objp->amount_interest, 0, $outputlangs, 1, -1, -1,
$conf->currency).
"</span></td>\n";
725 print
'<td class="nowrap right"><span class="amount">'.price($objp->amount_capital, 0, $outputlangs, 1, -1, -1,
$conf->currency).
"</span></td>\n";
726 print
'<td class="nowrap right"><span class="amount">'.price($objp->amount_insurance + $objp->amount_interest + $objp->amount_capital, 0, $outputlangs, 1, -1, -1,
$conf->currency).
"</span></td>\n";
728 $total_capital += $objp->amount_capital;
732 $totalpaid = $total_capital;
735 print
'<tr><td colspan="6" class="right">'.$langs->trans(
"AlreadyPaid").
' :</td><td class="nowrap right">'.
price($totalpaid, 0, $langs, 0, -1, -1,
$conf->currency).
'</td><td> </td></tr>';
736 print
'<tr><td colspan="6" class="right">'.$langs->trans(
"AmountExpected").
' :</td><td class="nowrap right">'.
price(
$object->capital, 0, $outputlangs, 1, -1, -1,
$conf->currency).
'</td><td> </td></tr>';
738 $staytopay =
$object->capital - $totalpaid;
740 print
'<tr><td colspan="6" class="right">'.$langs->trans(
"RemainderToPay").
' :</td>';
741 print
'<td class="nowrap right'.($staytopay ?
' amountremaintopay' :
' amountpaymentcomplete').
'">';
742 print
price($staytopay, 0, $langs, 0, -1, -1,
$conf->currency);
744 print
'<td> </td>';
758 print
'<div class="clearboth"></div>';
762 if ($action ==
'edit') {
763 print $form->buttonsSaveCancel();
771 if ($action !=
'edit') {
772 $reshook = $hookmanager->executeHooks(
'addMoreActionsButtons', $parameters,
$object, $action);
773 if (empty($reshook)) {
774 print
'<div class="tabsAction">';
777 if ((
$object->paid == 0 ||
$object->paid == 2) && $user->hasRight(
'loan',
'write')) {
778 print
'<div class="inline-block divButAction"><a class="butAction" href="'.DOL_URL_ROOT.
'/loan/card.php?id='.
$object->id.
'&action=edit&token='.
newToken().
'">'.$langs->trans(
"Modify").
'</a></div>';
784 print
'<div class="inline-block divButAction"><a class="butAction" href="'.DOL_URL_ROOT.
'/loan/payment/payment.php?id='.
$object->id.
'&action=create&token='.
newToken().
'">'.$langs->trans(
"DoPayment").
'</a></div>';
788 if ((
$object->paid == 0 ||
$object->paid == 2) && round($staytopay) <= 0 && $user->hasRight(
'loan',
'write')) {
789 print
'<div class="inline-block divButAction"><a class="butAction" href="'.DOL_URL_ROOT.
'/loan/card.php?id='.
$object->id.
'&action=paid&token='.
newToken().
'">'.$langs->trans(
"ClassifyPaid").
'</a></div>';
793 if ((
$object->paid == 0 ||
$object->paid == 2) && $user->hasRight(
'loan',
'delete')) {
794 print
'<div class="inline-block divButAction"><a class="butActionDelete" href="'.DOL_URL_ROOT.
'/loan/card.php?id='.
$object->id.
'&action=delete&token='.
newToken().
'">'.$langs->trans(
"Delete").
'</a></div>';
$id
Support class for third parties, contacts, members, users or resources.
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $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.
Class to manage bank accounts.
Class to manage accounting accounts.
Class to manage a WYSIWYG editor.
Class to manage projects.
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.
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.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $allowothertags=array())
Show a picto called object_picto (generic function)
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.
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'.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
GETPOSTFLOAT($paramname, $rounding='')
Return the value of a $_GET or $_POST supervariable, converted into float.
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...
loan_prepare_head($object)
Prepare array with list of tabs.
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
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.