Fix #911
This commit is contained in:
parent
9910852113
commit
36c70ea16d
|
@ -24,7 +24,7 @@ $righe = $documento->getRighe();
|
||||||
|
|
||||||
$has_image = $righe->search(function ($item) {
|
$has_image = $righe->search(function ($item) {
|
||||||
return !empty($item->articolo->immagine);
|
return !empty($item->articolo->immagine);
|
||||||
});
|
}) !== false;
|
||||||
|
|
||||||
if ($has_image) {
|
if ($has_image) {
|
||||||
$columns = 7;
|
$columns = 7;
|
||||||
|
@ -81,7 +81,7 @@ foreach ($righe as $riga) {
|
||||||
</td>';
|
</td>';
|
||||||
|
|
||||||
if ($has_image) {
|
if ($has_image) {
|
||||||
if ($riga->isArticolo()) {
|
if ($riga->isArticolo() && !empty($riga->articolo->image)) {
|
||||||
echo '
|
echo '
|
||||||
<td align="center">
|
<td align="center">
|
||||||
<img src="'.$riga->articolo->image.'" style="max-height: 80px; max-width:120px">
|
<img src="'.$riga->articolo->image.'" style="max-height: 80px; max-width:120px">
|
||||||
|
|
Loading…
Reference in New Issue