dolibarr/htdocs/comm/multiprix.php

182 lines
4.5 KiB
PHP
Raw Normal View History

2012-08-22 23:27:53 +02:00
<?php
2006-02-03 17:52:19 +01:00
/* Copyright (C) 2001-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
2012-04-17 11:40:08 +02:00
* Copyright (C) 2004-2012 Laurent Destailleur <eldy@users.sourceforge.net>
2007-05-05 00:47:11 +02:00
* Copyright (C) 2006 Andre Cianfarani <acianfa@free.fr>
2006-02-03 17:52:19 +01:00
*
* 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
2006-02-03 17:52:19 +01:00
* (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
2011-08-03 02:45:22 +02:00
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2006-02-03 17:52:19 +01:00
*/
/**
* \file htdocs/comm/multiprix.php
* \ingroup societe
* \brief Onglet choix du niveau de prix
*/
require '../main.inc.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
2006-02-03 17:52:19 +01:00
2018-05-26 19:03:41 +02:00
// Load translation files required by the page
$langs->loadLangs(array('orders', 'companies'));
2006-02-03 17:52:19 +01:00
$id = GETPOST('id','int');
$_socid = GETPOST("id",'int');
// Security check
if ($user->societe_id > 0)
{
$_socid = $user->societe_id;
}
/*
* Actions
*/
2006-02-03 17:52:19 +01:00
if ($_POST["action"] == 'setpricelevel')
{
$soc = New Societe($db);
$soc->fetch($id);
$soc->set_price_level($_POST["price_level"],$user);
2006-02-03 17:52:19 +01:00
header("Location: multiprix.php?id=".$id);
exit;
}
2006-02-03 17:52:19 +01:00
/*
* View
*/
2006-02-03 17:52:19 +01:00
llxHeader();
2006-02-03 17:52:19 +01:00
$userstatic=new User($db);
2006-02-03 17:52:19 +01:00
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 '<div class="error">'.$errmesg.'</div><br>';
}
/*
* Affichage onglets
*/
$head = societe_prepare_head($objsoc);
$tabchoice='';
if ($objsoc->client == 1) $tabchoice='customer';
if ($objsoc->client == 2) $tabchoice='prospect';
print '<form method="POST" action="multiprix.php?id='.$objsoc->id.'">';
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
print '<input type="hidden" name="action" value="setpricelevel">';
2016-02-19 03:59:22 +01:00
dol_fiche_head($head, $tabchoice, $langs->trans("ThirdParty"), 0, 'company');
print '<table width="100%" border="0">';
2017-01-22 12:13:32 +01:00
print '<tr><td class="tdtop">';
print '<table class="border" width="100%">';
2006-02-03 17:52:19 +01:00
print '<tr><td colspan="2" width="25%">';
print $langs->trans("PriceLevel").'</td><td colspan="2">'.$objsoc->price_level."</td></tr>";
2006-02-03 17:52:19 +01:00
print '<tr><td colspan="2">';
print $langs->trans("NewValue").'</td><td colspan="2">';
print '<select name="price_level" class="flat">';
2006-02-03 17:52:19 +01:00
for($i=1;$i<=$conf->global->PRODUIT_MULTIPRICES_LIMIT;$i++)
{
print '<option value="'.$i.'"' ;
if($i == $objsoc->price_level)
print 'selected';
2015-12-16 18:18:02 +01:00
print '>'.$i;
$keyforlabel='PRODUIT_MULTIPRICES_LABEL'.$i;
if (! empty($conf->global->$keyforlabel)) print ' - '.$langs->trans($conf->global->$keyforlabel);
print '</option>';
2006-02-03 17:52:19 +01:00
}
print '</select>';
print '</td></tr>';
2006-02-03 17:52:19 +01:00
print "</table>";
print "</td>\n";
print "</td></tr>";
2012-04-17 11:40:08 +02:00
print "</table>";
2016-02-19 03:59:22 +01:00
dol_fiche_end();
2016-02-19 03:59:22 +01:00
print '<div align="center"><input type="submit" class="button" value="'.$langs->trans("Save").'"></div>';
2012-04-17 11:40:08 +02:00
print "</form>";
2016-02-19 03:59:22 +01:00
print '<br><br>';
/*
2012-04-17 11:40:08 +02:00
* List historic of multiprices
*/
2010-05-08 21:49:29 +02:00
$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 '<table class="noborder" width="100%">';
$tag = !$tag;
print '<tr class="liste_titre">';
print '<td>'.$langs->trans("Date").'</td>';
print '<td>'.$langs->trans("PriceLevel").'</td>';
print '<td align="right">'.$langs->trans("User").'</td>';
print '</tr>';
$i = 0 ;
$num = $db->num_rows($resql);
while ($i < $num )
{
$obj = $db->fetch_object($resql);
$tag = !$tag;
print '<tr '.$bc[$tag].'>';
2010-05-08 21:49:29 +02:00
print '<td>'.dol_print_date($db->jdate($obj->dc),"dayhour").'</td>';
print '<td>'.$obj->price_level.' </td>';
$userstatic->id=$obj->uid;
2012-01-29 23:24:47 +01:00
$userstatic->lastname=$obj->login;
print '<td align="right">'.$userstatic->getNomUrl(1).'</td>';
print '</tr>';
$i++;
}
$db->free($resql);
print "</table>";
}
else
{
dol_print_error($db);
}
2006-02-03 17:52:19 +01:00
}
llxFooter();
$db->close();