2017-08-04 16:28:16 +02: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 />.
*/
2017-08-04 16:28:16 +02:00
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 " >
2020-07-03 15:18:57 +02:00
{[ " type " : " text " , " label " : " '.tr('Denominazione').' " , " name " : " ragione_sociale " , " id " : " ragione_sociale_add " , " required " : 1 ]}
2017-08-04 16:28:16 +02:00
</ div >
< div class = " col-md-6 " >
2021-02-23 15:47:25 +01:00
{[ " type " : " select " , " label " : " '.tr('Tipo di anagrafica').' " , " name " : " idtipoanagrafica[] " , " id " : " idtipoanagrafica_add " , " 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(get(' readonly_tipo ')) ? 1 : 0).' ]}
2017-08-04 16:28:16 +02:00
</ div >
2019-01-04 19:23:28 +01:00
</ div >
2019-01-05 09:53:17 +01:00
2019-01-04 19:23:28 +01:00
< div class = " row " >
< div class = " col-md-6 " >
2021-02-23 15:47:25 +01:00
{[ " type " : " text " , " label " : " '.tr('Cognome').' " , " name " : " cognome " , " id " : " cognome_add " ]}
2019-01-04 19:23:28 +01:00
</ div >
2020-02-17 18:43:49 +01:00
2019-01-04 19:23:28 +01:00
< div class = " col-md-6 " >
2021-02-23 15:47:25 +01:00
{[ " type " : " text " , " label " : " '.tr('Nome').' " , " name " : " nome " , " id " : " nome_add " ]}
2019-01-04 19:23:28 +01:00
</ div >
2018-04-17 23:41:56 +02:00
</ div > ' ;
2019-01-05 09:53:17 +01: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 " >
2021-02-01 12:07:38 +01:00
{[ " type " : " text " , " label " : " '.tr('Partita IVA').' " , " maxlength " : 16 , " name " : " piva " , " class " : " text-center alphanumeric-mask " , " validation " : " partita_iva " ]}
2018-04-17 23:41:56 +02:00
</ div >
< div class = " col-md-4 " >
2019-07-05 12:28:19 +02:00
{[ " type " : " text " , " label " : " '.tr('Codice fiscale').' " , " maxlength " : 16 , " name " : " codice_fiscale " , " class " : " text-center alphanumeric-mask " , " validation " : " codice_fiscale " ]}
2018-04-17 23:41:56 +02:00
</ div >
2020-02-17 18:43:49 +01:00
2018-04-17 23:41:56 +02:00
< div class = " col-md-4 " >
2021-02-23 15:47:25 +01:00
{[ " type " : " select " , " label " : " '.tr('Tipologia').' " , " name " : " tipo " , " id " : " tipo_add " , " values " : " list= \" \" : \" '.tr('Non specificato').' \" , \" Azienda \" : \" '.tr('Azienda').' \" , \" Privato \" : \" '.tr('Privato').' \" , \" Ente pubblico \" : \" '.tr('Ente pubblico').' \" " ]}
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 " >
2021-02-01 12:07:38 +01:00
{[ " type " : " text " , " label " : " '.tr('C.A.P.').' " , " name " : " cap " , " maxlength " : 6 , " 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 " >
2020-02-17 18:43:49 +01:00
2019-03-21 11:39:33 +01:00
< div class = " col-md-4 " >
2021-02-23 15:47:25 +01:00
{[ " type " : " select " , " label " : " '.tr('Nazione').' " , " name " : " id_nazione " , " id " : " id_nazione_add " , " values " : " query=SELECT id AS id, CONCAT_WS( \ ' - \ ', iso2, nome) AS descrizione FROM an_nazioni ORDER BY CASE WHEN iso2= \ 'IT \ ' THEN -1 ELSE iso2 END " ]}
2019-03-21 11:39:33 +01:00
</ div >
2020-02-17 18:43:49 +01:00
2018-04-17 23:41:56 +02:00
< 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 >
2019-03-21 11:39:33 +01:00
</ div >
2020-02-17 18:43:49 +01:00
2019-03-21 11:39:33 +01:00
< div class = " row " >
2020-02-17 18:43:49 +01:00
2018-04-17 23:41:56 +02:00
< 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 >
2020-02-17 18:43:49 +01:00
2019-03-21 11:39:33 +01:00
< div class = " col-md-4 " >
{[ " type " : " text " , " label " : " '.tr('PEC').' " , " name " : " pec " , " class " : " email-mask " , " placeholder " : " pec@dominio.ext " , " icon-before " : " <i class= \ 'fa fa-envelope-o \ '></i> " ]}
</ div > ' ;
2019-04-04 17:30:58 +02:00
$help_codice_destinatario = tr ( " Per impostare il codice specificare prima '<b>Tipologia</b>' e '<b>Nazione</b>' dell'anagrafica " ) . ':<br><br><ul><li>' . tr ( 'Ente pubblico (B2G/PA) - Codice Univoco Ufficio (www.indicepa.gov.it), 6 caratteri' ) . '</li><li>' . tr ( 'Azienda (B2B) - Codice Destinatario, 7 caratteri' ) . '</li><li>' . tr ( 'Privato (B2C) - viene utilizzato il Codice Fiscale' ) . '</li>' . '</ul>Se non si conosce il codice destinatario lasciare vuoto il campo. Verrà applicato in automatico quello previsto di default dal sistema (\'0000000\', \'999999\', \'XXXXXXX\').' ;
2019-03-21 11:39:33 +01:00
echo '
< div class = " col-md-4 " >
2021-02-23 15:47:25 +01:00
{[ " type " : " text " , " label " : " '.tr('Codice destinatario').' " , " name " : " codice_destinatario " , " class " : " text-center text-uppercase alphanumeric-mask " , " maxlength " : " 7 " , " extra " : " " , " help " : " '.tr( $help_codice_destinatario ).' " , " readonly " : " 1 " ]}
2019-03-21 11:39:33 +01:00
</ div >
</ div >
2018-04-17 23:41:56 +02:00
</ div >
</ div > ' ;
2020-02-17 18:43:49 +01: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 > ' ;
2019-01-05 09:53:17 +01:00
?>
< script >
2021-02-23 15:47:25 +01:00
var nome = input ( " nome " );
var cognome = input ( " cognome " );
var ragione_sociale = input ( " ragione_sociale " );
var id_nazione = input ( " id_nazione " );
2020-07-03 15:18:57 +02:00
2019-01-05 09:53:17 +01:00
// Abilito solo ragione sociale oppure solo nome-cognome in base a cosa compilo
2021-02-23 15:47:25 +01:00
nome . on ( " keyup " , function () {
if ( nome . get ()) {
ragione_sociale . disable ();
} else if ( ! cognome . get ()) {
ragione_sociale . enable ();
2019-01-05 09:53:17 +01:00
}
});
2021-02-23 15:47:25 +01:00
cognome . on ( " keyup " , function () {
if ( cognome . get ()) {
ragione_sociale . disable ();
} else if ( ! nome . get ()) {
ragione_sociale . enable ();
2020-07-03 15:18:57 +02:00
}
});
2021-02-23 15:47:25 +01:00
ragione_sociale . on ( " keyup " , function () {
let disable = ragione_sociale . get () !== " " ;
nome . setDisabled ( disable );
cognome . setDisabled ( disable );
2019-01-05 09:53:17 +01:00
});
2019-10-04 13:26:47 +02:00
2021-02-23 15:47:25 +01:00
id_nazione . change ( function () {
if ( id_nazione . getData () . descrizione === 'IT - Italia' ){
2021-01-04 16:31:35 +01:00
input ( " codice_destinatario " ) . enable ();
} else {
input ( " codice_destinatario " ) . disable ();
2019-10-04 13:26:47 +02:00
}
});
2019-04-09 17:58:42 +02:00
</ script >