Fix: removed deprecated nowrap tag
Add changelog entry
This commit is contained in:
parent
11f339eca4
commit
9e283f98e8
@ -4,6 +4,7 @@ English Dolibarr ChangeLog
|
|||||||
|
|
||||||
***** ChangeLog for 3.5 compared to 3.4 *****
|
***** ChangeLog for 3.5 compared to 3.4 *****
|
||||||
For users:
|
For users:
|
||||||
|
- New: Can edit customer ref at eny time.
|
||||||
- New: [ task #877 ] Reorganize menus.
|
- New: [ task #877 ] Reorganize menus.
|
||||||
- New: [ task #858 ] Holiday module: note on manual holiday assignation.
|
- New: [ task #858 ] Holiday module: note on manual holiday assignation.
|
||||||
- New: [ task #892 ] Add hidden option in thirdparty customer/supplier module to hide non active
|
- New: [ task #892 ] Add hidden option in thirdparty customer/supplier module to hide non active
|
||||||
|
|||||||
@ -1595,12 +1595,9 @@ else
|
|||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
|
|
||||||
// Ref client
|
// Ref client
|
||||||
|
|
||||||
print '<tr><td>';
|
print '<tr><td>';
|
||||||
print '<table class="nobordernopadding" width="100%"><tr><td nowrap="nowrap">';
|
print '<table class="nobordernopadding" width="100%"><tr><td class="nowrap">';
|
||||||
print $langs->trans('RefCustomer').'</td>';
|
print $langs->trans('RefCustomer').'</td>';
|
||||||
|
|
||||||
|
|
||||||
print '<td align="right"><a href="'.$_SERVER['PHP_SELF'].'?action=refclient&id='.$object->id.'">'.img_edit($langs->transnoentitiesnoconv('RefCustomer')).'</a></td>';
|
print '<td align="right"><a href="'.$_SERVER['PHP_SELF'].'?action=refclient&id='.$object->id.'">'.img_edit($langs->transnoentitiesnoconv('RefCustomer')).'</a></td>';
|
||||||
print '</td>';
|
print '</td>';
|
||||||
if ($action != 'refclient' && ! empty($object->brouillon)) print '<td align="right"><a href="'.$_SERVER['PHP_SELF'].'?action=refclient&id='.$object->id.'">'.img_edit($langs->trans('Modify')).'</a></td>';
|
if ($action != 'refclient' && ! empty($object->brouillon)) print '<td align="right"><a href="'.$_SERVER['PHP_SELF'].'?action=refclient&id='.$object->id.'">'.img_edit($langs->trans('Modify')).'</a></td>';
|
||||||
@ -1935,7 +1932,7 @@ else
|
|||||||
|
|
||||||
// Amount HT
|
// Amount HT
|
||||||
print '<tr><td height="10" width="25%">'.$langs->trans('AmountHT').'</td>';
|
print '<tr><td height="10" width="25%">'.$langs->trans('AmountHT').'</td>';
|
||||||
print '<td align="right" nowrap><b>'.price($object->total_ht).'</b></td>';
|
print '<td align="right" class="nowrap"><b>'.price($object->total_ht).'</b></td>';
|
||||||
print '<td>'.$langs->trans("Currency".$conf->currency).'</td>';
|
print '<td>'.$langs->trans("Currency".$conf->currency).'</td>';
|
||||||
|
|
||||||
// Margin Infos
|
// Margin Infos
|
||||||
@ -1948,27 +1945,27 @@ else
|
|||||||
|
|
||||||
// Amount VAT
|
// Amount VAT
|
||||||
print '<tr><td height="10">'.$langs->trans('AmountVAT').'</td>';
|
print '<tr><td height="10">'.$langs->trans('AmountVAT').'</td>';
|
||||||
print '<td align="right" nowrap>'.price($object->total_tva).'</td>';
|
print '<td align="right" class="nowrap">'.price($object->total_tva).'</td>';
|
||||||
print '<td>'.$langs->trans("Currency".$conf->currency).'</td></tr>';
|
print '<td>'.$langs->trans("Currency".$conf->currency).'</td></tr>';
|
||||||
|
|
||||||
// Amount Local Taxes
|
// Amount Local Taxes
|
||||||
if ($mysoc->localtax1_assuj=="1") //Localtax1
|
if ($mysoc->localtax1_assuj=="1") //Localtax1
|
||||||
{
|
{
|
||||||
print '<tr><td height="10">'.$langs->transcountry("AmountLT1",$mysoc->country_code).'</td>';
|
print '<tr><td height="10">'.$langs->transcountry("AmountLT1",$mysoc->country_code).'</td>';
|
||||||
print '<td align="right" nowrap>'.price($object->total_localtax1).'</td>';
|
print '<td align="right" class="nowrap">'.price($object->total_localtax1).'</td>';
|
||||||
print '<td>'.$langs->trans("Currency".$conf->currency).'</td></tr>';
|
print '<td>'.$langs->trans("Currency".$conf->currency).'</td></tr>';
|
||||||
}
|
}
|
||||||
if ($mysoc->localtax2_assuj=="1") //Localtax2
|
if ($mysoc->localtax2_assuj=="1") //Localtax2
|
||||||
{
|
{
|
||||||
print '<tr><td height="10">'.$langs->transcountry("AmountLT2",$mysoc->country_code).'</td>';
|
print '<tr><td height="10">'.$langs->transcountry("AmountLT2",$mysoc->country_code).'</td>';
|
||||||
print '<td align="right" nowrap>'.price($object->total_localtax2).'</td>';
|
print '<td align="right" class="nowrap">'.price($object->total_localtax2).'</td>';
|
||||||
print '<td>'.$langs->trans("Currency".$conf->currency).'</td></tr>';
|
print '<td>'.$langs->trans("Currency".$conf->currency).'</td></tr>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Amount TTC
|
// Amount TTC
|
||||||
print '<tr><td height="10">'.$langs->trans('AmountTTC').'</td>';
|
print '<tr><td height="10">'.$langs->trans('AmountTTC').'</td>';
|
||||||
print '<td align="right" nowrap>'.price($object->total_ttc).'</td>';
|
print '<td align="right" class="nowrap">'.price($object->total_ttc).'</td>';
|
||||||
print '<td>'.$langs->trans("Currency".$conf->currency).'</td></tr>';
|
print '<td>'.$langs->trans("Currency".$conf->currency).'</td></tr>';
|
||||||
|
|
||||||
// Statut
|
// Statut
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user