28require
'../main.inc.php';
29require_once DOL_DOCUMENT_ROOT.
'/loan/class/loan.class.php';
32$langs->loadLangs(array(
"banks",
"bills",
"compta",
"loan"));
35$action =
GETPOST(
'action',
'aZ09') ?
GETPOST(
'action',
'aZ09') :
'view';
36$massaction =
GETPOST(
'massaction',
'alpha');
38$confirm =
GETPOST(
'confirm',
'alpha');
39$cancel =
GETPOST(
'cancel',
'alpha');
40$toselect =
GETPOST(
'toselect',
'array');
41$contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') : str_replace(
'_',
'', basename(dirname(__FILE__)).basename(__FILE__,
'.php'));
42$backtopage =
GETPOST(
'backtopage',
'alpha');
43$optioncss =
GETPOST(
'optioncss',
'aZ');
47$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
48$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
50if (empty($page) || $page < 0 ||
GETPOST(
'button_search',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
54$offset = $limit * $page;
61$diroutputmassaction = $conf->loan->dir_output.
'/temp/massgeneration/'.$user->id;
62$hookmanager->initHooks(array($contextpage));
65$extrafields->fetch_name_optionals_label(
$object->table_element);
68$search_array_options = $extrafields->getOptionalsFromPost(
$object->table_element,
'',
'search_');
72 $sortfield =
"l.rowid";
79$arrayfields = array();
80foreach (
$object->fields as $key => $val) {
82 if (!empty($val[
'visible'])) {
83 $visible = (int)
dol_eval($val[
'visible'], 1);
84 $arrayfields[
't.'.$key] = array(
85 'label'=>$val[
'label'],
86 'checked'=>(($visible < 0) ? 0 : 1),
87 'enabled'=>(abs($visible) != 3 && (bool)
dol_eval($val[
'enabled'], 1)),
88 'position'=>$val[
'position'],
89 'help'=> isset($val[
'help']) ? $val[
'help'] :
''
94include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_array_fields.tpl.php';
100$search_ref =
GETPOST(
'search_ref',
'alpha');
101$search_label =
GETPOST(
'search_label',
'alpha');
102$search_amount =
GETPOST(
'search_amount',
'alpha');
104$permissiontoadd = $user->hasRight(
'loan',
'write');
109 $socid = $user->socid;
118if (
GETPOST(
'cancel',
'alpha')) {
122if (!
GETPOST(
'confirmmassaction',
'alpha') && $massaction !=
'presend' && $massaction !=
'confirm_presend') {
126$parameters = array();
127$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
132if (empty($reshook)) {
134 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
145$form =
new Form($db);
148$help_url=
"EN:Module_Loan|FR:Module_Emprunt";
150$title = $langs->trans(
'Loans');
155$sql =
"SELECT l.rowid, l.label, l.capital, l.datestart, l.dateend, l.paid,";
156$sql .=
" SUM(pl.amount_capital) as alreadypaid";
160$sql .=
" FROM ".MAIN_DB_PREFIX.
"loan as l";
161$linktopl =
" LEFT JOIN ".MAIN_DB_PREFIX.
"payment_loan AS pl ON l.rowid = pl.fk_loan";
164$sql .=
" WHERE l.entity = ".$conf->entity;
169 $sql .=
" AND l.rowid = ".((int) $search_ref);
174$sql .=
" GROUP BY l.rowid, l.label, l.capital, l.paid, l.datestart, l.dateend";
177$nbtotalofrecords =
'';
180 $sqlforcount = preg_replace(
'/^'.preg_quote($sqlfields,
'/').
'/',
'SELECT COUNT(*) as nbtotalofrecords', $sql);
181 $sqlforcount = preg_replace(
'/'.preg_quote($linktopl,
'/').
'/',
'', $sqlforcount);
182 $sqlforcount = preg_replace(
'/GROUP BY .*$/',
'', $sqlforcount);
183 $resql = $db->query($sqlforcount);
185 $objforcount = $db->fetch_object($resql);
186 $nbtotalofrecords = $objforcount->nbtotalofrecords;
191 if (($page * $limit) > $nbtotalofrecords) {
199$sql .= $db->order($sortfield, $sortorder);
201 $sql .= $db->plimit($limit + 1, $offset);
204$resql = $db->query($sql);
210$num = $db->num_rows($resql);
215if ($num == 1 &&
getDolGlobalInt(
'MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE') && $search_all && !$page) {
216 $obj = $db->fetch_object($resql);
218 header(
"Location: ".
dol_buildpath(
'/mymodule/myobject_card.php', 1).
'?id='.((
int) $id));
226llxHeader(
'', $title, $help_url,
'', 0, 0,
'',
'',
'',
'bodyforlist');
228$arrayofselected = is_array($toselect) ? $toselect : array();
232 $param .=
'&mode='.urlencode($mode);
234if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
235 $param .=
'&contextpage='.urlencode($contextpage);
237if ($limit > 0 && $limit != $conf->liste_limit) {
238 $param .=
'&limit='.((int) $limit);
240if ($optioncss !=
'') {
241 $param .=
'&optioncss='.urlencode($optioncss);
244 $param .=
"&search_ref=".urlencode($search_ref);
247 $param .=
"&search_label=".urlencode($search_label);
250 $param .=
"&search_amount=".urlencode($search_amount);
253include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
255$parameters = array(
'param' => &$param);
256$reshook = $hookmanager->executeHooks(
'printFieldListSearchParam', $parameters, $object, $action);
257$param .= $hookmanager->resPrint;
260$arrayofmassactions = array();
261if (!empty($permissiontodelete)) {
262 $arrayofmassactions[
'predelete'] =
img_picto(
'',
'delete',
'class="pictofixedwidth"').$langs->trans(
"Delete");
264if (
GETPOSTINT(
'nomassaction') || in_array($massaction, array(
'presend',
'predelete'))) {
265 $arrayofmassactions = array();
267$massactionbutton = $form->selectMassAction(
'', $arrayofmassactions);
270$url = DOL_URL_ROOT.
'/loan/card.php?action=create';
272 $url .=
'&socid='.$socid;
275$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'));
276$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'));
278$newcardbutton .=
dolGetButtonTitle($langs->trans(
'NewLoan'),
'',
'fa fa-plus-circle', $url,
'', $permissiontoadd);
280$massactionbutton = $form->selectMassAction(
'', $arrayofmassactions);
282print
'<form method="POST" id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].
'">'.
"\n";
283if ($optioncss !=
'') {
284 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
286print
'<input type="hidden" name="token" value="'.newToken().
'">';
287print
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
288print
'<input type="hidden" name="action" value="list">';
289print
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
290print
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
291print
'<input type="hidden" name="page" value="'.$page.
'">';
292print
'<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
293print
'<input type="hidden" name="page_y" value="">';
294print
'<input type="hidden" name="mode" value="'.$mode.
'">';
297$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'));
298$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'));
300$newcardbutton .=
dolGetButtonTitle($langs->trans(
'New'),
'',
'fa fa-plus-circle',
dol_buildpath(
'/loan/card.php', 1).
'?action=create&backtopage='.urlencode($_SERVER[
'PHP_SELF']),
'', $permissiontoadd);
302print_barre_liste($title, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords,
'money-bill-alt', 0, $newcardbutton,
'', $limit, 0, 0, 1);
306$parameters = array();
307$reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters, $object, $action);
308if (empty($reshook)) {
309 $moreforfilter .= $hookmanager->resPrint;
311 $moreforfilter = $hookmanager->resPrint;
314if (!empty($moreforfilter)) {
315 print
'<div class="liste_titre liste_titre_bydiv centpercent">';
316 print $moreforfilter;
320$varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
321$htmlofselectarray = $form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage,
getDolGlobalString(
'MAIN_CHECKBOX_LEFT_COLUMN'));
322$selectedfields = ($mode !=
'kanban' ? $htmlofselectarray :
'');
323$selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons(
'checkforselect', 1) :
'');
325print
'<div class="div-table-responsive">';
326print
'<table class="tagtable nobottomiftotal liste'.($moreforfilter ?
" listwithfilterbefore" :
"").
'">'.
"\n";
330print
'<tr class="liste_titre_filter">';
333 print
'<td class="liste_titre center maxwidthsearch">';
334 $searchpicto = $form->showFilterButtons(
'left');
340print
'<td class="liste_titre"><input class="flat" size="4" type="text" name="search_ref" value="'.$search_ref.
'"></td>';
343print
'<td class="liste_titre"><input class="flat" size="12" type="text" name="search_label" value="'.$search_label.
'"></td>';
346print
'<td class="liste_titre right" ><input class="flat" size="8" type="text" name="search_amount" value="'.$search_amount.
'"></td>';
349print
'<td class="liste_titre"> </td>';
352print
'<td class="liste_titre"> </td>';
355print
'<td class="liste_titre"></td>';
359 print
'<td class="liste_titre center maxwidthsearch">';
360 $searchpicto = $form->showFilterButtons();
366$totalarray = array();
367$totalarray[
'nbfield'] = 0;
371print
'<tr class="liste_titre">';
375 $totalarray[
'nbfield']++;
378$totalarray[
'nbfield']++;
379print_liste_field_titre(
"Label", $_SERVER[
"PHP_SELF"],
"l.label",
"", $param,
'', $sortfield, $sortorder,
'left ');
380$totalarray[
'nbfield']++;
381print_liste_field_titre(
"LoanCapital", $_SERVER[
"PHP_SELF"],
"l.capital",
"", $param,
'', $sortfield, $sortorder,
'right ');
382$totalarray[
'nbfield']++;
383print_liste_field_titre(
"DateStart", $_SERVER[
"PHP_SELF"],
"l.datestart",
"", $param,
'', $sortfield, $sortorder,
'center ');
384$totalarray[
'nbfield']++;
385print_liste_field_titre(
"DateEnd", $_SERVER[
"PHP_SELF"],
"l.dateend",
"", $param,
'', $sortfield, $sortorder,
'center ');
386$totalarray[
'nbfield']++;
387print_liste_field_titre(
"Status", $_SERVER[
"PHP_SELF"],
"l.paid",
"", $param,
'', $sortfield, $sortorder,
'center ');
388$totalarray[
'nbfield']++;
391 $totalarray[
'nbfield']++;
399$savnbfield = $totalarray[
'nbfield'];
400$totalarray = array();
401$totalarray[
'nbfield'] = 0;
402$imaxinloop = ($limit ? min($num, $limit) : $num);
403while ($i < $imaxinloop) {
404 $obj = $db->fetch_object($resql);
415 if ($mode ==
'kanban') {
417 print
'<tr class="trkanban"><td colspan="'.$savnbfield.
'">';
418 print
'<div class="box-flex-container kanban">';
421 $object->datestart= $obj->datestart;
422 $object->dateend = $obj->dateend;
423 $object->capital = $obj->capital;
424 $object->totalpaid = $obj->paid;
428 if ($massactionbutton || $massaction) {
430 if (in_array(
$object->id, $arrayofselected)) {
434 print
$object->getKanbanView(
'', array(
'selected' => $selected));
435 if ($i == ($imaxinloop - 1)) {
442 print
'<tr data-rowid="'.$object->id.
'" class="oddeven">';
450 print
'<td>'.$object->getNomUrl(1).
'</td>';
453 print
'<td>'.dol_trunc($obj->label, 42).
'</td>';
456 print
'<td class="right maxwidth100"><span class="amount">'.price($obj->capital).
'</span></td>';
459 print
'<td class="center width100">'.dol_print_date($db->jdate($obj->datestart),
'day').
'</td>';
462 print
'<td class="center width100">'.dol_print_date($db->jdate($obj->dateend),
'day').
'</td>';
464 print
'<td class="center nowrap">';
465 print
$object->LibStatut($obj->paid, 5, $obj->alreadypaid);
482 print
'<tr><td colspan="'.$colspan.
'" class="opacitymedium">'.$langs->trans(
"NoRecordFound").
'</td></tr>';
487$parameters = array(
'arrayfields'=>$arrayfields,
'sql'=>$sql);
488$reshook = $hookmanager->executeHooks(
'printFieldListFooter', $parameters, $object, $action);
489print $hookmanager->resPrint;
491print
'</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()
Empty header.
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.
print_barre_liste($title, $page, $file, $options='', $sortfield='', $sortorder='', $morehtmlcenter='', $num=-1, $totalnboflines='', $picto='generic', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limit=-1, $hideselectlimit=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
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 dolibarr global constant string value.
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.