diff --git a/htdocs/soc.php b/htdocs/soc.php
index b43722ff6e8..2cdfcc0935a 100644
--- a/htdocs/soc.php
+++ b/htdocs/soc.php
@@ -333,41 +333,46 @@ if ($_POST["getcustomercode"] || $_POST["getsuppliercode"] ||
print '
| '.$langs->trans('Capital').' | '.$langs->trans("Currency".$conf->monnaie).' |
';
- print '| '.($langs->transcountry("ProfId1",$soc->pays_code) != '-'?$langs->transcountry('ProfId1',$soc->pays_code):'').' | ';
+ print ' |
'.($langs->transcountry("ProfId1",$soc->pays_code) != '-'?$langs->transcountry('ProfId1',$soc->pays_code):'').' | ';
if ($soc->pays_id)
{
- if ($langs->transcountry("ProfId1",$soc->pays_code) != '-') print '';
- else print ' ';
+ if ($langs->transcountry("ProfId1",$soc->pays_code) != '-') print '';
+ else print ' ';
}
else
{
print $countrynotdefined;
}
print ' | ';
- print ''.($langs->transcountry("ProfId2",$soc->pays_code) != '-'?$langs->transcountry('ProfId2',$soc->pays_code):'').' | ';
+ print ' | '.($langs->transcountry("ProfId2",$soc->pays_code) != '-'?$langs->transcountry('ProfId2',$soc->pays_code):'').' | ';
if ($soc->pays_id)
{
- if ($langs->transcountry("ProfId2",$soc->pays_code) != '-') print '';
- else print ' ';
+ if ($langs->transcountry("ProfId2",$soc->pays_code) != '-') print '';
+ else print ' ';
}
else
{
print $countrynotdefined;
}
print ' |
';
- print '| '.($langs->transcountry("ProfId3",$soc->pays_code) != '-'?$langs->transcountry('ProfId3',$soc->pays_code):'').' | ';
+
+ print ' |
'.($langs->transcountry("ProfId3",$soc->pays_code) != '-'?$langs->transcountry('ProfId3',$soc->pays_code):'').' | ';
if ($soc->pays_id)
{
- if ($langs->transcountry("ProfId3",$soc->pays_code) != '-') print '';
- else print ' ';
+ if ($langs->transcountry("ProfId3",$soc->pays_code) != '-') print '';
+ else print ' ';
}
else
{
print $countrynotdefined;
}
- print ' | |
';
+ print ' | '."\n";
- print '| '.$langs->trans('JuridicalStatus').' | ';
+// print '';
+ // print ' ';
+
+ print ' '.$langs->trans('JuridicalStatus').' | ';
+ print '';
if ($soc->pays_id)
{
$form->select_forme_juridique($soc->forme_juridique_code,$soc->pays_code);
@@ -377,19 +382,22 @@ if ($_POST["getcustomercode"] || $_POST["getsuppliercode"] ||
print $countrynotdefined;
}
print ' | ';
+ //print ' '."\n";
- print ' | '.$langs->trans("Type").' | ';
- $form->select_array("typent_id",$soc->typent_array(), $soc->typent_id);
+ print ' | | '.$langs->trans("Type").' | '."\n";
+ $form->select_array("typent_id",$soc->typent_array(), $soc->typent_id, 0, 0, 0, 1, 'onChange="formDisplayHideId(\'particulier\', 8)"');
print ' | ';
- print ''.$langs->trans("Staff").' | ';
+ print ' | '.$langs->trans("Staff").' | ';
$form->select_array("effectif_id",$soc->effectif_array(), $soc->effectif_id);
print ' | ';
- print ' | '.$langs->trans('VATIntraShort').' | ';
+ print ' | '.$langs->trans('VATIntraShort').' | ';
+ print '';
print ' | ';
|