Fix: use specific variable
This commit is contained in:
parent
9058439015
commit
a7bfc722d5
@ -223,7 +223,7 @@ if ($socid)
|
||||
print '</td></tr>';
|
||||
}
|
||||
|
||||
if (! empty($conf->global->MAIN_MODULE_BARCODE))
|
||||
if (! empty($conf->barcode->enabled))
|
||||
{
|
||||
print '<tr><td>'.$langs->trans('Gencod').'</td><td colspan="3">'.$soc->barcode.'</td></tr>';
|
||||
}
|
||||
|
||||
@ -105,7 +105,7 @@ if ($socid)
|
||||
print '</td></tr>';
|
||||
}
|
||||
|
||||
if ($conf->global->MAIN_MODULE_BARCODE)
|
||||
if (! empty($conf->barcode->enabled))
|
||||
{
|
||||
print '<tr><td>'.$langs->trans('Gencod').'</td><td colspan="3">'.$soc->barcode.'</td></tr>';
|
||||
}
|
||||
|
||||
@ -96,7 +96,7 @@
|
||||
</tr>
|
||||
<?php } }?>
|
||||
|
||||
<?php if ($conf->global->MAIN_MODULE_BARCODE) { ?>
|
||||
<?php if (! empty($conf->barcode->enabled)) { ?>
|
||||
<tr>
|
||||
<td><?php echo $langs->trans('Gencod'); ?></td>
|
||||
<td colspan="3"><input type="text" name="barcode" value="<?php echo $this->control->tpl['barcode']; ?>"></td>
|
||||
|
||||
@ -111,7 +111,7 @@ if ($this->control->tpl['fournisseur']) {
|
||||
</tr>
|
||||
<?php } }?>
|
||||
|
||||
<?php if ($conf->global->MAIN_MODULE_BARCODE) { ?>
|
||||
<?php if (! empty($conf->barcode->enabled)) { ?>
|
||||
<tr>
|
||||
<td><?php echo $langs->trans('Gencod'); ?></td>
|
||||
<td colspan="3"><input type="text" name="barcode" value="<?php echo $this->control->tpl['barcode']; ?>"></td>
|
||||
|
||||
@ -69,7 +69,7 @@ dol_fiche_head($head, 'card', $langs->trans("ThirdParty"),0,'company');
|
||||
</tr>
|
||||
<?php } ?>
|
||||
|
||||
<?php if ($conf->global->MAIN_MODULE_BARCODE) { ?>
|
||||
<?php if (! empty($conf->barcode->enabled)) { ?>
|
||||
<tr>
|
||||
<td><?php echo $langs->trans('Gencod'); ?></td>
|
||||
<td colspan="3"><?php echo $this->control->tpl['barcode']; ?></td>
|
||||
|
||||
@ -106,7 +106,7 @@
|
||||
</tr>
|
||||
<?php } }?>
|
||||
|
||||
<?php if ($conf->global->MAIN_MODULE_BARCODE) { ?>
|
||||
<?php if (! empty($conf->barcode->enabled)) { ?>
|
||||
<tr>
|
||||
<td><?php echo $langs->trans('Gencod'); ?></td>
|
||||
<td colspan="3"><input type="text" name="barcode" value="<?php echo $this->control->tpl['barcode']; ?>"></td>
|
||||
|
||||
@ -108,7 +108,7 @@ if ($this->control->tpl['fournisseur']) {
|
||||
</tr>
|
||||
<?php } }?>
|
||||
|
||||
<?php if ($conf->global->MAIN_MODULE_BARCODE) { ?>
|
||||
<?php if (! empty($conf->barcode->enabled)) { ?>
|
||||
<tr>
|
||||
<td><?php echo $langs->trans('Gencod'); ?></td>
|
||||
<td colspan="3"><input type="text" name="barcode" value="<?php echo $this->control->tpl['barcode']; ?>"></td>
|
||||
|
||||
@ -68,7 +68,7 @@ dol_fiche_head($head, 'card', $langs->trans("ThirdParty"),0,'company');
|
||||
</tr>
|
||||
<?php } ?>
|
||||
|
||||
<?php if ($conf->global->MAIN_MODULE_BARCODE) { ?>
|
||||
<?php if (! empty($conf->barcode->enabled)) { ?>
|
||||
<tr>
|
||||
<td><?php echo $langs->trans('Gencod'); ?></td>
|
||||
<td colspan="3"><?php echo $this->control->tpl['barcode']; ?></td>
|
||||
|
||||
@ -784,7 +784,7 @@ else
|
||||
print '</td></tr>';
|
||||
|
||||
// Barcode
|
||||
if (! empty($conf->global->MAIN_MODULE_BARCODE))
|
||||
if (! empty($conf->barcode->enabled))
|
||||
{
|
||||
print '<tr><td>'.$langs->trans('Gencod').'</td><td colspan="3"><input type="text" name="barcode" value="'.$object->barcode.'">';
|
||||
print '</td></tr>';
|
||||
@ -1218,7 +1218,7 @@ else
|
||||
}
|
||||
|
||||
// Barcode
|
||||
if ($conf->global->MAIN_MODULE_BARCODE)
|
||||
if (! empty($conf->barcode->enabled))
|
||||
{
|
||||
print '<tr><td valign="top">'.$langs->trans('Gencod').'</td><td colspan="3"><input type="text" name="barcode" value="'.$object->barcode.'">';
|
||||
print '</td></tr>';
|
||||
@ -1469,7 +1469,7 @@ else
|
||||
if (! empty($conf->global->SOCIETE_USEPREFIX)) $rowspan++;
|
||||
if (! empty($object->client)) $rowspan++;
|
||||
if (! empty($conf->fournisseur->enabled) && $object->fournisseur && ! empty($user->rights->fournisseur->lire)) $rowspan++;
|
||||
if (! empty($conf->global->MAIN_MODULE_BARCODE)) $rowspan++;
|
||||
if (! empty($conf->barcode->enabled)) $rowspan++;
|
||||
if (empty($conf->global->SOCIETE_DISABLE_STATE)) $rowspan++;
|
||||
$htmllogobar='';
|
||||
if ($showlogo || $showbarcode)
|
||||
@ -1514,7 +1514,7 @@ else
|
||||
}
|
||||
|
||||
// Barcode
|
||||
if (! empty($conf->global->MAIN_MODULE_BARCODE))
|
||||
if (! empty($conf->barcode->enabled))
|
||||
{
|
||||
print '<tr><td>';
|
||||
print $langs->trans('Gencod').'</td><td colspan="'.(2+(($showlogo || $showbarcode)?0:1)).'">'.$object->barcode;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user