28require
'../main.inc.php';
29require_once DOL_DOCUMENT_ROOT.
'/loan/class/loan.class.php';
40$langs->loadLangs(array(
"banks",
"bills",
"compta",
"loan"));
42$search_all = trim(
GETPOST(
'search_all',
'alphanohtml'));
44$action =
GETPOST(
'action',
'aZ09') ?
GETPOST(
'action',
'aZ09') :
'view';
45$massaction =
GETPOST(
'massaction',
'alpha');
47$confirm =
GETPOST(
'confirm',
'alpha');
48$cancel =
GETPOST(
'cancel',
'alpha');
49$toselect =
GETPOST(
'toselect',
'array');
50$contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') : str_replace(
'_',
'', basename(dirname(__FILE__)).basename(__FILE__,
'.php'));
51$backtopage =
GETPOST(
'backtopage',
'alpha');
52$optioncss =
GETPOST(
'optioncss',
'aZ');
56$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
57$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
59if (empty($page) || $page < 0 ||
GETPOST(
'button_search',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
63$offset = $limit * $page;
70$diroutputmassaction =
$conf->loan->dir_output.
'/temp/massgeneration/'.$user->id;
71$hookmanager->initHooks(array($contextpage));
74$extrafields->fetch_name_optionals_label(
$object->table_element);
77$search_array_options = $extrafields->getOptionalsFromPost(
$object->table_element,
'',
'search_');
81 $sortfield =
"l.rowid";
88$arrayfields = array();
89foreach (
$object->fields as $key => $val) {
91 if (!empty($val[
'visible'])) {
92 $visible = (int)
dol_eval((
string) $val[
'visible'], 1);
93 $arrayfields[
't.'.$key] = array(
94 'label'=>$val[
'label'],
95 'checked'=>(($visible < 0) ? 0 : 1),
96 'enabled'=>(abs($visible) != 3 && (bool)
dol_eval($val[
'enabled'], 1)),
97 'position'=>$val[
'position'],
98 'help'=> isset($val[
'help']) ? $val[
'help'] :
''
103include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_array_fields.tpl.php';
109$search_ref =
GETPOST(
'search_ref',
'alpha');
110$search_label =
GETPOST(
'search_label',
'alpha');
111$search_amount =
GETPOST(
'search_amount',
'alpha');
113$permissiontoadd = $user->hasRight(
'loan',
'write');
118 $socid = $user->socid;
127if (
GETPOST(
'cancel',
'alpha')) {
131if (!
GETPOST(
'confirmmassaction',
'alpha') && $massaction !=
'presend' && $massaction !=
'confirm_presend') {
135$parameters = array();
136$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
141if (empty($reshook)) {
143 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
154$form =
new Form($db);
157$title = $langs->trans(
'Loans');
158$help_url =
"EN:Module_Loan|FR:Module_Emprunt";
162$sql =
"SELECT l.rowid, l.label, l.capital, l.datestart, l.dateend, l.paid,";
163$sql .=
" SUM(pl.amount_capital) as alreadypaid";
167$sql .=
" FROM ".MAIN_DB_PREFIX.
"loan as l";
168$linktopl =
" LEFT JOIN ".MAIN_DB_PREFIX.
"payment_loan AS pl ON l.rowid = pl.fk_loan";
171$sql .=
" WHERE l.entity = ".$conf->entity;
176 $sql .=
" AND l.rowid = ".((int) $search_ref);
181$sql .=
" GROUP BY l.rowid, l.label, l.capital, l.paid, l.datestart, l.dateend";
184$nbtotalofrecords =
'';
187 $sqlforcount = preg_replace(
'/^'.preg_quote($sqlfields,
'/').
'/',
'SELECT COUNT(*) as nbtotalofrecords', $sql);
188 $sqlforcount = preg_replace(
'/'.preg_quote($linktopl,
'/').
'/',
'', $sqlforcount);
189 $sqlforcount = preg_replace(
'/GROUP BY .*$/',
'', $sqlforcount);
190 $resql = $db->query($sqlforcount);
192 $objforcount = $db->fetch_object($resql);
193 $nbtotalofrecords = $objforcount->nbtotalofrecords;
198 if (($page * $limit) > $nbtotalofrecords) {
206$sql .= $db->order($sortfield, $sortorder);
208 $sql .= $db->plimit($limit + 1, $offset);
211$resql = $db->query($sql);
217$num = $db->num_rows($resql);
222if ($num == 1 &&
getDolGlobalInt(
'MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE') && $search_all && !$page) {
223 $obj = $db->fetch_object($resql);
225 header(
"Location: ".
dol_buildpath(
'/mymodule/myobject_card.php', 1).
'?id='.((
int)
$id));
233llxHeader(
'', $title, $help_url,
'', 0, 0,
'',
'',
'',
'bodyforlist mod-loan page-list');
235$arrayofselected = is_array($toselect) ? $toselect : array();
239 $param .=
'&mode='.urlencode($mode);
241if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
242 $param .=
'&contextpage='.urlencode($contextpage);
244if ($limit > 0 && $limit !=
$conf->liste_limit) {
245 $param .=
'&limit='.((int) $limit);
247if ($optioncss !=
'') {
248 $param .=
'&optioncss='.urlencode($optioncss);
251 $param .=
"&search_ref=".urlencode($search_ref);
254 $param .=
"&search_label=".urlencode($search_label);
257 $param .=
"&search_amount=".urlencode($search_amount);
260include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
262$parameters = array(
'param' => &$param);
263$reshook = $hookmanager->executeHooks(
'printFieldListSearchParam', $parameters, $object, $action);
264$param .= $hookmanager->resPrint;
267$arrayofmassactions = array();
268if (!empty($permissiontodelete)) {
269 $arrayofmassactions[
'predelete'] =
img_picto(
'',
'delete',
'class="pictofixedwidth"').$langs->trans(
"Delete");
271if (
GETPOSTINT(
'nomassaction') || in_array($massaction, array(
'presend',
'predelete'))) {
272 $arrayofmassactions = array();
274$massactionbutton = $form->selectMassAction(
'', $arrayofmassactions);
277$url = DOL_URL_ROOT.
'/loan/card.php?action=create';
279 $url .=
'&socid='.$socid;
282$newcardbutton .=
dolGetButtonTitle($langs->trans(
'ViewList'),
'',
'fa fa-bars imgforviewmode', $_SERVER[
"PHP_SELF"].
'?mode=common'.preg_replace(
'/(&|\?)*mode=[^&]+/',
'', $param),
'', ((empty($mode) || $mode ==
'common') ? 2 : 1), array(
'morecss'=>
'reposition'));
283$newcardbutton .=
dolGetButtonTitle($langs->trans(
'ViewKanban'),
'',
'fa fa-th-list imgforviewmode', $_SERVER[
"PHP_SELF"].
'?mode=kanban'.preg_replace(
'/(&|\?)*mode=[^&]+/',
'', $param),
'', ($mode ==
'kanban' ? 2 : 1), array(
'morecss'=>
'reposition'));
285$newcardbutton .=
dolGetButtonTitle($langs->trans(
'NewLoan'),
'',
'fa fa-plus-circle', $url,
'', $permissiontoadd);
287$massactionbutton = $form->selectMassAction(
'', $arrayofmassactions);
289print
'<form method="POST" id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].
'">'.
"\n";
290if ($optioncss !=
'') {
291 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
293print
'<input type="hidden" name="token" value="'.newToken().
'">';
294print
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
295print
'<input type="hidden" name="action" value="list">';
296print
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
297print
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
298print
'<input type="hidden" name="page" value="'.$page.
'">';
299print
'<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
300print
'<input type="hidden" name="page_y" value="">';
301print
'<input type="hidden" name="mode" value="'.$mode.
'">';
304$newcardbutton .=
dolGetButtonTitle($langs->trans(
'ViewList'),
'',
'fa fa-bars imgforviewmode', $_SERVER[
"PHP_SELF"].
'?mode=common'.preg_replace(
'/(&|\?)*mode=[^&]+/',
'', $param),
'', ((empty($mode) || $mode ==
'common') ? 2 : 1), array(
'morecss'=>
'reposition'));
305$newcardbutton .=
dolGetButtonTitle($langs->trans(
'ViewKanban'),
'',
'fa fa-th-list imgforviewmode', $_SERVER[
"PHP_SELF"].
'?mode=kanban'.preg_replace(
'/(&|\?)*mode=[^&]+/',
'', $param),
'', ($mode ==
'kanban' ? 2 : 1), array(
'morecss'=>
'reposition'));
307$newcardbutton .=
dolGetButtonTitle($langs->trans(
'New'),
'',
'fa fa-plus-circle',
dol_buildpath(
'/loan/card.php', 1).
'?action=create&backtopage='.urlencode($_SERVER[
'PHP_SELF']),
'', $permissiontoadd);
309print_barre_liste($title, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords,
'money-bill-alt', 0, $newcardbutton,
'', $limit, 0, 0, 1);
313$parameters = array();
314$reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters, $object, $action);
315if (empty($reshook)) {
316 $moreforfilter .= $hookmanager->resPrint;
318 $moreforfilter = $hookmanager->resPrint;
321if (!empty($moreforfilter)) {
322 print
'<div class="liste_titre liste_titre_bydiv centpercent">';
323 print $moreforfilter;
327$varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
328$htmlofselectarray = $form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage,
getDolGlobalString(
'MAIN_CHECKBOX_LEFT_COLUMN'));
329$selectedfields = ($mode !=
'kanban' ? $htmlofselectarray :
'');
330$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons(
'checkforselect', 1) :
'');
332print
'<div class="div-table-responsive">';
333print
'<table class="tagtable nobottomiftotal liste'.($moreforfilter ?
" listwithfilterbefore" :
"").
'">'.
"\n";
337print
'<tr class="liste_titre_filter">';
340 print
'<td class="liste_titre center maxwidthsearch">';
341 $searchpicto = $form->showFilterButtons(
'left');
347print
'<td class="liste_titre"><input class="flat" size="4" type="text" name="search_ref" value="'.$search_ref.
'"></td>';
350print
'<td class="liste_titre"><input class="flat" size="12" type="text" name="search_label" value="'.$search_label.
'"></td>';
353print
'<td class="liste_titre right" ><input class="flat" size="8" type="text" name="search_amount" value="'.$search_amount.
'"></td>';
356print
'<td class="liste_titre"> </td>';
359print
'<td class="liste_titre"> </td>';
362print
'<td class="liste_titre"></td>';
366 print
'<td class="liste_titre center maxwidthsearch">';
367 $searchpicto = $form->showFilterButtons();
373$totalarray = array();
374$totalarray[
'nbfield'] = 0;
378print
'<tr class="liste_titre">';
382 $totalarray[
'nbfield']++;
385$totalarray[
'nbfield']++;
386print_liste_field_titre(
"Label", $_SERVER[
"PHP_SELF"],
"l.label",
"", $param,
'', $sortfield, $sortorder,
'left ');
387$totalarray[
'nbfield']++;
388print_liste_field_titre(
"LoanCapital", $_SERVER[
"PHP_SELF"],
"l.capital",
"", $param,
'', $sortfield, $sortorder,
'right ');
389$totalarray[
'nbfield']++;
390print_liste_field_titre(
"DateStart", $_SERVER[
"PHP_SELF"],
"l.datestart",
"", $param,
'', $sortfield, $sortorder,
'center ');
391$totalarray[
'nbfield']++;
392print_liste_field_titre(
"DateEnd", $_SERVER[
"PHP_SELF"],
"l.dateend",
"", $param,
'', $sortfield, $sortorder,
'center ');
393$totalarray[
'nbfield']++;
394print_liste_field_titre(
"Status", $_SERVER[
"PHP_SELF"],
"l.paid",
"", $param,
'', $sortfield, $sortorder,
'center ');
395$totalarray[
'nbfield']++;
398 $totalarray[
'nbfield']++;
406$savnbfield = $totalarray[
'nbfield'];
407$totalarray = array();
408$totalarray[
'nbfield'] = 0;
409$imaxinloop = ($limit ? min($num, $limit) : $num);
410while ($i < $imaxinloop) {
411 $obj = $db->fetch_object($resql);
420 $object->datestart= $db->jdate($obj->datestart);
421 $object->dateend = $db->jdate($obj->dateend);
423 if ($mode ==
'kanban') {
425 print
'<tr class="trkanban"><td colspan="'.$savnbfield.
'">';
426 print
'<div class="box-flex-container kanban">';
429 $object->capital = $obj->capital;
430 $object->totalpaid = $obj->paid;
434 if ($massactionbutton || $massaction) {
436 if (in_array(
$object->id, $arrayofselected)) {
440 print
$object->getKanbanView(
'', array(
'selected' => $selected));
441 if ($i == ($imaxinloop - 1)) {
448 print
'<tr data-rowid="'.$object->id.
'" class="oddeven">';
456 print
'<td>'.$object->getNomUrl(1).
'</td>';
459 print
'<td>'.dol_trunc($obj->label, 42).
'</td>';
462 print
'<td class="right maxwidth100"><span class="amount">'.price($obj->capital).
'</span></td>';
465 print
'<td class="center width100">'.dol_print_date($db->jdate($obj->datestart),
'day').
'</td>';
468 print
'<td class="center width100">'.dol_print_date($db->jdate($obj->dateend),
'day').
'</td>';
470 print
'<td class="center nowrap">';
471 print
$object->LibStatut($obj->paid, 5, $obj->alreadypaid);
488 print
'<tr><td colspan="'.$colspan.
'" class="opacitymedium">'.$langs->trans(
"NoRecordFound").
'</td></tr>';
493$parameters = array(
'arrayfields'=>$arrayfields,
'sql'=>$sql);
494$reshook = $hookmanager->executeHooks(
'printFieldListFooter', $parameters, $object, $action);
495print $hookmanager->resPrint;
497print
'</table>'.
"\n";
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
print_barre_liste($title, $page, $file, $options='', $sortfield='', $sortorder='', $morehtmlcenter='', $num=-1, $totalnboflines='', $picto='generic', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limit=-1, $selectlimitsuffix=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dolGetButtonTitle($label, $helpText='', $iconClass='fa fa-file', $url='', $id='', $status=1, $params=array())
Function dolGetButtonTitle : this kind of buttons are used in title in list.
dol_eval($s, $returnvalue=1, $hideerrors=1, $onlysimplestring='1')
Replace eval function to add more security.
natural_search($fields, $value, $mode=0, $nofirstand=0)
Generate natural SQL search string for a criteria (this criteria can be tested on one or several fiel...
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_sort_array(&$array, $index, $order='asc', $natsort=0, $case_sensitive=0, $keepindex=0)
Advanced sort array by the value of a given key, which produces ascending (default) or descending out...
print_liste_field_titre($name, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $tooltip="", $forcenowrapcolumntitle=0)
Show title line of an array.
dolGetButtonTitleSeparator($moreClass="")
Add space between dolGetButtonTitle.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
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.
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.