* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ /** * \file htdocs/asset/type.php * \ingroup asset * \brief Asset's type setup */ require '../main.inc.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/asset.lib.php'; require_once DOL_DOCUMENT_ROOT.'/asset/class/asset.class.php'; require_once DOL_DOCUMENT_ROOT.'/asset/class/asset_type.class.php'; require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php'; if (! empty($conf->accounting->enabled)) require_once DOL_DOCUMENT_ROOT.'/core/lib/accounting.lib.php'; if (! empty($conf->accounting->enabled)) require_once DOL_DOCUMENT_ROOT.'/core/class/html.formaccounting.class.php'; if (! empty($conf->accounting->enabled)) require_once DOL_DOCUMENT_ROOT.'/accountancy/class/accountingaccount.class.php'; // Load translation files required by the page $langs->load("assets"); $rowid = GETPOST('rowid','int'); $action = GETPOST('action','alpha'); $cancel = GETPOST('cancel','alpha'); $backtopage = GETPOST('backtopage','alpha'); $type = GETPOST('type','alpha'); $limit = GETPOST('limit','int')?GETPOST('limit','int'):$conf->liste_limit; $sortfield = GETPOST("sortfield",'alpha'); $sortorder = GETPOST("sortorder",'alpha'); $page = GETPOST("page",'int'); if (empty($page) || $page == -1) { $page = 0; } // If $page is not defined, or '' or -1 $offset = $limit * $page ; $pageprev = $page - 1; $pagenext = $page + 1; if (! $sortorder) { $sortorder="DESC"; } if (! $sortfield) { $sortfield="d.lastname"; } $label=GETPOST("label","alpha"); $comment=GETPOST("comment"); // Security check $result=restrictedArea($user,'asset',$rowid,'asset_type'); $object = new AssetType($db); $extrafields = new ExtraFields($db); // fetch optionals attributes and labels $extralabels=$extrafields->fetch_name_optionals_label('asset_type'); if (GETPOST('button_removefilter_x','alpha') || GETPOST('button_removefilter_x','alpha') || GETPOST('button_removefilter','alpha')) // All tests are required to be compatible with all browsers { $type=""; $sall=""; } // Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context $hookmanager->initHooks(array('assettypecard','globalcard')); /* * Actions */ if ($cancel) { $action=''; if (! empty($backtopage)) { header("Location: ".$backtopage); exit; } } if ($action == 'add' && $user->rights->asset->write) { $object->label = trim($label); $object->accountancy_code_asset = trim($accountancy_code_asset); $object->accountancy_code_depreciation_asset = trim($accountancy_code_depreciation_asset); $object->accountancy_code_depreciation_expense = trim($accountancy_code_depreciation_expense); $object->note = trim($comment); // Fill array 'array_options' with data from add form $ret = $extrafields->setOptionalsFromPost($extralabels,$object); if ($ret < 0) $error++; if (empty($object->label)) { $error++; setEventMessages($langs->trans("ErrorFieldRequired",$langs->transnoentities("Label")), null, 'errors'); } else { $sql = "SELECT label FROM ".MAIN_DB_PREFIX."asset_type WHERE label='".$db->escape($object->label)."'"; $result = $db->query($sql); if ($result) { $num = $db->num_rows($result); } if ($num) { $error++; $langs->load("errors"); setEventMessages($langs->trans("ErrorLabelAlreadyExists",$login), null, 'errors'); } } if (! $error) { $id=$object->create($user); if ($id > 0) { header("Location: ".$_SERVER["PHP_SELF"]); exit; } else { setEventMessages($object->error, $object->errors, 'errors'); $action = 'create'; } } else { $action = 'create'; } } if ($action == 'update' && $user->rights->asset->write) { $object->fetch($rowid); $object->oldcopy = clone $object; $object->label = trim($label); $object->accountancy_code_asset = trim($accountancy_code_asset); $object->accountancy_code_depreciation_asset = trim($accountancy_code_depreciation_asset); $object->accountancy_code_depreciation_expense = trim($accountancy_code_depreciation_expense); $object->note = trim($comment); // Fill array 'array_options' with data from add form $ret = $extrafields->setOptionalsFromPost($extralabels,$object); if ($ret < 0) $error++; $ret=$object->update($user); if ($ret >= 0 && ! count($object->errors)) { setEventMessages($langs->trans("AssetsTypeModified"), null, 'mesgs'); } else { setEventMessages($object->error, $object->errors, 'errors'); } header("Location: ".$_SERVER["PHP_SELF"]."?rowid=".$object->id); exit; } if ($action == 'confirm_delete' && $user->rights->asset->write) { $object->fetch($rowid); $res=$object->delete(); if ($res > 0) { setEventMessages($langs->trans("AssetsTypeDeleted"), null, 'mesgs'); header("Location: ".$_SERVER["PHP_SELF"]); exit; } else { setEventMessages($langs->trans("AssetsTypeCanNotBeDeleted"), null, 'errors'); $action=''; } } /* * View */ $form=new Form($db); $helpurl=''; llxHeader('',$langs->trans("AssetsTypeSetup"),$helpurl); // List of asset type if (! $rowid && $action != 'create' && $action != 'edit') { //dol_fiche_head(''); $sql = "SELECT d.rowid, d.label as label, d.accountancy_code_asset, d.accountancy_code_depreciation_asset, d.accountancy_code_depreciation_expense, d.note"; $sql.= " FROM ".MAIN_DB_PREFIX."asset_type as d"; $sql.= " WHERE d.entity IN (".getEntity('asset_type').")"; $result = $db->query($sql); if ($result) { $num = $db->num_rows($result); $nbtotalofrecords = $num; $i = 0; $param = ''; print '
'; if ($optioncss != '') print ''; print ''; print ''; print ''; print ''; print ''; print ''; print_barre_liste($langs->trans("AssetsTypes"), $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, '', $num, $nbtotalofrecords, 'title_generic.png', 0, '', '', $limit); $moreforfilter = ''; print '
'; print ''."\n"; print ''; print ''; print ''; print ''; print ''; print ''; print ''; print "\n"; $assettype = new AssetType($db); while ($i < $num) { $objp = $db->fetch_object($result); $assettype->id = $objp->rowid; $assettype->ref = $objp->rowid; $assettype->label = $objp->rowid; print ''; print ''; print ''; print ''; print ''; print ''; if ($user->rights->asset->write) print ''; else print ''; print ""; $i++; } print "
'.$langs->trans("Ref").''.$langs->trans("Label").''.$langs->trans("AccountancyCodeAsset").''.$langs->trans("AccountancyCodeDepreciationAsset").''.$langs->trans("AccountancyCodeDepreciationExpense").' 
'; print $assettype->getNomUrl(1); //'.img_object($langs->trans("ShowType"),'group').' '.$objp->rowid.' print ''.dol_escape_htmltag($objp->label).''; if (! empty($conf->accounting->enabled)) { $accountingaccount = new AccountingAccount($db); $accountingaccount->fetch('',$object->accountancy_code_asset,1); print $accountingaccount->getNomUrl(0,1,1,'',1); } else { print $object->accountancy_code_asset; } print ''; if (! empty($conf->accounting->enabled)) { $accountingaccount2 = new AccountingAccount($db); $accountingaccount2->fetch('',$object->accountancy_code_depreciation_asset,1); print $accountingaccount2->getNomUrl(0,1,1,'',1); } else { print $object->accountancy_code_depreciation_asset; } print ''; if (! empty($conf->accounting->enabled)) { $accountingaccount3 = new AccountingAccount($db); $accountingaccount3->fetch('',$object->accountancy_code_depreciation_expense,1); print $accountingaccount3->getNomUrl(0,1,1,'',1); } else { print $object->accountancy_code_depreciation_expense; } print 'rowid.'">'.img_edit().' 
"; print '
'; print '
'; } else { dol_print_error($db); } } /* ************************************************************************** */ /* */ /* Creation mode */ /* */ /* ************************************************************************** */ if ($action == 'create') { $object = new AssetType($db); if (! empty($conf->accounting->enabled)) $formaccounting = new FormAccounting($db); print load_fiche_titre($langs->trans("NewAssetType")); print '
'; print ''; print ''; dol_fiche_head(''); print ''; print ''; print ''; if (! empty($conf->accounting->enabled)) { // Accountancy_code_asset print ''; print ''; // Accountancy_code_depreciation_expense print ''; print ''; // Accountancy_code_depreciation_expense print ''; print ''; } else // For external software { // Accountancy_code_asset print ''; print ''; // Accountancy_code_depreciation_asset print ''; print ''; // Accountancy_code_depreciation_expense print ''; print ''; } print ''; // Other attributes $parameters=array(); $reshook=$hookmanager->executeHooks('formObjectOptions',$parameters,$act,$action); // Note that $action and $object may have been modified by hook print $hookmanager->resPrint; if (empty($reshook)) { print $object->showOptionals($extrafields,'edit'); } print ''; print "
'.$langs->trans("Label").'
'.$langs->trans("AccountancyCodeAsset").''; print $formaccounting->select_account($object->accountancy_code_asset, 'accountancy_code_asset', 1, '', 1, 1); print '
'.$langs->trans("AccountancyCodeDepreciationAsset").''; print $formaccounting->select_account($object->accountancy_code_depreciation_asset, 'accountancy_code_depreciation_asset', 1, '', 1, 1); print '
'.$langs->trans("AccountancyCodeDepreciationExpense").''; print $formaccounting->select_account($object->accountancy_code_depreciation_expense, 'accountancy_code_depreciation_expense', 1, '', 1, 1); print '
'.$langs->trans("AccountancyCodeAsset").''; print '
'.$langs->trans("AccountancyCodeDepreciationAsset").''; print '
'.$langs->trans("AccountancyCodeDepreciationExpense").''; print '
'.$langs->trans("Description").''; print '
\n"; dol_fiche_end(); print '
'; print ''; print '     '; print ''; print '
'; print "
\n"; } /* ************************************************************************** */ /* */ /* View mode */ /* */ /* ************************************************************************** */ if ($rowid > 0) { if ($action != 'edit') { $object = new AssetType($db); $object->fetch($rowid); $object->fetch_optionals(); /* * Confirmation suppression */ if ($action == 'delete') { print $form->formconfirm($_SERVER['PHP_SELF']."?rowid=".$object->id,$langs->trans("DeleteAMemberType"),$langs->trans("ConfirmDeleteMemberType",$object->label),"confirm_delete", '',0,1); } $head = asset_type_prepare_head($object); dol_fiche_head($head, 'card', $langs->trans("AssetType"), -1, 'setup'); $linkback = ''.$langs->trans("BackToList").''; dol_banner_tab($object, 'rowid', $linkback); print '
'; print '
'; print ''; print ''; if (! empty($conf->accounting->enabled)) { $accountingaccount = new AccountingAccount($db); $accountingaccount->fetch('',$object->accountancy_code_asset,1); print $accountingaccount->getNomUrl(0,1,1,'',1); } else { print $object->accountancy_code_asset; } print ''; print ''; print ''; print '"; // Other attributes include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_view.tpl.php'; print '
'; if (! empty($conf->accounting->enabled)) { $accountingaccount2 = new AccountingAccount($db); $accountingaccount2->fetch('',$object->accountancy_code_depreciation_asset,1); print $accountingaccount2->getNomUrl(0,1,1,'',1); } else { print $object->accountancy_code_depreciation_asset; } print ''; if (! empty($conf->accounting->enabled)) { $accountingaccount3 = new AccountingAccount($db); $accountingaccount3->fetch('',$object->accountancy_code_depreciation_expense,1); print $accountingaccount3->getNomUrl(0,1,1,'',1); } else { print $object->accountancy_code_depreciation_expense; } print '
'.$langs->trans("Description").''; print nl2br($object->note)."
'; print '
'; dol_fiche_end(); /* * Buttons */ print '
'; // Edit if ($user->rights->asset->write) { print ''; } // Add print ''; // Delete if ($user->rights->asset->write) { print ''; } print "
"; // Show list of assets (nearly same code than in page list.php) $assettypestatic=new AssetType($db); $now=dol_now(); $sql = "SELECT a.rowid, d.login, d.firstname, d.lastname, d.societe, "; $sql.= " d.datefin,"; $sql.= " a.fk_asset_type as type_id,"; $sql.= " t.label as type"; $sql.= " FROM ".MAIN_DB_PREFIX."asset as a, ".MAIN_DB_PREFIX."asset_type as t"; $sql.= " WHERE a.fk_asset_type = t.rowid"; $sql.= " AND a.entity IN (".getEntity('asset').")"; $sql.= " AND t.rowid = ".$object->id; if ($sall) { $sql.=natural_search(array("f.firstname","d.lastname","d.societe","d.email","d.login","d.address","d.town","d.note_public","d.note_private"), $sall); } if ($status != '') { $sql.= natural_search('d.statut', $status, 2); } if ($action == 'search') { if (GETPOST('search','alpha')) { $sql.= natural_search(array("d.firstname","d.lastname"), GETPOST('search','alpha')); } } if (! empty($search_lastname)) { $sql.= natural_search(array("d.firstname","d.lastname"), $search_lastname); } if (! empty($search_login)) { $sql.= natural_search("d.login", $search_login); } if (! empty($search_email)) { $sql.= natural_search("d.email", $search_email); } if ($filter == 'uptodate') { $sql.=" AND datefin >= '".$db->idate($now)."'"; } if ($filter == 'outofdate') { $sql.=" AND datefin < '".$db->idate($now)."'"; } $sql.= " ".$db->order($sortfield,$sortorder); // Count total nb of records $nbtotalofrecords = ''; if (empty($conf->global->MAIN_DISABLE_FULL_SCANLIST)) { $resql = $db->query($sql); if ($resql) $nbtotalofrecords = $db->num_rows($result); else dol_print_error($db); if (($page * $limit) > $nbtotalofrecords) // if total resultset is smaller then paging size (filtering), goto and load page 0 { $page = 0; $offset = 0; } } $sql.= " ".$db->plimit($conf->liste_limit+1, $offset); $resql = $db->query($sql); if ($resql) { $num = $db->num_rows($resql); $i = 0; $titre=$langs->trans("AssetsList"); if ($status != '') { if ($status == '-1,1') { $titre=$langs->trans("MembersListQualified"); } else if ($status == '-1') { $titre=$langs->trans("MembersListToValid"); } else if ($status == '1' && ! $filter) { $titre=$langs->trans("MembersListValid"); } else if ($status == '1' && $filter=='uptodate') { $titre=$langs->trans("MembersListUpToDate"); } else if ($status == '1' && $filter=='outofdate') { $titre=$langs->trans("MembersListNotUpToDate"); } else if ($status == '0') { $titre=$langs->trans("MembersListResiliated"); } } elseif ($action == 'search') { $titre=$langs->trans("MembersListQualified"); } if ($type > 0) { $assettype=new AssetType($db); $result=$assettype->fetch($type); $titre.=" (".$assettype->label.")"; } $param="&rowid=".$object->id; if (! empty($status)) $param.="&status=".$status; if (! empty($search_lastname)) $param.="&search_lastname=".$search_lastname; if (! empty($search_firstname)) $param.="&search_firstname=".$search_firstname; if (! empty($search_login)) $param.="&search_login=".$search_login; if (! empty($search_email)) $param.="&search_email=".$search_email; if (! empty($filter)) $param.="&filter=".$filter; if ($sall) { print $langs->trans("Filter")." (".$langs->trans("Lastname").", ".$langs->trans("Firstname").", ".$langs->trans("EMail").", ".$langs->trans("Address")." ".$langs->trans("or")." ".$langs->trans("Town")."): ".$sall; } print '
'; print ''; print '
'; print_barre_liste('',$page,$_SERVER["PHP_SELF"],$param,$sortfield,$sortorder,'',$num,$nbtotalofrecords); $moreforfilter = ''; print '
'; print ''."\n"; // Lignes des champs de filtre print ''; print ''; print ''; print ''; print ''; print ''; print ''; print "\n"; print ''; print_liste_field_titre( $langs->trans("Name")." / ".$langs->trans("Company"),$_SERVER["PHP_SELF"],"d.lastname",$param,"","",$sortfield,$sortorder); print_liste_field_titre("Login",$_SERVER["PHP_SELF"],"d.login",$param,"","",$sortfield,$sortorder); print_liste_field_titre("Nature",$_SERVER["PHP_SELF"],"d.morphy",$param,"","",$sortfield,$sortorder); print_liste_field_titre("EMail",$_SERVER["PHP_SELF"],"d.email",$param,"","",$sortfield,$sortorder); print_liste_field_titre("Status",$_SERVER["PHP_SELF"],"d.statut,d.datefin",$param,"","",$sortfield,$sortorder); print_liste_field_titre("EndSubscription",$_SERVER["PHP_SELF"],"d.datefin",$param,"",'align="center"',$sortfield,$sortorder); print_liste_field_titre("Action",$_SERVER["PHP_SELF"],"",$param,"",'width="60" align="center"',$sortfield,$sortorder); print "\n"; while ($i < $num && $i < $conf->liste_limit) { $objp = $db->fetch_object($resql); $datefin=$db->jdate($objp->datefin); $adh=new Asset($db); $adh->lastname=$objp->lastname; $adh->firstname=$objp->firstname; // Lastname print ''; if ($objp->societe != '') { print ''."\n"; } else { print ''."\n"; } // Login print "\n"; // Type /*print ''; */ // Moral/Physique print "\n"; // EMail print "\n"; // Statut print '"; // Actions print '"; print "\n"; $i++; } print "
'; print ''; print ' '; print ' '; print ''; print '  '; print ''; print '
'.img_object($langs->trans("ShowMember"),"user").' '.$adh->getFullName($langs,0,-1,20).' / '.dol_trunc($objp->societe,12).''.img_object($langs->trans("ShowMember"),"user").' '.$adh->getFullName($langs,0,-1,32).'".$objp->login."'; $assettypestatic->id=$objp->type_id; $assettypestatic->label=$objp->type; print $assettypestatic->getNomUrl(1,12); print '".$adh->getmorphylib($objp->morphy)."".dol_print_email($objp->email,0,0,1)."'; print $adh->LibStatut($objp->statut,$objp->subscription,$datefin,2); print "'; if ($user->rights->asset->creer) { print ''.img_edit().''; } print ' '; if ($user->rights->asset->supprimer) { print ''.img_picto($langs->trans("Resiliate"),'disable.png').''; } print "
\n"; print '
'; print '
'; if ($num > $conf->liste_limit) { print_barre_liste('',$page,$_SERVER["PHP_SELF"],$param,$sortfield,$sortorder,'',$num,$nbtotalofrecords,''); } } else { dol_print_error($db); } } /* ************************************************************************** */ /* */ /* Edition mode */ /* */ /* ************************************************************************** */ if ($action == 'edit') { $object = new AssetType($db); $object->fetch($rowid); $object->fetch_optionals(); if (! empty($conf->accounting->enabled)) $formaccounting = new FormAccounting($db); $head = asset_type_prepare_head($object); print '
'; print ''; print ''; print ''; dol_fiche_head($head, 'card', $langs->trans("AssetsType"), -1, 'setup'); print ''; print ''; print ''; if (! empty($conf->accounting->enabled)) { // Accountancy_code_asset print ''; print ''; // Accountancy_code_depreciation_expense print ''; print ''; // Accountancy_code_depreciation_expense print ''; print ''; } else // For external software { // Accountancy_code_asset print ''; print ''; // Accountancy_code_depreciation_asset print ''; print ''; // Accountancy_code_depreciation_expense print ''; print ''; } print ''; // Other attributes $parameters=array(); $reshook=$hookmanager->executeHooks('formObjectOptions',$parameters,$act,$action); // Note that $action and $object may have been modified by hook print $hookmanager->resPrint; if (empty($reshook)) { print $object->showOptionals($extrafields,'edit'); } print '
'.$langs->trans("Ref").''.$object->id.'
'.$langs->trans("Label").'
'.$langs->trans("AccountancyCodeAsset").''; print $formaccounting->select_account($object->accountancy_code_asset, 'accountancy_code_asset', 1, '', 1, 1); print '
'.$langs->trans("AccountancyCodeDepreciationAsset").''; print $formaccounting->select_account($object->accountancy_code_depreciation_asset, 'accountancy_code_depreciation_asset', 1, '', 1, 1); print '
'.$langs->trans("AccountancyCodeDepreciationExpense").''; print $formaccounting->select_account($object->accountancy_code_depreciation_expense, 'accountancy_code_depreciation_expense', 1, '', 1, 1); print '
'.$langs->trans("AccountancyCodeAsset").''; print '
'.$langs->trans("AccountancyCodeDepreciationAsset").''; print '
'.$langs->trans("AccountancyCodeDepreciationExpense").''; print '
'.$langs->trans("Description").''; print '
'; // Extra field if (empty($reshook)) { print '

'; foreach($extrafields->attribute_label as $key=>$label) { if (isset($_POST["options_" . $key])) { if (is_array($_POST["options_" . $key])) { // $_POST["options"] is an array but following code expects a comma separated string $value = implode(",", $_POST["options_" . $key]); } else { $value = $_POST["options_" . $key]; } } else { $value = $adht->array_options["options_" . $key]; } print '\n"; } print '
'.$label.''; print $extrafields->showInputField($key,$value); print "


'; } dol_fiche_end(); print '
'; print ''; print '     '; print ''; print '
'; print "
"; } } // End of page llxFooter(); $db->close();