css
This commit is contained in:
parent
25971e373d
commit
b5a27b4c15
@ -898,9 +898,9 @@ while ($i < min($num, $limit)) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Ref customer
|
// Ref supplier
|
||||||
if (!empty($arrayfields['e.ref_supplier']['checked'])) {
|
if (!empty($arrayfields['e.ref_supplier']['checked'])) {
|
||||||
print '<td title="'.dol_escape_htmltag($obj->ref_supplier).'">';
|
print '<td class="tdoverflowmax200" title="'.dol_escape_htmltag($obj->ref_supplier).'">';
|
||||||
print dol_escape_htmltag($obj->ref_supplier);
|
print dol_escape_htmltag($obj->ref_supplier);
|
||||||
print "</td>\n";
|
print "</td>\n";
|
||||||
if (!$i) {
|
if (!$i) {
|
||||||
@ -919,8 +919,8 @@ while ($i < min($num, $limit)) {
|
|||||||
}
|
}
|
||||||
// Town
|
// Town
|
||||||
if (!empty($arrayfields['s.town']['checked'])) {
|
if (!empty($arrayfields['s.town']['checked'])) {
|
||||||
print '<td class="nocellnopadd">';
|
print '<td class="nocellnopadd tdoverflowmax200" title="'.dol_escape_htmltag($obj->town).'">';
|
||||||
print $obj->town;
|
print dol_escape_htmltag($obj->town);
|
||||||
print '</td>';
|
print '</td>';
|
||||||
if (!$i) {
|
if (!$i) {
|
||||||
$totalarray['nbfield']++;
|
$totalarray['nbfield']++;
|
||||||
@ -929,7 +929,7 @@ while ($i < min($num, $limit)) {
|
|||||||
// Zip
|
// Zip
|
||||||
if (!empty($arrayfields['s.zip']['checked'])) {
|
if (!empty($arrayfields['s.zip']['checked'])) {
|
||||||
print '<td class="nocellnopadd center"">';
|
print '<td class="nocellnopadd center"">';
|
||||||
print $obj->zip;
|
print dol_escape_htmltag($obj->zip);
|
||||||
print '</td>';
|
print '</td>';
|
||||||
if (!$i) {
|
if (!$i) {
|
||||||
$totalarray['nbfield']++;
|
$totalarray['nbfield']++;
|
||||||
@ -937,7 +937,7 @@ while ($i < min($num, $limit)) {
|
|||||||
}
|
}
|
||||||
// State
|
// State
|
||||||
if (!empty($arrayfields['state.nom']['checked'])) {
|
if (!empty($arrayfields['state.nom']['checked'])) {
|
||||||
print "<td>".$obj->state_name."</td>\n";
|
print "<td>".dol_escape_htmltag($obj->state_name)."</td>\n";
|
||||||
if (!$i) {
|
if (!$i) {
|
||||||
$totalarray['nbfield']++;
|
$totalarray['nbfield']++;
|
||||||
}
|
}
|
||||||
@ -946,7 +946,7 @@ while ($i < min($num, $limit)) {
|
|||||||
if (!empty($arrayfields['country.code_iso']['checked'])) {
|
if (!empty($arrayfields['country.code_iso']['checked'])) {
|
||||||
print '<td class="center">';
|
print '<td class="center">';
|
||||||
$tmparray = getCountry($obj->fk_pays, 'all');
|
$tmparray = getCountry($obj->fk_pays, 'all');
|
||||||
print $tmparray['label'];
|
print dol_escape_htmltag($tmparray['label']);
|
||||||
print '</td>';
|
print '</td>';
|
||||||
if (!$i) {
|
if (!$i) {
|
||||||
$totalarray['nbfield']++;
|
$totalarray['nbfield']++;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user