Merge pull request #3921 from marcosgdf/fr-3898
NEW #3898 Remove deprecated Product::hidden property
This commit is contained in:
commit
fdd93554ce
@ -90,9 +90,6 @@ $statutarray=array('1' => $langs->trans("OnSell"), '0' => $langs->trans("NotOnSe
|
|||||||
<?php echo $object->volume_units; ?>
|
<?php echo $object->volume_units; ?>
|
||||||
</td></tr>
|
</td></tr>
|
||||||
|
|
||||||
<tr><td><?php echo $langs->trans("Hidden"); ?></td>
|
|
||||||
<td><?php echo $object->hidden; ?></td></tr>
|
|
||||||
|
|
||||||
<tr><td valign="top"><?php echo $langs->trans("NoteNotVisibleOnBill"); ?></td><td>
|
<tr><td valign="top"><?php echo $langs->trans("NoteNotVisibleOnBill"); ?></td><td>
|
||||||
<?php echo $object->textarea_note; ?>
|
<?php echo $object->textarea_note; ?>
|
||||||
</td></tr>
|
</td></tr>
|
||||||
|
|||||||
@ -63,9 +63,6 @@ $statutarray=array('1' => $langs->trans("OnSell"), '0' => $langs->trans("NotOnSe
|
|||||||
<?php echo $object->duration_unit; ?>
|
<?php echo $object->duration_unit; ?>
|
||||||
</td></tr>
|
</td></tr>
|
||||||
|
|
||||||
<tr><td><?php echo $langs->trans("Hidden"); ?></td>
|
|
||||||
<td><?php echo $object->hidden; ?></td></tr>
|
|
||||||
|
|
||||||
<tr><td valign="top"><?php echo $langs->trans("NoteNotVisibleOnBill"); ?></td><td>
|
<tr><td valign="top"><?php echo $langs->trans("NoteNotVisibleOnBill"); ?></td><td>
|
||||||
<?php echo $object->textarea_note; ?>
|
<?php echo $object->textarea_note; ?>
|
||||||
</td></tr>
|
</td></tr>
|
||||||
|
|||||||
@ -249,7 +249,6 @@ if (empty($reshook))
|
|||||||
$object->volume = GETPOST('volume');
|
$object->volume = GETPOST('volume');
|
||||||
$object->volume_units = GETPOST('volume_units');
|
$object->volume_units = GETPOST('volume_units');
|
||||||
$object->finished = GETPOST('finished');
|
$object->finished = GETPOST('finished');
|
||||||
$object->hidden = GETPOST('hidden')=='yes'?1:0;
|
|
||||||
$object->fk_unit = GETPOST('units');
|
$object->fk_unit = GETPOST('units');
|
||||||
$object->accountancy_code_sell = GETPOST('accountancy_code_sell');
|
$object->accountancy_code_sell = GETPOST('accountancy_code_sell');
|
||||||
$object->accountancy_code_buy = GETPOST('accountancy_code_buy');
|
$object->accountancy_code_buy = GETPOST('accountancy_code_buy');
|
||||||
@ -335,7 +334,6 @@ if (empty($reshook))
|
|||||||
$object->volume = GETPOST('volume');
|
$object->volume = GETPOST('volume');
|
||||||
$object->volume_units = GETPOST('volume_units');
|
$object->volume_units = GETPOST('volume_units');
|
||||||
$object->finished = GETPOST('finished');
|
$object->finished = GETPOST('finished');
|
||||||
$object->hidden = GETPOST('hidden')=='yes'?1:0;
|
|
||||||
|
|
||||||
$units = GETPOST('units', 'int');
|
$units = GETPOST('units', 'int');
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user