Fix: Default VAT must be on

This commit is contained in:
Laurent Destailleur 2008-02-23 16:04:44 +00:00
parent 5f4447b319
commit ec536cb582
2 changed files with 2 additions and 1 deletions

View File

@ -39,7 +39,7 @@ $langs->load("bills");
$socid = isset($_GET["socid"])?$_GET["socid"]:'';
// Sécurité d'accès client et commerciaux
$socid = restrictedArea($user, 'societe', $socid);
$result = restrictedArea($user, 'societe', $socid);
// Initialisation de l'objet Societe
$soc = new Societe($db);

View File

@ -119,6 +119,7 @@ class Societe
$this->forme_juridique_code = 0;
$this->prefixCustomerIsRequired = 0;
$this->prefixSupplierIsRequired = 0;
$this->tva_assuj = 1;
return 1;
}