mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-17 06:51:23 +01:00
242 lines
7.2 KiB
PHP
242 lines
7.2 KiB
PHP
<?PHP
|
|
/* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
*
|
|
* 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.
|
|
*
|
|
* $Id$
|
|
* $Source$
|
|
*
|
|
*/
|
|
|
|
require("./pre.inc.php");
|
|
require("./contrat.class.php");
|
|
require("../facture.class.php");
|
|
|
|
llxHeader();
|
|
|
|
$mesg = '';
|
|
|
|
/*
|
|
* Sécurité accés client
|
|
*/
|
|
if ($user->societe_id > 0)
|
|
{
|
|
$action = '';
|
|
$socid = $user->societe_id;
|
|
}
|
|
|
|
|
|
if ($action == 'add')
|
|
{
|
|
$contrat = new Contrat($db);
|
|
|
|
$id = $product->create($user);
|
|
$action = '';
|
|
}
|
|
|
|
if ($HTTP_POST_VARS["action"] == 'miseenservice')
|
|
{
|
|
$contrat = new Contrat($db);
|
|
$contrat->id = $id;
|
|
$contrat->fetch($id);
|
|
$contrat->mise_en_service($user,
|
|
mktime($HTTP_POST_VARS["rehour"],
|
|
$HTTP_POST_VARS["remin"],
|
|
0,
|
|
$HTTP_POST_VARS["remonth"],
|
|
$HTTP_POST_VARS["reday"],
|
|
$HTTP_POST_VARS["reyear"]),
|
|
$HTTP_POST_VARS["duration"]
|
|
);
|
|
}
|
|
|
|
if ($action == 'cloture')
|
|
{
|
|
$contrat = new Contrat($db);
|
|
$contrat->id = $id;
|
|
$contrat->cloture($user);
|
|
}
|
|
|
|
if ($action == 'update' && $cancel <> 'Annuler')
|
|
{
|
|
$product = new Product($db);
|
|
|
|
$product->ref = $HTTP_POST_VARS["ref"];
|
|
$product->libelle = $HTTP_POST_VARS["libelle"];
|
|
$product->price = $HTTP_POST_VARS["price"];
|
|
$product->tva_tx = $HTTP_POST_VARS["tva_tx"];
|
|
$product->description = $HTTP_POST_VARS["desc"];
|
|
$product->envente = $HTTP_POST_VARS["statut"];
|
|
$product->duration_value = $HTTP_POST_VARS["duration_value"];
|
|
$product->duration_unit = $HTTP_POST_VARS["duration_unit"];
|
|
|
|
if ( $product->update($id, $user))
|
|
{
|
|
$action = '';
|
|
$mesg = 'Fiche mise à jour';
|
|
}
|
|
else
|
|
{
|
|
$action = 'edit';
|
|
$mesg = 'Fiche non mise à jour !' . "<br>" . $product->mesg_error;
|
|
}
|
|
}
|
|
/*
|
|
*
|
|
*
|
|
*/
|
|
$html = new Form($db);
|
|
|
|
|
|
if ($action == 'create')
|
|
{
|
|
print "<form action=\"$PHP_SELF?type=$type\" method=\"post\">\n";
|
|
print "<input type=\"hidden\" name=\"action\" value=\"add\">\n";
|
|
print '<input type="hidden" name="type" value="'.$type.'">'."\n";
|
|
print '<div class="titre">Nouveau '.$types[$type].'</div><br>'."\n";
|
|
|
|
print '<table class="border" width="100%" cellspacing="0" cellpadding="4">';
|
|
print "<tr>";
|
|
print '<td>Référence</td><td><input name="ref" size="20" value=""></td></tr>';
|
|
print '<td>Libellé</td><td><input name="libelle" size="40" value=""></td></tr>';
|
|
print '<tr><td>Prix de vente</td><TD><input name="price" size="10" value=""></td></tr>';
|
|
print '<tr><td>Taux TVA</td><TD>';
|
|
print $html->select_tva("tva_tx");
|
|
print ' %</td></tr>';
|
|
print "<tr><td valign=\"top\">Description</td><td>";
|
|
print '<textarea name="desc" rows="8" cols="50">';
|
|
print "</textarea></td></tr>";
|
|
if ($type == 1)
|
|
{
|
|
print '<tr><td>Durée</td><TD><input name="duration_value" size="6" value="'.$product->duree.'">';
|
|
print '<input name="duration_unit" type="radio" value="d">jour ';
|
|
print '<input name="duration_unit" type="radio" value="w">semaine ';
|
|
print '<input name="duration_unit" type="radio" value="m">mois ';
|
|
print '<input name="duration_unit" type="radio" value="y">année';
|
|
print '</td></tr>';
|
|
}
|
|
|
|
print '<tr><td> </td><td><input type="submit" value="Créer"></td></tr>';
|
|
print '</table>';
|
|
print '</form>';
|
|
}
|
|
else
|
|
{
|
|
if ($id)
|
|
{
|
|
$contrat = new Contrat($db);
|
|
$result = $contrat->fetch($id);
|
|
|
|
if ( $result )
|
|
{
|
|
print_fiche_titre('Fiche contrat : '.$contrat->id, $mesg);
|
|
|
|
print '<table class="border" width="100%" cellspacing="0" cellpadding="4">';
|
|
print "<tr>";
|
|
print '<td width="20%">Service</td><td width="40%">'.$contrat->product->label_url.'</td>';
|
|
print '<td colspan="2">';
|
|
if ($contrat->enservice)
|
|
{
|
|
print "En service";
|
|
}
|
|
else
|
|
{
|
|
print "<b>Ce contrat n'est pas en service</b>";
|
|
}
|
|
print '</td></tr><tr>';
|
|
if ($contrat->factureid)
|
|
{
|
|
print '<td>Société</td><td>'.$contrat->societe->nom_url.'</td>';
|
|
print '<td>Facture</td><td><a href="../compta/facture.php?facid='.$contrat->factureid.'">Facture</td>';
|
|
}
|
|
else
|
|
{
|
|
print '<td>Société</td><td colspan="4">'.$contrat->societe->nom_url.'</td></tr>';
|
|
}
|
|
|
|
if ($request == 'miseenservice')
|
|
{
|
|
print '<form action="fiche.php?id='.$id.'" method="post">';
|
|
print '<input type="hidden" name="action" value="miseenservice">';
|
|
print '<input type="hidden" name="duration" value="'.$contrat->product->duration.'">';
|
|
print '<tr><td>Mis en service</td><td colspan="3">';
|
|
print $html->select_date('','re',1,1);
|
|
print " ";
|
|
print '<input type="submit" value="Enregistrer"></td></tr>';
|
|
print '</form>';
|
|
}
|
|
|
|
if ($contrat->enservice > 0)
|
|
{
|
|
print "<tr><td valign=\"top\">Mis en service</td><td>".strftime("%A %e %B %Y à %H:%M",$contrat->mise_en_service);
|
|
print "</td>";
|
|
$contrat->user_service->fetch();
|
|
print '<td>par</td><td>'.$contrat->user_service->fullname.'</td></tr>';
|
|
|
|
print '<tr><td valign="top">Fin de validité</td><td colspan="3">'.strftime("%A %e %B %Y à %H:%M",$contrat->date_fin_validite);
|
|
}
|
|
|
|
if ($contrat->enservice == 2)
|
|
{
|
|
print "<tr><td valign=\"top\">Cloturé</td><td>".strftime("%A %e %B %Y à %H:%M",$contrat->date_cloture)."</td>";
|
|
$contrat->user_cloture->fetch();
|
|
print '<td>par</td><td>'.$contrat->user_cloture->fullname.'</td></tr>';
|
|
}
|
|
|
|
|
|
print "</table>";
|
|
}
|
|
|
|
}
|
|
else
|
|
{
|
|
print "Error";
|
|
}
|
|
}
|
|
|
|
/* ************************************************************************** */
|
|
/* */
|
|
/* Barre d'action */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
print '<br><table width="100%" id="actions" cellspacing="0" cellpadding="3">';
|
|
print '<td width="20%" align="center">-</td>';
|
|
|
|
if ($contrat->enservice)
|
|
{
|
|
print '<td width="20%" align="center">-</td>';
|
|
}
|
|
else
|
|
{
|
|
print '<td width="20%" align="center">[<a href="fiche.php?request=miseenservice&id='.$id.'">Mise en service</a>]</td>';
|
|
}
|
|
print '<td width="20%" align="center">-</td>';
|
|
print '<td width="20%" align="center">-</td>';
|
|
if ($contrat->enservice == 1)
|
|
{
|
|
print '<td width="20%" align="center">[<a href="fiche.php?action=cloture&id='.$id.'">Clôturer</a>]</td>';
|
|
}
|
|
else
|
|
{
|
|
print '<td width="20%" align="center">-</td>';
|
|
}
|
|
print '</table><br>';
|
|
|
|
$db->close();
|
|
|
|
llxFooter("<em>Dernière modification $Date$ révision $Revision$</em>");
|
|
?>
|