Look and feel v14
This commit is contained in:
parent
f6251679a1
commit
97ace5e3bb
@ -535,7 +535,7 @@ foreach ($accounts as $key => $type) {
|
|||||||
|
|
||||||
// Account type
|
// Account type
|
||||||
if (!empty($arrayfields['accountype']['checked'])) {
|
if (!empty($arrayfields['accountype']['checked'])) {
|
||||||
print '<td>';
|
print '<td class="tdoverflowmax200" title="'.dol_escape_htmltag($objecttmp->type_lib[$objecttmp->type]).'">';
|
||||||
print $objecttmp->type_lib[$objecttmp->type];
|
print $objecttmp->type_lib[$objecttmp->type];
|
||||||
print '</td>';
|
print '</td>';
|
||||||
if (!$i) {
|
if (!$i) {
|
||||||
@ -553,13 +553,15 @@ foreach ($accounts as $key => $type) {
|
|||||||
|
|
||||||
// Account number
|
// Account number
|
||||||
if (!empty($arrayfields['b.account_number']['checked'])) {
|
if (!empty($arrayfields['b.account_number']['checked'])) {
|
||||||
print '<td>';
|
print '<td class="tdoverflowmax300">';
|
||||||
if (!empty($conf->accounting->enabled) && !empty($objecttmp->account_number)) {
|
if (!empty($conf->accounting->enabled) && !empty($objecttmp->account_number)) {
|
||||||
$accountingaccount = new AccountingAccount($db);
|
$accountingaccount = new AccountingAccount($db);
|
||||||
$accountingaccount->fetch('', $objecttmp->account_number, 1);
|
$accountingaccount->fetch('', $objecttmp->account_number, 1);
|
||||||
print $accountingaccount->getNomUrl(0, 1, 1, '', 1);
|
print '<span title="'.dol_escape_htmltag($accountingaccount->account_number.' - '.$accountingaccount->label).'">';
|
||||||
|
print $accountingaccount->getNomUrl(0, 1, 1, '', 0);
|
||||||
|
print '</span>';
|
||||||
} else {
|
} else {
|
||||||
print $objecttmp->account_number;
|
print '<span title="'.dol_escape_htmltag($objecttmp->account_number).'">'.$objecttmp->account_number.'</span>';
|
||||||
}
|
}
|
||||||
print '</td>';
|
print '</td>';
|
||||||
if (!$i) {
|
if (!$i) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user