diff --git a/htdocs/expensereport/card.php b/htdocs/expensereport/card.php
index 1f874acca91..1718425e907 100644
--- a/htdocs/expensereport/card.php
+++ b/htdocs/expensereport/card.php
@@ -2080,15 +2080,15 @@ if ($action == 'create') {
$numline = $i + 1;
if ($action != 'editline' || $line->rowid != GETPOST('rowid', 'int')) {
- print '
';
// Num
- print '| ';
+ print ' | ';
print $numline;
print ' | ';
// Date
- print ''.dol_print_date($db->jdate($line->date), 'day').' | ';
+ print ''.dol_print_date($db->jdate($line->date), 'day').' | ';
// Project
if (!empty($conf->projet->enabled)) {
@@ -2118,26 +2118,26 @@ if ($action == 'create') {
}
// Type of fee
- print '';
+ print ' | ';
$labeltype = ($langs->trans(($line->type_fees_code)) == $line->type_fees_code ? $line->type_fees_libelle : $langs->trans($line->type_fees_code));
print $labeltype;
print ' | ';
// IK
if (!empty($conf->global->MAIN_USE_EXPENSE_IK)) {
- print '';
+ print ' | ';
print dol_getIdFromCode($db, $line->fk_c_exp_tax_cat, 'c_exp_tax_cat', 'rowid', 'label');
print ' | ';
}
// Comment
- print '';
+ print '';
// VAT rate
- print ''.vatrate($line->vatrate.($line->vat_src_code ? ' ('.$line->vat_src_code.')' : ''), true).' | ';
+ print ''.vatrate($line->vatrate.($line->vat_src_code ? ' ('.$line->vat_src_code.')' : ''), true).' | ';
// Unit price HT
- print '';
+ print ' | ';
if (!empty($line->value_unit_ht)) {
print price($line->value_unit_ht);
} else {
@@ -2147,17 +2147,17 @@ if ($action == 'create') {
}
print ' | ';
- print ''.price($line->value_unit).' | ';
+ print ''.price($line->value_unit).' | ';
- print ''.dol_escape_htmltag($line->qty).' | ';
+ print ''.dol_escape_htmltag($line->qty).' | ';
if ($action != 'editline') {
- print ''.price($line->total_ht).' | ';
- print ''.price($line->total_ttc).' | ';
+ print ''.price($line->total_ht).' | ';
+ print ''.price($line->total_ttc).' | ';
}
// Column with preview
- print '';
+ print ' | ';
if ($line->fk_ecm_files > 0) {
$modulepart = 'expensereport';
$maxheightmini = 32;
@@ -2227,13 +2227,13 @@ if ($action == 'create') {
}
print ' | ';
- print '';
+ print ' | ';
print !empty($line->rule_warning_message) ? img_warning(html_entity_decode($line->rule_warning_message)) : ' ';
print ' | ';
// Ajout des boutons de modification/suppression
if (($object->status < ExpenseReport::STATUS_VALIDATED || $object->status == ExpenseReport::STATUS_REFUSED) && $user->rights->expensereport->creer) {
- print '';
+ print ' | ';
print 'id.'&action=editline&token='.newToken().'&rowid='.$line->rowid.'">';
print img_edit();
|