Skip to content
Snippets Groups Projects
Commit 3318a0ac authored by Regis Houssin's avatar Regis Houssin
Browse files

Fix: reorder fields

parent 27259172
No related branches found
No related tags found
No related merge requests found
......@@ -148,11 +148,6 @@ if ($this->control->tpl['fournisseur']) {
<td><input type="text" name="url" size="32" value="<?php echo $this->control->tpl['url']; ?>"></td>
</tr>
<tr>
<td><?php echo $langs->trans('Capital'); ?></td>
<td colspan="3"><input type="text" name="capital" size="10" value="<?php echo $this->control->tpl['capital']; ?>"> <?php echo $langs->trans("Currency".$conf->monnaie); ?></td>
</tr>
<?php
for ($i=1; $i<=4; $i++) {
if ($this->control->tpl['langprofid'.$i]!='-') {
......@@ -169,6 +164,18 @@ for ($i=1; $i<=4; $i++) {
}
?>
<tr>
<td><?php echo $langs->trans('VATIsUsed'); ?></td>
<td><?php echo $this->control->tpl['yn_assujtva']; ?></td>
<td nowrap="nowrap"><?php echo $langs->trans('VATIntra'); ?></td>
<td nowrap="nowrap"><?php echo $this->control->tpl['tva_intra']; ?></td>
</tr>
<tr>
<td><?php echo $langs->trans('Capital'); ?></td>
<td colspan="3"><input type="text" name="capital" size="10" value="<?php echo $this->control->tpl['capital']; ?>"> <?php echo $langs->trans("Currency".$conf->monnaie); ?></td>
</tr>
<tr>
<td><?php echo $langs->trans('JuridicalStatus'); ?></td>
<td colspan="3"><?php echo $this->control->tpl['select_juridicalstatus']; ?></td>
......@@ -188,13 +195,6 @@ for ($i=1; $i<=4; $i++) {
</tr>
<?php } ?>
<tr>
<td><?php echo $langs->trans('VATIsUsed'); ?></td>
<td><?php echo $this->control->tpl['yn_assujtva']; ?></td>
<td nowrap="nowrap"><?php echo $langs->trans('VATIntra'); ?></td>
<td nowrap="nowrap"><?php echo $this->control->tpl['tva_intra']; ?></td>
</tr>
<?php if(!empty($this->control->tpl['localtax'])) echo $this->control->tpl['localtax']; ?>
</table>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment