mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-12 20:41:26 +01:00
202 lines
5.9 KiB
PHP
202 lines
5.9 KiB
PHP
<?PHP
|
|
/* Copyright (C) 2001-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.php3");
|
|
|
|
|
|
llxHeader();
|
|
$db = new Db();
|
|
|
|
|
|
if ($action == 'add')
|
|
{
|
|
$soc = new Societe($db);
|
|
$soc->nom = $nom;
|
|
|
|
$soc->adresse = $adresse;
|
|
$soc->cp = $cp;
|
|
$soc->ville = $ville;
|
|
|
|
$soc->tel = $tel;
|
|
$soc->fax = $fax;
|
|
$soc->url = $url;
|
|
$soc->siren = $siren;
|
|
|
|
$soc->client = $client;
|
|
$soc->fournisseur = $fournisseur;
|
|
|
|
$socid = $soc->create();
|
|
}
|
|
|
|
if ($action == 'update')
|
|
{
|
|
$soc = new Societe($db);
|
|
|
|
$soc->nom = $nom;
|
|
|
|
$soc->adresse = $adresse;
|
|
$soc->cp = $cp;
|
|
$soc->ville = $ville;
|
|
|
|
$soc->tel = $tel;
|
|
$soc->fax = $fax;
|
|
$soc->url = $url;
|
|
$soc->siren = $siren;
|
|
$soc->client = $client;
|
|
$soc->fournisseur = $fournisseur;
|
|
|
|
$soc->update($socid);
|
|
}
|
|
|
|
/*
|
|
*
|
|
*
|
|
*/
|
|
|
|
if ($action == 'create')
|
|
{
|
|
print '<div class="titre">Nouvelle société</div><br>';
|
|
print '<form action="soc.php3" method="post">';
|
|
print '<input type="hidden" name="action" value="add">';
|
|
print '<input type="hidden" name="fournisseur" value="0">';
|
|
|
|
print '<table border="1" cellpadding="3" cellspacing="0">';
|
|
print '<tr><td>Nom</td><td><input type="text" name="nom"></td></tr>';
|
|
print '<tr><td>Adresse</td><td><textarea name="adresse" cols="30" rows="3" wrap="soft"></textarea></td></tr>';
|
|
print '<tr><td>CP</td><td><input size="6" type="text" name="cp"> ';
|
|
print 'Ville <input type="text" name="ville"></td></tr>';
|
|
|
|
print '<tr><td>Tel</td><td><input type="text" name="tel"></td></tr>';
|
|
print '<tr><td>Fax</td><td><input type="text" name="fax"></td></tr>';
|
|
print '<tr><td>Web</td><td><input type="text" name="url"></td></tr>';
|
|
|
|
print '<tr><td>Siren</td><td><input type="text" name="siren"></td></tr>';
|
|
|
|
print '<tr><td>Client</td><td><select name="client">';
|
|
print_oui_non($soc->client);
|
|
print '</select>';
|
|
|
|
print '<tr><td>Fournisseur</td><td><select name="fournisseur">';
|
|
print_oui_non($soc->fournisseur);
|
|
print '</select>';
|
|
|
|
print '<tr><td colspan="2" align="center"><input type="submit" value="Ajouter"></td></tr>';
|
|
print '</table>';
|
|
print '</form>';
|
|
}
|
|
elseif ($action == 'edit')
|
|
{
|
|
print_titre("Edition de la société");
|
|
|
|
$soc = new Societe($db);
|
|
$soc->id = $socid;
|
|
$soc->fetch($socid);
|
|
|
|
print '<form action="soc.php3?socid='.$socid.'" method="post">';
|
|
print '<input type="hidden" name="action" value="update">';
|
|
|
|
print '<table border="1" cellpadding="3" cellspacing="0">';
|
|
print '<tr><td>Nom</td><td><input type="text" name="nom" value="'.$soc->nom.'"></td></tr>';
|
|
print '<tr><td valign="top">Adresse</td><td><textarea name="adresse" cols="30" rows="3" wrap="soft">';
|
|
print $soc->adresse;
|
|
print '</textarea></td></tr>';
|
|
|
|
print '<tr><td>CP</td><td><input size="6" type="text" name="cp" value="'.$soc->cp.'"> ';
|
|
print 'Ville <input type="text" name="ville" value="'.$soc->ville.'"></td></tr>';
|
|
|
|
print '<tr><td>Tel</td><td><input type="text" name="tel" value="'.$soc->tel.'"></td></tr>';
|
|
print '<tr><td>Fax</td><td><input type="text" name="fax" value="'.$soc->fax.'"></td></tr>';
|
|
print '<tr><td>Web</td><td>http://<input type="text" name="url" value="'.$soc->url.'"></td></tr>';
|
|
|
|
print '<tr><td>Siren</td><td><input type="text" name="siren" value="'.$soc->siren.'"></td></tr>';
|
|
|
|
print '<tr><td>Client</td><td><select name="client">';
|
|
print_oui_non($soc->client);
|
|
print '</select>';
|
|
|
|
print '<tr><td>Fournisseur</td><td><select name="fournisseur">';
|
|
print_oui_non($soc->fournisseur);
|
|
print '</select>';
|
|
|
|
print '</td></tr>';
|
|
|
|
print '<tr><td colspan="2"><input type="submit" value="Mettre a jour"></td></tr>';
|
|
print '</table>';
|
|
print '</form>';
|
|
|
|
} else {
|
|
|
|
print_titre("Fiche société");
|
|
|
|
$soc = new Societe($db);
|
|
$soc->id = $socid;
|
|
$soc->fetch($socid);
|
|
|
|
print '<table border="1" cellpadding="3" cellspacing="0">';
|
|
print '<tr><td>Nom</td><td class="valeur">'.$soc->nom.'</td></tr>';
|
|
print '<tr><td valign="top">Adresse</td><td class="valeur">'.nl2br($soc->adresse).' </td></tr>';
|
|
print '<tr><td>CP</td><td class="valeur">'.$soc->cp.' '.$soc->ville.'</td></tr>';
|
|
|
|
print '<tr><td>Tel</td><td class="valeur">'.$soc->tel.'</td></tr>';
|
|
print '<tr><td>Fax</td><td class="valeur">'.$soc->fax.'</td></tr>';
|
|
print '<tr><td>Web</td><td><a href="http://'.$soc->url.'">http://'.$soc->url.'</a></td></tr>';
|
|
|
|
print '<tr><td>Siren</td><td>'.$soc->siren.' </td></tr>';
|
|
print '<tr><td>Client</td><td>'.$soc->client.'</td></tr>';
|
|
if ($soc->fournisseur)
|
|
{
|
|
print '<tr><td>Fournisseur</td><td>'.$soc->fournisseur.'</td><td><a href="/fourn/">Fiche</td></tr>';
|
|
}
|
|
else
|
|
{
|
|
print '<tr><td>Fournisseur</td><td>'.$soc->fournisseur.'</td></tr>';
|
|
}
|
|
print '</table>';
|
|
|
|
print "[<a href=\"soc.php3?socid=$socid&action=edit\">Editer</a>]";
|
|
|
|
clearstatcache();
|
|
|
|
$docdir = $GLOBALS["DOCUMENT_ROOT"] . "/document/societe/$socid";
|
|
$url = "/document/societe/$socid";
|
|
|
|
if (file_exists ($docdir))
|
|
{
|
|
print "<p>$docdir<p>";
|
|
print '<a href="'.$url.'">Documents</a>';
|
|
}
|
|
else
|
|
{
|
|
|
|
mkdir ("$docdir", 2775);
|
|
if (file_exists ($docdir))
|
|
{
|
|
print '<a href="'.$url.'">Documents</a>';
|
|
}
|
|
}
|
|
}
|
|
|
|
$db->close();
|
|
|
|
llxFooter("<em>Dernière modification $Date$ révision $Revision$</em>");
|
|
?>
|