Fix minori
This commit is contained in:
parent
dd2966f9fd
commit
b17a5e528d
|
@ -52,7 +52,7 @@ foreach ($righe as $riga) {
|
||||||
// Seriali
|
// Seriali
|
||||||
$seriali = $riga->serials;
|
$seriali = $riga->serials;
|
||||||
if (!empty($seriali)) {
|
if (!empty($seriali)) {
|
||||||
$text = tr('SN').': '.implode($seriali, ', ');
|
$text = tr('SN').': '.implode(', ', $seriali);
|
||||||
echo '
|
echo '
|
||||||
<br><small>'.$text.'</small>';
|
<br><small>'.$text.'</small>';
|
||||||
|
|
||||||
|
|
|
@ -48,6 +48,8 @@ if (!empty($documento['idsede_destinazione'])) {
|
||||||
if (!empty($rsd[0]['provincia'])) {
|
if (!empty($rsd[0]['provincia'])) {
|
||||||
$destinazione .= ' ('.$rsd[0]['provincia'].')';
|
$destinazione .= ' ('.$rsd[0]['provincia'].')';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$settings['header-height'] += 8;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Sostituzioni specifiche
|
// Sostituzioni specifiche
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'header-height' => 80,
|
'header-height' => 67,
|
||||||
'footer-height' => 80,
|
'footer-height' => 80,
|
||||||
];
|
];
|
||||||
|
|
|
@ -52,7 +52,7 @@ foreach ($righe as $riga) {
|
||||||
// Seriali
|
// Seriali
|
||||||
$seriali = $riga->serials;
|
$seriali = $riga->serials;
|
||||||
if (!empty($seriali)) {
|
if (!empty($seriali)) {
|
||||||
$text = tr('SN').': '.implode($seriali, ', ');
|
$text = tr('SN').': '.implode(', ', $seriali);
|
||||||
echo '
|
echo '
|
||||||
<br><small>'.$text.'</small>';
|
<br><small>'.$text.'</small>';
|
||||||
|
|
||||||
|
|
|
@ -89,7 +89,7 @@ foreach ($righe as $riga) {
|
||||||
// Seriali
|
// Seriali
|
||||||
$seriali = $riga->serials;
|
$seriali = $riga->serials;
|
||||||
if (!empty($seriali)) {
|
if (!empty($seriali)) {
|
||||||
$text = tr('SN').': '.implode($seriali, ', ');
|
$text = tr('SN').': '.implode(', ', $seriali);
|
||||||
echo '
|
echo '
|
||||||
<br><small>'.$text.'</small>';
|
<br><small>'.$text.'</small>';
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue