NEW Survey - Add a clickable link in email send

This commit is contained in:
Alexandre SPANGARO 2021-09-10 09:09:39 +02:00
parent 5a87d94b3c
commit 4bb612650b
2 changed files with 3 additions and 2 deletions

View File

@ -1124,11 +1124,11 @@ while ($i < min($num, $limit)) {
// Other type
}
print '<td class="nowrap">';
print '<td class="maxwidth100">';
print '<table class="nobordernopadding"><tr class="nocellnopadd">';
// Picto + Ref
print '<td class="nobordernopadding nowrap">';
print '<td class="nobordernopadding">';
if ($line->doc_type == 'customer_invoice' || $line->doc_type == 'supplier_invoice' || $line->doc_type == 'expense_report') {
print $objectstatic->getNomUrl(1, '', 0, 0, '', 0, -1, 1);

View File

@ -198,6 +198,7 @@ function getUrlSondage($id, $admin = false)
} else {
$url = get_server_name().'/public/studs.php?sondage='.$id;
}
$url = '<a href="'.$url.'">'.$url.'</a>';
return $url;
}