27require
'../main.inc.php';
28require_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
29require_once DOL_DOCUMENT_ROOT.
'/contact/class/contact.class.php';
32$langs->loadLangs(array(
'orders',
'companies'));
34$action =
GETPOST(
'action',
'alpha');
35$cancel =
GETPOST(
'cancel',
'alpha');
40if ($user->socid > 0) {
41 $_socid = $user->socid;
45$socid =
GETPOST(
"socid",
'int');
46if ($user->socid > 0) {
50$result =
restrictedArea($user,
'societe', $id,
'&societe',
'',
'fk_soc',
'rowid', 0);
57if ($action ==
'setpricelevel' && $user->hasRight(
'societe',
'creer')) {
60 $soc->setPriceLevel(
GETPOST(
"price_level"), $user);
62 header(
"Location: multiprix.php?id=".$id);
73$userstatic =
new User($db);
78 $objsoc->id = $_socid;
79 $objsoc->fetch($_socid);
85 if ($objsoc->client == 1) {
86 $tabchoice =
'customer';
88 if ($objsoc->client == 2) {
89 $tabchoice =
'prospect';
92 print
'<form method="POST" action="multiprix.php?id='.$objsoc->id.
'">';
93 print
'<input type="hidden" name="token" value="'.newToken().
'">';
94 print
'<input type="hidden" name="action" value="setpricelevel">';
96 print
dol_get_fiche_head($head, $tabchoice, $langs->trans(
"ThirdParty"), 0,
'company');
98 print
'<table class="border centpercent tableforfield">';
100 print
'<tr><td class="titlefieldcreate">';
101 print $langs->trans(
"PriceLevel").
'</td><td>'.$objsoc->price_level.
"</td></tr>";
104 print $langs->trans(
"NewValue").
'</td><td>';
105 print
'<select name="price_level" class="flat">';
106 for ($i = 1; $i <= $conf->global->PRODUIT_MULTIPRICES_LIMIT; $i++) {
107 print
'<option value="'.$i.
'"';
108 if ($i == $objsoc->price_level) {
112 $keyforlabel =
'PRODUIT_MULTIPRICES_LABEL'.$i;
113 if (!empty($conf->global->$keyforlabel)) {
114 print
' - '.$langs->trans($conf->global->$keyforlabel);
125 print $form->buttonsSaveCancel(
"Save",
'');
136 $sql =
"SELECT rc.rowid,rc.price_level, rc.datec as dc, u.rowid as uid, u.login";
137 $sql .=
" FROM ".MAIN_DB_PREFIX.
"societe_prices as rc, ".MAIN_DB_PREFIX.
"user as u";
138 $sql .=
" WHERE rc.fk_soc = ".((int) $objsoc->id);
139 $sql .=
" AND u.rowid = rc.fk_user_author";
140 $sql .=
" ORDER BY rc.datec DESC";
142 $resql = $db->query($sql);
144 print
'<table class="noborder centpercent">';
145 print
'<tr class="liste_titre">';
146 print
'<td>'.$langs->trans(
"Date").
'</td>';
147 print
'<td>'.$langs->trans(
"PriceLevel").
'</td>';
148 print
'<td class="right">'.$langs->trans(
"User").
'</td>';
151 $num = $db->num_rows($resql);
154 $obj = $db->fetch_object($resql);
156 print
'<tr class="oddeven">';
157 print
'<td>'.dol_print_date($db->jdate($obj->dc),
"dayhour").
'</td>';
158 print
'<td>'.$obj->price_level.
' </td>';
159 $userstatic->id = $obj->uid;
160 $userstatic->lastname = $obj->login;
161 print
'<td class="right">'.$userstatic->getNomUrl(1).
'</td>';
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Class to manage third parties objects (customers, suppliers, prospects...)
Class to manage Dolibarr users.
societe_prepare_head(Societe $object)
Return array of tabs to used on pages for third parties cards.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
dol_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_get_fiche_end($notab=0)
Return tab footer of a card.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.