* Copyright (C) 2004-2009 Laurent Destailleur * Copyright (C) 2006 Andre Cianfarani * * 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/comm/multiprix.php * \ingroup societe * \brief Onglet choix du niveau de prix * \version $Id: multiprix.php,v 1.21 2011/08/03 00:46:27 eldy Exp $ */ require("../main.inc.php"); require_once(DOL_DOCUMENT_ROOT."/lib/company.lib.php"); require_once(DOL_DOCUMENT_ROOT."/contact/class/contact.class.php"); $langs->load("orders"); $langs->load("companies"); $_socid = $_GET["id"]; // Security check if ($user->societe_id > 0) { $_socid = $user->societe_id; } /* * Actions */ if ($_POST["action"] == 'setpricelevel') { $soc = New Societe($db); $soc->fetch($_GET["id"]); $soc->set_price_level($_POST["price_level"],$user); Header("Location: multiprix.php?id=".$_GET["id"]); exit; } /* * View */ llxHeader(); $userstatic=new User($db); if ($_socid > 0) { // On recupere les donnees societes par l'objet $objsoc = new Societe($db); $objsoc->id=$_socid; $objsoc->fetch($_socid,$to); if ($errmesg) { print '
'.$errmesg.'

'; } /* * Affichage onglets */ $head = societe_prepare_head($objsoc); $tabchoice=''; if ($objsoc->client == 1) $tabchoice='customer'; if ($objsoc->client == 2) $tabchoice='prospect'; dol_fiche_head($head, $tabchoice, $langs->trans("ThirdParty"), 0, 'company'); print '
'; print ''; print ''; print ''; print '\n"; print ""; print "
'; print ''; print '"; print ''; print ''; print "
'; print $langs->trans("PriceLevel").''.$objsoc->price_level."
'; print $langs->trans("NewValue").''; print ''; print '
"; print ""; print "
\n"; print '
'; /* * Liste de l'historique des remises */ $sql = "SELECT rc.rowid,rc.price_level, rc.datec as dc, u.rowid as uid, u.login"; $sql .= " FROM ".MAIN_DB_PREFIX."societe_prices as rc, ".MAIN_DB_PREFIX."user as u"; $sql .= " WHERE rc.fk_soc =". $objsoc->id; $sql .= " AND u.rowid = rc.fk_user_author"; $sql .= " ORDER BY rc.datec DESC"; $resql=$db->query($sql); if ($resql) { print ''; $tag = !$tag; print ''; print ''; print ''; print ''; print ''; $i = 0 ; $num = $db->num_rows($resql); while ($i < $num ) { $obj = $db->fetch_object($resql); $tag = !$tag; print ''; print ''; print ''; $userstatic->id=$obj->uid; $userstatic->nom=$obj->login; print ''; print ''; $i++; } $db->free($resql); print "
'.$langs->trans("Date").''.$langs->trans("PriceLevel").''.$langs->trans("User").'
'.dol_print_date($db->jdate($obj->dc),"dayhour").''.$obj->price_level.' '.$userstatic->getNomUrl(1).'
"; } else { dol_print_error($db); } } $db->close(); llxFooter('$Date: 2011/08/03 00:46:27 $ - $Revision: 1.21 $'); ?>