mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-17 23:11:29 +01:00
312 lines
9.2 KiB
PHP
312 lines
9.2 KiB
PHP
<?PHP
|
||
/* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||
* Copyright (C) 2004 Laurent Destailleur <eldy@users.sourceforge.net>
|
||
*
|
||
* 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");
|
||
|
||
if (!$user->admin)
|
||
accessforbidden();
|
||
|
||
|
||
#if ($HTTP_POST_VARS["action"] == 'update')
|
||
#{
|
||
# dolibarr_set_const($db, "FAC_PDF_INTITULE2",$HTTP_POST_VARS["nom2"]);
|
||
# dolibarr_set_const($db, "FAC_PDF_INTITULE",$HTTP_POST_VARS["nom"]);
|
||
# dolibarr_set_const($db, "FAC_PDF_ADRESSE",$HTTP_POST_VARS["adresse"]);
|
||
# dolibarr_set_const($db, "FAC_PDF_TEL",$HTTP_POST_VARS["tel"]);
|
||
# dolibarr_set_const($db, "FAC_PDF_FAX",$HTTP_POST_VARS["fax"]);
|
||
# dolibarr_set_const($db, "FAC_PDF_SIREN",$HTTP_POST_VARS["siren"]);
|
||
# dolibarr_set_const($db, "FAC_PDF_SIRET",$HTTP_POST_VARS["siret"]);
|
||
#
|
||
# Header("Location: $PHP_SELF");
|
||
#}
|
||
|
||
|
||
llxHeader();
|
||
|
||
|
||
$facture_addon_var = FACTURE_ADDON;
|
||
$facture_addon_var_pdf = FACTURE_ADDON_PDF;
|
||
$facture_rib_number_var = FACTURE_RIB_NUMBER;
|
||
$facture_chq_number_var = FACTURE_CHQ_NUMBER;
|
||
$facture_tva_option = FACTURE_TVAOPTION;
|
||
|
||
if ($action == 'set')
|
||
{
|
||
if (dolibarr_set_const($db, "FACTURE_ADDON",$value)) $facture_addon_var = $value;
|
||
}
|
||
|
||
if ($action == 'setribchq')
|
||
{
|
||
if (dolibarr_set_const($db, "FACTURE_RIB_NUMBER",$rib)) $facture_rib_number_var = $rib;
|
||
if (dolibarr_set_const($db, "FACTURE_CHQ_NUMBER",$chq)) $facture_chq_number_var = $chq;
|
||
}
|
||
|
||
if ($action == 'setpdf')
|
||
{
|
||
if (dolibarr_set_const($db, "FACTURE_ADDON_PDF",$value)) $facture_addon_var_pdf = $value;
|
||
}
|
||
|
||
if ($action == 'settvaoption')
|
||
{
|
||
if (dolibarr_set_const($db, "FACTURE_TVAOPTION",$optiontva)) $facture_tva_option = $optiontva;
|
||
}
|
||
|
||
|
||
$dir = "../includes/modules/facture/";
|
||
|
||
print_titre("Configuration du module Factures");
|
||
|
||
/*
|
||
* Module num<75>rotation
|
||
*/
|
||
print "<br>";
|
||
print_titre("Module de num<75>rotation des factures");
|
||
|
||
print '<table class="noborder" cellpadding="3" cellspacing="0" width=\"100%\">';
|
||
print '<TR class="liste_titre">';
|
||
print '<td>Nom</td>';
|
||
print '<td>Description</td>';
|
||
print '<td align="center" width="60">Activ<69></td>';
|
||
print '<td width="80"> </td>';
|
||
print "</TR>\n";
|
||
|
||
clearstatcache();
|
||
|
||
$handle=opendir($dir);
|
||
|
||
$var=True;
|
||
while (($file = readdir($handle))!==false)
|
||
{
|
||
if (is_dir($dir.$file) && substr($file, 0, 1) <> '.' && substr($file, 0, 3) <> 'CVS')
|
||
{
|
||
$var = !$var;
|
||
print '<tr '.$bc[$var].'><td width=\"100\">';
|
||
echo "$file";
|
||
print "</td><td>\n";
|
||
|
||
$func = $file."_get_num_explain";
|
||
|
||
print $func();
|
||
|
||
print '</td><td align="center">';
|
||
|
||
if ($facture_addon_var == "$file")
|
||
{
|
||
print '<img src="'.DOL_URL_ROOT.'/theme/'.$conf->theme.'/img/tick.png" border="0"></a>';
|
||
print '</td><td align="center">';
|
||
print ' ';
|
||
}
|
||
else
|
||
{
|
||
print ' ';
|
||
print '</td><td align="center">';
|
||
print '<a href="facture.php?action=set&value='.$file.'">Activer</a>';
|
||
}
|
||
print "</td></tr>\n";
|
||
}
|
||
}
|
||
closedir($handle);
|
||
|
||
print '</table>';
|
||
|
||
/*
|
||
* PDF
|
||
*/
|
||
print '<br>';
|
||
print_titre("Mod<EFBFBD>les de facture pdf");
|
||
|
||
print '<table class="noborder" cellpadding="3" cellspacing="0" width=\"100%\">';
|
||
print '<tr class="liste_titre">';
|
||
print '<td>Nom</td>';
|
||
print '<td>Description</td>';
|
||
print '<td align="center" width="60">Activ<69></td>';
|
||
print '<td width="80"> </td>';
|
||
print "</tr>\n";
|
||
|
||
clearstatcache();
|
||
|
||
$handle=opendir($dir);
|
||
|
||
$var=True;
|
||
while (($file = readdir($handle))!==false)
|
||
{
|
||
if (substr($file, strlen($file) -12) == '.modules.php' && substr($file,0,4) == 'pdf_')
|
||
{
|
||
$var = !$var;
|
||
$name = substr($file, 4, strlen($file) -16);
|
||
$classname = substr($file, 0, strlen($file) -12);
|
||
|
||
print '<tr '.$bc[$var].'><td width=\"100\">';
|
||
echo "$name";
|
||
print "</td><td>\n";
|
||
require_once($dir.$file);
|
||
$obj = new $classname();
|
||
|
||
print $obj->description;
|
||
|
||
print '</td><td align="center">';
|
||
|
||
if ($facture_addon_var_pdf == "$name")
|
||
{
|
||
print '<img src="'.DOL_URL_ROOT.'/theme/'.$conf->theme.'/img/tick.png" border="0"></a>';
|
||
print '</td><td align="center">';
|
||
print ' ';
|
||
}
|
||
else
|
||
{
|
||
print ' ';
|
||
print '</td><td align="center">';
|
||
print '<a href="facture.php?action=setpdf&value='.$name.'">Activer</a>';
|
||
}
|
||
print "</td></tr>\n";
|
||
|
||
}
|
||
}
|
||
closedir($handle);
|
||
|
||
print '</table>';
|
||
|
||
|
||
/*
|
||
* Modes de r<>glement
|
||
*
|
||
*/
|
||
print '<br>';
|
||
print_titre( "Mode de r<>glement <20> afficher sur les factures");
|
||
|
||
print '<table class="noborder" cellpadding="3" cellspacing="0" width=\"100%\">';
|
||
|
||
print '<form action="'.$PHP_SELF.'" method="post">';
|
||
print '<input type="hidden" name="action" value="setribchq">';
|
||
print '<tr class="liste_titre">';
|
||
print '<td>Mode r<>glement <20> proposer</td>';
|
||
print '<td align="right"><input type="submit" value="Modifier"></td>';
|
||
print "</tr>\n";
|
||
print '<tr '.$bc[True].'>';
|
||
print "<td>Proposer paiement par RIB sur le compte</td>";
|
||
print "<td>";
|
||
$sql = "SELECT rowid, label FROM ".MAIN_DB_PREFIX."bank_account where clos = 0";
|
||
$var=True;
|
||
if ($db->query($sql))
|
||
{
|
||
$num = $db->num_rows();
|
||
$i = 0;
|
||
if ($num > 0) {
|
||
print "<select name=\"rib\">";
|
||
print '<option value="0">Ne pas afficher</option>';
|
||
while ($i < $num)
|
||
{
|
||
$var=!$var;
|
||
$row = $db->fetch_row($i);
|
||
|
||
if ($facture_rib_number_var == $row[0])
|
||
{
|
||
print '<option value="'.$row[0].'" selected>'.$row[1].'</option>';
|
||
}
|
||
else
|
||
{
|
||
print '<option value="'.$row[0].'">'.$row[1].'</option>';
|
||
}
|
||
$i++;
|
||
}
|
||
print "</select>";
|
||
} else {
|
||
print "<i>Aucun compte bancaire actif cr<63><72></i>";
|
||
}
|
||
}
|
||
print "</td></tr>";
|
||
|
||
print '<tr '.$bc[False].'>';
|
||
print "<td>Proposer paiement par ch<63>que <20> l'ordre et adresse du titulaire du compte</td>";
|
||
print "<td>";
|
||
$sql = "SELECT rowid, label FROM ".MAIN_DB_PREFIX."bank_account where clos = 0";
|
||
$var=True;
|
||
if ($db->query($sql))
|
||
{
|
||
$num = $db->num_rows();
|
||
$i = 0;
|
||
if ($num > 0) {
|
||
print "<select name=\"chq\">";
|
||
print '<option value="0">Ne pas afficher</option>';
|
||
while ($i < $num)
|
||
{
|
||
$var=!$var;
|
||
$row = $db->fetch_row($i);
|
||
|
||
if ($facture_chq_number_var == $row[0])
|
||
{
|
||
print '<option value="'.$row[0].'" selected>'.$row[1].'</option>';
|
||
}
|
||
else
|
||
{
|
||
print '<option value="'.$row[0].'">'.$row[1].'</option>';
|
||
}
|
||
$i++;
|
||
}
|
||
print "</select>";
|
||
} else {
|
||
print "<i>Aucun compte bancaire actif cr<63><72></i>";
|
||
}
|
||
}
|
||
print "</td></tr>";
|
||
|
||
print "</form>";
|
||
print "</table>";
|
||
$db->close();
|
||
|
||
/*
|
||
* Repertoire
|
||
*/
|
||
print '<br>';
|
||
print_titre("Chemins d'acc<63>s aux documents");
|
||
|
||
print '<table class="noborder" cellpadding="3" cellspacing="0" width=\"100%\">';
|
||
print '<tr class="liste_titre">';
|
||
print '<td>Nom</td><td>Valeur</td>';
|
||
print "</tr>\n";
|
||
print '<tr '.$bc[True].'><td width=\"140\">R<>pertoire</td><td>'.FAC_OUTPUTDIR.'</td></tr>';
|
||
print '<tr '.$bc[False].'><td width=\"140\">URL</td><td><a href="'.FAC_OUTPUT_URL.'">'.FAC_OUTPUT_URL.'</a></td></tr>';
|
||
print "</table>";
|
||
|
||
|
||
/*
|
||
* Options fiscale
|
||
*/
|
||
print '<br>';
|
||
print_titre("Options fiscales de facturation de la TVA");
|
||
|
||
print '<table class="noborder" cellpadding="3" cellspacing="0" width=\"100%\">';
|
||
print '<form action="'.$PHP_SELF.'" method="post">';
|
||
print '<input type="hidden" name="action" value="settvaoption">';
|
||
print '<tr class="liste_titre">';
|
||
print '<td>Option</td><td>Description</td>';
|
||
print '<td align="right"><input type="submit" value="Modifier"></td>';
|
||
print "</tr>\n";
|
||
print "<tr ".$bc[True]."><td width=\"140\"><input type=\"radio\" name=\"optiontva\" value=\"reel\"".($facture_tva_option != "franchise"?" checked":"")."> Option r<>el</td>";
|
||
print "<td colspan=\"2\">L'option 'r<>el' est la plus courante. Elle est <20> destination des entreprises et professions lib<69>rales.\nChaque produits/service vendu est soumis <20> la TVA (Dolibarr propose le taux standard par d<>faut <20> la cr<63>ation d'une facture). Cette derni<6E>re est r<>cup<75>r<EFBFBD>e l'ann<6E>e suivante suite <20> la d<>claration TVA pour les produits/services achet<65>s et est revers<72>e <20> l'<27>tat pour les produits/services vendus.</td></tr>\n";
|
||
print "<tr ".$bc[False]."><td width=\"140\"><input type=\"radio\" name=\"optiontva\" value=\"franchise\"".($facture_tva_option == "franchise"?" checked":"")."> Option franchise</td>";
|
||
print "<td colspan=\"2\">L'option 'franchise' est utilis<69>e par les particuliers ou professions lib<69>rales <20> titre occasionnel avec de petits chiffres d'affaires.\nChaque produits/service vendu est soumis <20> une TVA de 0 (Dolibarr propose le taux 0 par d<>faut <20> la cr<63>ation d'une facture cliente). Il n'y a pas de d<>claration ou r<>cup<75>ration de TVA, et les factures qui g<>rent l'option affichent la mention obligatoire \"TVA non applicable - art-293B du CGI\".</td></tr>\n";
|
||
print "</form>";
|
||
print "</table>";
|
||
|
||
llxFooter("<em>Dernière modification $Date$ révision $Revision$</em>");
|
||
?>
|