* Copyright (C) 2004-2010 Laurent Destailleur * Copyright (C) 2005 Simon Tosser * Copyright (C) 2005-2006 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 2 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/product/stock/user.php * \ingroup stock * \brief Page to link dolibarr users with warehouses * \deprecated This page is never called. Feature will never be developped. */ require("../../main.inc.php"); require_once(DOL_DOCUMENT_ROOT."/product/stock/class/entrepot.class.php"); require_once(DOL_DOCUMENT_ROOT."/core/lib/stock.lib.php"); $langs->load("products"); $langs->load("stocks"); $langs->load("companies"); $sortfield = isset($_GET["sortfield"])?$_GET["sortfield"]:$_POST["sortfield"]; $sortorder = isset($_GET["sortorder"])?$_GET["sortorder"]:$_POST["sortorder"]; if (! $sortfield) $sortfield="p.ref"; if (! $sortorder) $sortorder="DESC"; $mesg = ''; /* * Actions */ /* * View */ $help_url='EN:Module_Stocks_En|FR:Module_Stock|ES:Módulo_Stocks'; llxHeader("",$langs->trans("WarehouseCard"),$help_url); $form=new Form($db); if ($_GET["id"]) { if ($mesg) print $mesg; $entrepot = new Entrepot($db); $result = $entrepot->fetch($_GET["id"]); if ($result < 0) { dol_print_error($db); } /* * Affichage fiche */ if ($_GET["action"] <> 'edit' && $_GET["action"] <> 're-edit') { $head = stock_prepare_head($entrepot); dol_fiche_head($head, 'user', $langs->trans("Warehouse"), 0, 'stock'); print ''; // Ref print ''; print ''; // Description print ''; print ''; print ''; print ''; print ''; // Statut print ''; print "
'.$langs->trans("Ref").''.$entrepot->libelle.'
'.$langs->trans("LocationSummary").''.$entrepot->lieu.'
'.$langs->trans("Description").''.nl2br($entrepot->description).'
'.$langs->trans('Address').''; print $entrepot->address; print '
'.$langs->trans('Zip').''.$entrepot->cp.''.$langs->trans('Town').''.$entrepot->ville.'
'.$langs->trans('Country').''; print $entrepot->pays; print '
'.$langs->trans("Status").''.$entrepot->getLibStatut(4).'
"; print ''; /* ************************************************************************** */ /* */ /* Barre d'action */ /* */ /* ************************************************************************** */ print "
\n"; print "
"; /* ************************************************************************** */ /* */ /* Affichage des utilisateurs de l'entrepot */ /* */ /* ************************************************************************** */ print '
'; print ''; print ""; print_liste_field_titre($langs->trans("User"),"", "p.ref","&id=".$_GET['id'],"",'align="left"',$sortfield,$sortorder); print_liste_field_titre($langs->trans("Label"),"", "p.label","&id=".$_GET['id'],"",'align="center"',$sortfield,$sortorder); print_liste_field_titre($langs->trans("Units"),"", "ps.reel","&id=".$_GET['id'],"",'align="center"',$sortfield,$sortorder); print ""; $sql = "SELECT u.rowid as rowid, u.name, u.firstname, ue.send, ue.consult "; $sql .= " FROM ".MAIN_DB_PREFIX."user_entrepot as ue, ".MAIN_DB_PREFIX."user as u "; $sql .= " WHERE ue.fk_user = u.rowid "; $sql .= " AND ue.fk_entrepot = ".$entrepot->id; $resql = $db->query($sql); if ($resql) { $num = $db->num_rows($resql); $i = 0; $var=True; while ($i < $num) { $objp = $db->fetch_object($resql); $var=!$var; print ""; print ""; print ''; print ''; print ""; $i++; } $db->free($resql); } else { dol_print_error($db); } print "
rowid\">"; print img_object($langs->trans("ShowUser"),"user").' '.$objp->firstname. ' '.$objp->name; print "'.$objp->consult.''.$objp->send.'
\n"; } } $db->close(); llxFooter(); ?>