2017-08-04 16:28:16 +02:00
< ? php
include_once __DIR__ . '/../../core.php' ;
if ( get ( 'tipoanagrafica' ) != '' ) {
$rs = $dbo -> fetchArray ( 'SELECT idtipoanagrafica FROM an_tipianagrafiche WHERE descrizione=' . prepare ( get ( 'tipoanagrafica' )));
$idtipoanagrafica = $rs [ 0 ][ 'idtipoanagrafica' ];
}
echo '
2018-02-23 16:04:50 +01:00
< form action = " " method = " post " id = " add-form " >
2017-08-04 16:28:16 +02:00
< input type = " hidden " name = " op " value = " add " >
< input type = " hidden " name = " backto " value = " record-edit " >
< div class = " row " >
< div class = " col-md-6 " >
2018-02-23 15:39:43 +01:00
{[ " type " : " text " , " label " : " '.tr('Ragione sociale').' " , " name " : " ragione_sociale " , " required " : 1 ]}
2017-08-04 16:28:16 +02:00
</ div >
< div class = " col-md-6 " >
2018-07-17 08:05:19 +02:00
{[ " type " : " select " , " label " : " '.tr('Tipo di anagrafica').' " , " name " : " idtipoanagrafica[] " , " multiple " : " 1 " , " required " : 1 , " values " : " query=SELECT idtipoanagrafica AS id, descrizione FROM an_tipianagrafiche WHERE idtipoanagrafica NOT IN (SELECT DISTINCT(x.idtipoanagrafica) FROM an_tipianagrafiche_anagrafiche x INNER JOIN an_tipianagrafiche t ON x.idtipoanagrafica = t.idtipoanagrafica INNER JOIN an_anagrafiche ON an_anagrafiche.idanagrafica = x.idanagrafica WHERE t.descrizione = \ 'Azienda \ ' AND deleted_at IS NULL) ORDER BY descrizione " , " value " : " '.(isset( $idtipoanagrafica ) ? $idtipoanagrafica : null).' " , " readonly " : '.(!empty($readonly_tipo) ? 1 : 0).' ]}
2017-08-04 16:28:16 +02:00
</ div >
2018-04-17 23:41:56 +02:00
</ div > ' ;
2017-08-04 16:28:16 +02:00
2018-07-03 11:12:32 +02:00
echo '
< div class = " box box-info collapsed-box " >
2018-04-17 23:41:56 +02:00
< div class = " box-header with-border " >
< h3 class = " box-title " > '.tr(' Dati anagrafici ').' </ h3 >
< div class = " box-tools pull-right " >
< button type = " button " class = " btn btn-box-tool " data - widget = " collapse " >
< i class = " fa fa-plus " ></ i >
</ button >
</ div >
</ div >
2018-11-23 12:43:45 +01:00
< div class = " box-body " >
2018-04-17 23:41:56 +02:00
< div class = " row " >
< div class = " col-md-4 " >
2018-07-03 12:28:38 +02:00
{[ " type " : " text " , " label " : " '.tr('Partita IVA').' " , " maxlength " : 13 , " name " : " piva " , " class " : " text-center alphanumeric-mask " ]}
2018-04-17 23:41:56 +02:00
</ div >
< div class = " col-md-4 " >
2018-07-03 12:28:38 +02:00
{[ " type " : " text " , " label " : " '.tr('Codice fiscale').' " , " maxlength " : 16 , " name " : " codice_fiscale " , " class " : " text-center alphanumeric-mask " ]}
2018-04-17 23:41:56 +02:00
</ div >
< div class = " col-md-4 " >
2018-07-03 12:28:38 +02:00
{[ " type " : " select " , " label " : " '.tr('Relazione').' " , " name " : " idrelazione " , " values " : " query=SELECT id, descrizione, colore AS _bgcolor_ FROM an_relazioni ORDER BY descrizione " ]}
2018-04-17 23:41:56 +02:00
</ div >
</ div >
< div class = " row " >
< div class = " col-md-4 " >
2018-07-03 12:28:38 +02:00
{[ " type " : " text " , " label " : " '.tr('Indirizzo').' " , " name " : " indirizzo " ]}
2018-04-17 23:41:56 +02:00
</ div >
< div class = " col-md-2 " >
2018-07-03 12:28:38 +02:00
{[ " type " : " text " , " label " : " '.tr('C.A.P.').' " , " name " : " cap " , " maxlength " : 5 , " class " : " text-center " ]}
2018-04-17 23:41:56 +02:00
</ div >
< div class = " col-md-4 " >
2018-07-03 12:28:38 +02:00
{[ " type " : " text " , " label " : " '.tr('Città').' " , " name " : " citta " , " class " : " text-center " ]}
2018-04-17 23:41:56 +02:00
</ div >
< div class = " col-md-2 " >
2018-11-29 14:46:31 +01:00
{[ " type " : " text " , " label " : " '.tr('Provincia').' " , " name " : " provincia " , " maxlength " : 2 , " class " : " text-center " , " extra " : " onkeyup= \" this.value = this.value.toUpperCase(); \" " ]}
2018-04-17 23:41:56 +02:00
</ div >
</ div >
< div class = " row " >
< div class = " col-md-4 " >
2018-07-03 12:28:38 +02:00
{[ " type " : " text " , " label " : " '.tr('Telefono').' " , " name " : " telefono " , " class " : " text-center " , " icon-before " : " <i class= \" fa fa-phone \" ></i> " ]}
2018-04-17 23:41:56 +02:00
</ div >
< div class = " col-md-4 " >
2018-07-03 12:28:38 +02:00
{[ " type " : " text " , " label " : " '.tr('Cellulare').' " , " name " : " cellulare " , " class " : " text-center " , " icon-before " : " <i class= \" fa fa-mobile \" ></i> " ]}
2018-04-17 23:41:56 +02:00
</ div >
< div class = " col-md-4 " >
2018-07-03 12:28:38 +02:00
{[ " type " : " text " , " label " : " '.tr('Email').' " , " name " : " email " , " class " : " email-mask " , " placeholder " : " casella@dominio.ext " , " icon-before " : " <i class= \" fa fa-envelope \" ></i> " ]}
2018-04-17 23:41:56 +02:00
</ div >
</ div >
</ div >
</ div > ' ;
2018-05-14 15:40:17 +02:00
echo
' < div class = " row " >
2017-08-04 16:28:16 +02:00
< div class = " col-md-12 text-right " >
2018-02-18 19:53:23 +01:00
< button type = " submit " class = " btn btn-primary " >< i class = " fa fa-plus " ></ i > '.tr(' Aggiungi ').' </ button >
2017-08-04 16:28:16 +02:00
</ div >
</ div >
</ form > ' ;