2020-02-24 15:37:27 +01:00
< ? php
2020-09-07 15:04:06 +02:00
/*
* OpenSTAManager : il software gestionale open source per l ' assistenza tecnica e la fatturazione
2021-01-20 15:08:51 +01:00
* Copyright ( C ) DevCode s . r . l .
2020-09-07 15:04:06 +02:00
*
* This program is free software : you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation , either version 3 of the License , or
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program . If not , see < https :// www . gnu . org / licenses />.
*/
2020-02-24 15:37:27 +01:00
include_once __DIR__ . '/../../core.php' ;
2021-05-18 13:04:42 +02:00
use Models\PrintTemplate ;
2020-02-24 15:37:27 +01:00
?> <form action="" method="post" id="edit-form">
< input type = " hidden " name = " backto " value = " record-edit " >
< input type = " hidden " name = " op " value = " update " >
< input type = " hidden " name = " id_record " value = " <?php echo $id_record ; ?> " >
<!-- DATI SEGMENTO -->
< div class = " panel panel-primary " >
< div class = " panel-heading " >
< h3 class = " panel-title " >< ? php echo tr ( 'Informazioni della stampa' ); ?> </h3>
</ div >
< div class = " panel-body " >
< div class = " row " >
< div class = " col-md-6 " >
{[ " type " : " text " , " label " : " <?php echo tr('Titolo'); ?> " , " name " : " title " , " required " : 1 , " value " : " $title $ " ]}
</ div >
< div class = " col-md-6 " >
{[ " type " : " text " , " label " : " <?php echo tr('Nome del file'); ?> " , " name " : " filename " , " required " : 1 , " value " : " $filename $ " ]}
</ div >
2021-05-18 12:34:22 +02:00
2021-09-02 16:09:07 +02:00
2021-05-18 12:34:22 +02:00
2020-02-24 15:37:27 +01:00
</ div >
2021-05-18 12:34:22 +02:00
< div class = " row " >
< div class = " col-md-3 " >
{[ " type " : " select " , " label " : " <?php echo tr('Modulo'); ?> " , " name " : " module " , " required " : 1 , " values " : " query=SELECT id, name AS descrizione FROM zz_modules WHERE ( enabled = 1 AND options != 'custom' ) OR id = <?php echo $record['id_module'] ; ?> ORDER BY name ASC " , " value " : " <?php echo $record['id_module'] ; ?> " , " disabled " : " 1 " ]}
</ div >
< div class = " col-md-3 " >
{[ " type " : " checkbox " , " label " : " <?php echo tr('Attiva'); ?> " , " name " : " enabled " , " value " : " $enabled $ " , " disabled " : " 1 " ]}
</ div >
< div class = " col-md-3 " >
{[ " type " : " number " , " label " : " <?php echo tr('Ordine'); ?> " , " name " : " order " , " required " : 0 , " value " : " $order $ " , " decimals " : 0 ]}
</ div >
2021-05-18 13:04:42 +02:00
< ? php
2021-09-02 16:09:07 +02:00
$stampa_predefinita = PrintTemplate :: where ( 'predefined' , true )
-> where ( 'id_module' , $record [ 'id_module' ])
-> orderBy ( 'id' )
-> first ();
if ( ! empty ( $stampa_predefinita )) {
$nome_stampa_predefinita = $stampa_predefinita -> name ;
} else {
$nome_stampa_predefinita = 'Nessuna' ;
2021-05-18 13:04:42 +02:00
}
?>
2021-09-02 16:09:07 +02:00
2021-05-18 12:34:22 +02:00
< div class = " col-md-3 " >
2021-09-02 16:09:07 +02:00
{[ " type " : " checkbox " , " label " : " <?php echo tr('Predefinita'); ?> " , " help " : " <?php echo tr('Attiva per impostare questa stampa come predefinita. Attualmente la stampa predefinita per questo modulo è: '. $nome_stampa_predefinita ); ?> " , " name " : " predefined " , " value " : " $predefined $ " , " disabled " : " <?php echo intval( $record['predefined'] ); ?> " ]}
2021-05-18 12:34:22 +02:00
</ div >
</ div >
2020-02-24 15:37:27 +01:00
< div class = " row " >
< div class = " col-md-12 " >
{[ " type " : " textarea " , " label " : " <?php echo tr('Opzioni'); ?> " , " name " : " options " , " value " : " $options $ " , " help " : " <?php echo tr('Impostazioni personalizzabili della stampa, in formato JSON'); ?> " ]}
</ div >
</ div >
</ div >
</ div >
</ form >
2020-03-19 13:35:04 +01:00
< ? php
// Variabili utilizzabili
2021-05-25 09:40:35 +02:00
$module = Modules :: get ( $record [ 'id_module' ]);
2021-03-29 09:11:17 +02:00
$variables = $module -> getPlaceholders ( $id_record );
2020-03-19 13:35:04 +01:00
echo '
<!-- Istruzioni per il contenuto -->
< div class = " box box-info " >
< div class = " box-header " >
< h3 class = " box-title " > '.tr(' Variabili ').' </ h3 >
</ div >
< div class = " box-body " > ' ;
if ( ! empty ( $variables )) {
echo '
2020-03-31 20:34:31 +02:00
< p > '.tr(' Puoi utilizzare le seguenti variabili per generare il nome del file ').' :</ p >
2020-03-19 13:35:04 +01:00
< ul > ' ;
foreach ( $variables as $variable => $value ) {
echo '
2021-09-17 14:34:10 +02:00
< li >< code > '.$variable.' </ code ></ li > ' ;
2020-03-19 13:35:04 +01:00
}
echo '
</ ul > ' ;
} else {
echo '
< p >< i class = " fa fa-warning " ></ i > '.tr(' Non sono state definite variabili da utilizzare nel template ').' .</ p > ' ;
}
echo '
</ div >
</ div >
< hr > ' ;
2020-09-07 15:04:06 +02:00
?>