Fix: Un avoir est en fait une facture négative. Les avoirs on le meme module de numérotation que les factures.
This commit is contained in:
parent
e44148fc57
commit
40f388e01a
@ -317,11 +317,12 @@ print "<tr class=\"liste_titre\">\n";
|
|||||||
print " <td>".$langs->trans("Name")."</td>\n";
|
print " <td>".$langs->trans("Name")."</td>\n";
|
||||||
print " <td>".$langs->trans("Value")."</td>\n";
|
print " <td>".$langs->trans("Value")."</td>\n";
|
||||||
print "</tr>\n";
|
print "</tr>\n";
|
||||||
print "<tr ".$bc[false].">\n <td width=\"140\">".$langs->trans("Directory")."</td>\n <td>".$conf->societe->dir_avoir."</td>\n</tr>\n";
|
print "<tr ".$bc[false].">\n <td width=\"140\">".$langs->trans("PathDirectory")."</td>\n <td>".$conf->facture->dir_output."</td>\n</tr>\n";
|
||||||
print "</table>\n";
|
print "</table>\n";
|
||||||
|
|
||||||
|
|
||||||
$db->close();
|
$db->close();
|
||||||
|
|
||||||
llxFooter();
|
|
||||||
|
llxFooter('$Date$ - $Revision$');
|
||||||
?>
|
?>
|
||||||
|
|||||||
@ -472,6 +472,23 @@ print '</form>';
|
|||||||
print '</table>';
|
print '</table>';
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Repertoire
|
||||||
|
*/
|
||||||
|
print '<br>';
|
||||||
|
print_titre($langs->trans("PathToDocuments"));
|
||||||
|
|
||||||
|
print "<table class=\"noborder\" width=\"100%\">\n";
|
||||||
|
print "<tr class=\"liste_titre\">\n";
|
||||||
|
print " <td>".$langs->trans("Name")."</td>\n";
|
||||||
|
print " <td>".$langs->trans("Value")."</td>\n";
|
||||||
|
print "</tr>\n";
|
||||||
|
print "<tr ".$bc[false].">\n <td width=\"140\">".$langs->trans("PathDirectory")."</td>\n <td>".$conf->facture->dir_output."</td>\n</tr>\n";
|
||||||
|
print "</table>\n";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$db->close();
|
$db->close();
|
||||||
|
|
||||||
llxFooter('$Date$ - $Revision$');
|
llxFooter('$Date$ - $Revision$');
|
||||||
|
|||||||
@ -407,6 +407,7 @@ PropalSetup=Commercial proposals module setup
|
|||||||
CreateForm=Create forms
|
CreateForm=Create forms
|
||||||
NumberOfProductLines=Number of product lines
|
NumberOfProductLines=Number of product lines
|
||||||
PathToDocuments=Path to documents
|
PathToDocuments=Path to documents
|
||||||
|
PathDirectory=Directory
|
||||||
ProposalsNumberingModules=Commercial proposal numbering modules
|
ProposalsNumberingModules=Commercial proposal numbering modules
|
||||||
ProposalsPDFModules=Commercial proposal documents models
|
ProposalsPDFModules=Commercial proposal documents models
|
||||||
ClassifiedInvoiced=Classified invoiced
|
ClassifiedInvoiced=Classified invoiced
|
||||||
|
|||||||
@ -407,6 +407,7 @@ PropalSetup=Configuration du module Propositions Commerciales
|
|||||||
CreateForm=Création formulaire
|
CreateForm=Création formulaire
|
||||||
NumberOfProductLines=Nombre de lignes produits
|
NumberOfProductLines=Nombre de lignes produits
|
||||||
PathToDocuments=Chemins d'accès aux documents
|
PathToDocuments=Chemins d'accès aux documents
|
||||||
|
PathDirectory=Répertoire
|
||||||
ProposalsNumberingModules=Modules de numérotation des propositions commerciales
|
ProposalsNumberingModules=Modules de numérotation des propositions commerciales
|
||||||
ProposalsPDFModules=Modèles de documents de propositions commerciales
|
ProposalsPDFModules=Modèles de documents de propositions commerciales
|
||||||
ClassifiedInvoiced=Classé facturée
|
ClassifiedInvoiced=Classé facturée
|
||||||
|
|||||||
@ -238,7 +238,6 @@ $conf->societe->enabled=defined("MAIN_MODULE_SOCIETE")?MAIN_MODULE_SOCIETE:0;
|
|||||||
$conf->societe->dir_output=DOL_DATA_ROOT."/societe";
|
$conf->societe->dir_output=DOL_DATA_ROOT."/societe";
|
||||||
$conf->societe->dir_images=DOL_DATA_ROOT."/societe/images";
|
$conf->societe->dir_images=DOL_DATA_ROOT."/societe/images";
|
||||||
$conf->societe->dir_logos=DOL_DATA_ROOT."/societe/logos";
|
$conf->societe->dir_logos=DOL_DATA_ROOT."/societe/logos";
|
||||||
$conf->societe->dir_avoir=DOL_DATA_ROOT."/societe/avoirs";
|
|
||||||
if (defined('SOCIETE_OUTPUTDIR') && SOCIETE_OUTPUTDIR) { $conf->societe->dir_output=SOCIETE_OUTPUTDIR; } # Pour passer outre le rep par defaut
|
if (defined('SOCIETE_OUTPUTDIR') && SOCIETE_OUTPUTDIR) { $conf->societe->dir_output=SOCIETE_OUTPUTDIR; } # Pour passer outre le rep par defaut
|
||||||
// Module commercial
|
// Module commercial
|
||||||
$conf->commercial->enabled=defined("MAIN_MODULE_COMMERCIAL")?MAIN_MODULE_COMMERCIAL:0;
|
$conf->commercial->enabled=defined("MAIN_MODULE_COMMERCIAL")?MAIN_MODULE_COMMERCIAL:0;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user