26require
'../main.inc.php';
27require_once DOL_DOCUMENT_ROOT.
'/loan/class/loan.class.php';
28require_once DOL_DOCUMENT_ROOT.
'/core/lib/loan.lib.php';
29require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
30if (isModEnabled(
'project')) {
31 require_once DOL_DOCUMENT_ROOT.
'/projet/class/project.class.php';
35$langs->loadLangs(array(
"compta",
"bills",
"loan"));
38$action =
GETPOST(
'action',
'aZ09');
41$socid =
GETPOST(
'socid',
'int');
43 $socid = $user->socid;
54$title = $langs->trans(
"Loan").
' - '.$langs->trans(
"Info");
55$help_url =
'EN:Module_Loan|FR:Module_Emprunt';
58$object =
new Loan($db);
66$morehtmlref =
'<div class="refidno">';
68$morehtmlref .= $form->editfieldkey(
"Label",
'label', $object->label, $object, 0,
'string',
'', 0, 1);
69$morehtmlref .= $form->editfieldval(
"Label",
'label', $object->label, $object, 0,
'string',
'',
null,
null,
'', 1);
71if (isModEnabled(
'project')) {
72 $langs->load(
"projects");
73 $morehtmlref .=
'<br>'.$langs->trans(
'Project').
' : ';
74 if ($user->hasRight(
'loan',
'write')) {
77 if ($action ==
'classify') {
79 $morehtmlref .=
'<form method="post" action="'.$_SERVER[
'PHP_SELF'].
'?id='.$object->id.
'">';
80 $morehtmlref .=
'<input type="hidden" name="action" value="classin">';
81 $morehtmlref .=
'<input type="hidden" name="token" value="'.newToken().
'">';
82 $morehtmlref .= $formproject->select_projects($object->socid, $object->fk_project,
'projectid', $maxlength, 0, 1, 0, 1, 0, 0,
'', 1);
83 $morehtmlref .=
'<input type="submit" class="button valignmiddle" value="'.$langs->trans(
"Modify").
'">';
84 $morehtmlref .=
'</form>';
86 $morehtmlref .= $form->form_project($_SERVER[
'PHP_SELF'].
'?id='.$object->id, $object->socid, $object->fk_project,
'none', 0, 0, 0, 1,
'',
'maxwidth300');
89 if (!empty($object->fk_project)) {
91 $proj->fetch($object->fk_project);
92 $morehtmlref .=
' : '.$proj->getNomUrl(1);
94 $morehtmlref .=
' - '.$proj->title;
101$morehtmlref .=
'</div>';
103$linkback =
'<a href="'.DOL_URL_ROOT.
'/loan/list.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
105dol_banner_tab($object,
'id', $linkback, 1,
'rowid',
'ref', $morehtmlref,
'', 0,
'', $morehtmlright);
107print
'<div class="fichecenter">';
108print
'<div class="underbanner clearboth"></div>';
112print
'<table width="100%"><tr><td>';
114print
'</td></tr></table>';
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Class to manage projects.
dol_print_object_info($object, $usetable=0)
Show informations on an object TODO Move this into html.formother.
dol_banner_tab($object, $paramid, $morehtml='', $shownav=1, $fieldid='rowid', $fieldref='ref', $morehtmlref='', $moreparam='', $nodbprefix=0, $morehtmlleft='', $morehtmlstatus='', $onlybanner=0, $morehtmlright='')
Show tab footer of a card.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
loan_prepare_head($object)
Prepare array with list of tabs.
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.