* Copyright (C) 2003 Jean-Louis Bergamo * Copyright (C) 2004-2017 Laurent Destailleur * Copyright (C) 2005-2012 Regis Houssin * * 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/mrp/index.php * \ingroup bom, mrp * \brief Home page for BOM and MRP modules */ require '../main.inc.php'; require_once DOL_DOCUMENT_ROOT.'/bom/class/bom.class.php'; // Load translation files required by the page $langs->loadLangs(array("companies","mrp")); // Security check $result=restrictedArea($user, 'bom|mrp'); /* * View */ $staticbom = new BOM($db); llxHeader('', $langs->trans("MRP"), ''); print load_fiche_titre($langs->trans("MRPArea")); print '
'; /* * Statistics */ if ($conf->use_javascript_ajax) { print '
'; print ''; print ''; print '
'.$langs->trans("Statistics").'
'; print '
'; print '
'; } print '
'; print '
'; /* * Last modified BOM */ $max=5; $sql = "SELECT a.rowid, a.status, a.ref, a.tms as datem"; $sql.= " FROM ".MAIN_DB_PREFIX."bom_bom as a"; $sql.= " WHERE a.entity IN (".getEntity('bom').")"; $sql.= $db->order("a.tms", "DESC"); $sql.= $db->plimit($max, 0); $resql=$db->query($sql); if ($resql) { print '
'; print ''; print ''; print ''; $num = $db->num_rows($resql); if ($num) { $i = 0; while ($i < $num) { $obj = $db->fetch_object($resql); $staticbom->id=$obj->rowid; $staticbom->ref=$obj->ref; $staticbom->date_modification=$obj->datem; print ''; print ''; print ''; print ''; print ''; $i++; } } print "
'.$langs->trans("LatestBOMModified", $max).'
'.$staticbom->getNomUrl(1, 32).''.dol_print_date($db->jdate($obj->datem), 'dayhour').''.$staticbom->getLibStatut(5).'
"; print "
"; } else { dol_print_error($db); } print '
'; // End of page llxFooter(); $db->close();