Fix nome stampe
This commit is contained in:
parent
50a9711a17
commit
7cd4e5fa26
|
@ -77,7 +77,7 @@ if ($self_edit) {
|
|||
|
||||
<div class="row">
|
||||
<div class="">
|
||||
{[ "type": "select", "label": "'.tr('Collega ad una anagrafica').'", "name": "idanag", "values": "query=SELECT CONCAT(`an_tipianagrafiche`.`idtipoanagrafica`, \'-\', `an_anagrafiche`.`idanagrafica`) AS \'id\', `ragione_sociale` AS \'descrizione\', `descrizione` AS \'optgroup\' FROM `an_tipianagrafiche` INNER JOIN `an_tipianagrafiche_anagrafiche` ON `an_tipianagrafiche`.`idtipoanagrafica`=`an_tipianagrafiche_anagrafiche`.`idtipoanagrafica` INNER JOIN `an_anagrafiche` ON `an_anagrafiche`.`idanagrafica`=`an_tipianagrafiche_anagrafiche`.`idanagrafica` ORDER BY `descrizione` ASC", "value": "'.$id_anagrafica.'" ]}
|
||||
{[ "type": "select", "label": "'.tr('Collega ad una anagrafica').'", "name": "idanag", "values": "query=SELECT CONCAT(`an_tipianagrafiche`.`idtipoanagrafica`, \'-\', `an_anagrafiche`.`idanagrafica`) AS \'id\', `ragione_sociale` AS \'descrizione\', `descrizione` AS \'optgroup\' FROM `an_tipianagrafiche` INNER JOIN `an_tipianagrafiche_anagrafiche` ON `an_tipianagrafiche`.`idtipoanagrafica`=`an_tipianagrafiche_anagrafiche`.`idtipoanagrafica` INNER JOIN `an_anagrafiche` ON `an_anagrafiche`.`idanagrafica`=`an_tipianagrafiche_anagrafiche`.`idanagrafica` WHERE an_anagrafiche.deleted= 0 ORDER BY `descrizione` ASC", "value": "'.$id_anagrafica.'" ]}
|
||||
</div>
|
||||
</div>';
|
||||
} else {
|
||||
|
|
|
@ -4,7 +4,7 @@ include_once __DIR__.'/../../core.php';
|
|||
|
||||
include_once $docroot.'/modules/interventi/modutil.php';
|
||||
|
||||
$report_name = 'intervento_'.$id_record.'.pdf';
|
||||
$report_name = sanitizeFilename('intervento_'.$records[0]['codice'].'.pdf');
|
||||
|
||||
/*
|
||||
Dati intervento
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
include_once __DIR__.'/../../core.php';
|
||||
|
||||
$report_name = 'preventivo_'.$id_record.'.pdf';
|
||||
$report_name = sanitizeFilename('preventivo_'.$records[0]['numero'].'.pdf');
|
||||
|
||||
$autofill = [
|
||||
'count' => 0, // Conteggio delle righe
|
||||
|
|
|
@ -4,7 +4,8 @@ include_once __DIR__.'/../../core.php';
|
|||
|
||||
include_once $docroot.'/modules/interventi/modutil.php';
|
||||
|
||||
$report_name = 'preventivo_'.$id_record.'_cons.pdf';
|
||||
$report_name = sanitizeFilename('preventivo_'.$records[0]['numero'].'_cons.pdf');
|
||||
|
||||
|
||||
echo '
|
||||
<div class="row">
|
||||
|
@ -364,7 +365,7 @@ if (!empty($interventi)) {
|
|||
|
||||
echo '
|
||||
<br><small class="text-muted">'.tr('Intervento num. _NUM_ del _DATE_', [
|
||||
'_NUM_' => $int['id'],
|
||||
'_NUM_' => $int['codice'],
|
||||
'_DATE_' => Translator::dateToLocale($int['inizio']),
|
||||
]).'.</small>';
|
||||
|
||||
|
|
Loading…
Reference in New Issue