forked from Wavyzz/dolibarr
180 lines
4.6 KiB
PHP
180 lines
4.6 KiB
PHP
<?php
|
||
/* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||
* Copyright (C) 2004-2007 Laurent Destailleur <eldy@users.sourceforge.net>
|
||
* Copyright (C) 2005-2009 Regis Houssin <regis@dolibarr.fr>
|
||
*
|
||
* 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, write to the Free Software
|
||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||
*/
|
||
|
||
/**
|
||
\file htdocs/commande/note.php
|
||
\ingroup commande
|
||
\brief Fiche de notes sur une commande
|
||
\version $Id$
|
||
*/
|
||
|
||
require("../main.inc.php");
|
||
require_once(DOL_DOCUMENT_ROOT.'/lib/order.lib.php');
|
||
require_once(DOL_DOCUMENT_ROOT ."/commande/commande.class.php");
|
||
|
||
$socid=isset($_GET["socid"])?$_GET["socid"]:isset($_POST["socid"])?$_POST["socid"]:"";
|
||
|
||
if (!$user->rights->commande->lire) accessforbidden();
|
||
|
||
$langs->load("companies");
|
||
$langs->load("bills");
|
||
$langs->load("orders");
|
||
|
||
// Security check
|
||
$socid=0;
|
||
$comid = isset($_GET["id"])?$_GET["id"]:'';
|
||
if ($user->societe_id) $socid=$user->societe_id;
|
||
$result=restrictedArea($user,'commande',$comid,'');
|
||
|
||
|
||
$id = $_GET['id'];
|
||
$ref= $_GET['ref'];
|
||
$commande = new Commande($db);
|
||
if (! $commande->fetch($_GET['id'],$_GET['ref']) > 0)
|
||
{
|
||
dol_print_error($db);
|
||
}
|
||
|
||
|
||
/*
|
||
* Actions
|
||
*/
|
||
|
||
if ($_POST["action"] == 'update' && $user->rights->commande->creer)
|
||
{
|
||
$db->begin();
|
||
|
||
$resPrivateNote=$commande->update_note($_POST["note"]);
|
||
$resPublicNote=$commande->update_note_public($_POST["note_public"]);
|
||
|
||
if ($resPrivateNote < 0 || $resPublicNote < 0)
|
||
{
|
||
$mesg='<div class="error">'.$commande->error.'</div>';
|
||
$db->rollback();
|
||
}
|
||
else
|
||
{
|
||
$db->commit();
|
||
}
|
||
}
|
||
|
||
|
||
|
||
/*
|
||
* View
|
||
*/
|
||
|
||
llxHeader('',$langs->trans('Order'),'EN:Customers_Orders|FR:Commandes_Clients|ES:Pedidos de clientes');
|
||
|
||
$html = new Form($db);
|
||
|
||
if ($id > 0 || ! empty($ref))
|
||
{
|
||
$soc = new Societe($db, $commande->socid);
|
||
$soc->fetch($commande->socid);
|
||
|
||
$head = commande_prepare_head($commande);
|
||
|
||
dol_fiche_head($head, 'note', $langs->trans("CustomerOrder"), 0, 'order');
|
||
|
||
print '<table class="border" width="100%">';
|
||
|
||
// Ref
|
||
print '<tr><td width="18%">'.$langs->trans("Ref").'</td><td colspan="3">';
|
||
print $html->showrefnav($commande,'ref','',1,'ref','ref');
|
||
print "</td></tr>";
|
||
|
||
// Ref commande client
|
||
print '<tr><td>';
|
||
print '<table class="nobordernopadding" width="100%"><tr><td nowrap>';
|
||
print $langs->trans('RefCustomer').'</td><td align="left">';
|
||
print '</td>';
|
||
print '</tr></table>';
|
||
print '</td><td colspan="3">';
|
||
print $commande->ref_client;
|
||
print '</td>';
|
||
print '</tr>';
|
||
|
||
// Customer
|
||
print "<tr><td>".$langs->trans("Company")."</td>";
|
||
print '<td colspan="3">'.$soc->getNomUrl(1).'</td></tr>';
|
||
|
||
// Note publique
|
||
print '<tr><td valign="top">'.$langs->trans("NotePublic").' :</td>';
|
||
print '<td valign="top" colspan="3">';
|
||
if ($_GET["action"] == 'edit')
|
||
{
|
||
print '<form method="post" action="'.$_SERVER["PHP_SELF"].'?id='.$commande->id.'">';
|
||
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
||
print '<input type="hidden" name="action" value="update">';
|
||
print '<textarea name="note_public" cols="80" rows="8">'.$commande->note_public."</textarea><br>";
|
||
}
|
||
else
|
||
{
|
||
print ($commande->note_public?nl2br($commande->note_public):" ");
|
||
}
|
||
print "</td></tr>";
|
||
|
||
// Note priv<69>e
|
||
if (! $user->societe_id)
|
||
{
|
||
print '<tr><td valign="top">'.$langs->trans("NotePrivate").' :</td>';
|
||
print '<td valign="top" colspan="3">';
|
||
if ($_GET["action"] == 'edit')
|
||
{
|
||
print '<textarea name="note" cols="80" rows="8">'.$commande->note."</textarea><br>";
|
||
}
|
||
else
|
||
{
|
||
print ($commande->note?nl2br($commande->note):" ");
|
||
}
|
||
print "</td></tr>";
|
||
}
|
||
print "</table>";
|
||
|
||
if ($_GET["action"] == 'edit')
|
||
{
|
||
print '<br><center>';
|
||
print ' <input type="submit" class="button" value="'.$langs->trans('Save').'">';
|
||
print '</center>';
|
||
print '</form>';
|
||
}
|
||
|
||
print '</div>';
|
||
|
||
/*
|
||
* Actions
|
||
*/
|
||
|
||
print '<div class="tabsAction">';
|
||
|
||
if ($user->rights->commande->creer && $_GET["action"] <> 'edit')
|
||
{
|
||
print "<a class=\"butAction\" href=\"note.php?id=".$commande->id."&action=edit\">".$langs->trans('Modify')."</a>";
|
||
}
|
||
|
||
print "</div>";
|
||
}
|
||
|
||
$db->close();
|
||
|
||
llxFooter('$Date$ - $Revision$');
|
||
?>
|