2018-07-03 11:12:32 +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 />.
*/
2018-07-03 11:12:32 +02:00
include_once __DIR__ . '/../../core.php' ;
2018-07-03 14:46:39 +02:00
if ( Update :: isUpdateAvailable () || ! $dbo -> isInstalled ()) {
return ;
}
$has_azienda = $dbo -> fetchNum ( " SELECT `an_anagrafiche`.`idanagrafica` FROM `an_anagrafiche`
LEFT JOIN `an_tipianagrafiche_anagrafiche` ON `an_anagrafiche` . `idanagrafica` = `an_tipianagrafiche_anagrafiche` . `idanagrafica`
LEFT JOIN `an_tipianagrafiche` ON `an_tipianagrafiche` . `idtipoanagrafica` = `an_tipianagrafiche_anagrafiche` . `idtipoanagrafica`
2018-07-17 11:15:31 +02:00
WHERE `an_tipianagrafiche` . `descrizione` = 'Azienda' AND `an_anagrafiche` . `deleted_at` IS NULL " ) != 0;
2018-07-03 14:46:39 +02:00
$has_user = $dbo -> fetchNum ( 'SELECT `id` FROM `zz_users`' ) != 0 ;
2018-07-03 11:12:32 +02:00
2018-07-09 10:44:54 +02:00
$settings = [
2018-09-27 12:54:57 +02:00
'Regime Fiscale' => true ,
2019-04-14 00:19:01 +02:00
'Tipo Cassa Previdenziale' => false ,
2018-09-27 12:54:57 +02:00
'Conto predefinito fatture di vendita' => true ,
'Conto predefinito fatture di acquisto' => true ,
2022-01-29 19:58:06 +01:00
" Ritenuta d'acconto predefinita " => false ,
2018-09-27 12:54:57 +02:00
" Causale ritenuta d'acconto " => false ,
2019-08-02 13:21:21 +02:00
'Valuta' => true ,
2020-02-28 00:22:12 +01:00
'Utilizza prezzi di vendita comprensivi di IVA' => false ,
2018-07-09 10:44:54 +02:00
];
2022-01-15 18:21:48 +01:00
if ( ! empty ( setting ( " Ritenuta d'acconto predefinita " ))) {
2018-09-27 12:54:57 +02:00
$settings [ " Causale ritenuta d'acconto " ] = true ;
}
2018-07-09 10:44:54 +02:00
$has_settings = true ;
2018-09-27 12:54:57 +02:00
foreach ( $settings as $setting => $required ) {
if ( empty ( setting ( $setting )) && $required ) {
2018-07-09 10:44:54 +02:00
$has_settings = false ;
break ;
}
}
if ( $has_azienda && $has_user && $has_settings ) {
2018-07-03 11:12:32 +02:00
return ;
}
$pageTitle = tr ( 'Inizializzazione' );
2020-12-31 16:13:28 +01:00
include_once AppLegacy :: filepath ( 'include|custom|' , 'top.php' );
2018-07-03 11:12:32 +02:00
// Controllo sull'esistenza di nuovi parametri di configurazione
if ( post ( 'action' ) == 'init' ) {
// Azienda predefinita
if ( ! $has_azienda ) {
Filter :: set ( 'post' , 'op' , 'add' );
2021-02-20 13:31:05 +01:00
$id_module = module ( 'Anagrafiche' )[ 'id' ];
2020-09-23 13:36:37 +02:00
include base_dir () . '/modules/anagrafiche/actions.php' ;
2018-07-03 11:12:32 +02:00
// Logo stampe
if ( ! empty ( $_FILES ) && ! empty ( $_FILES [ 'blob' ][ 'name' ])) {
2021-03-08 11:20:04 +01:00
$upload = Uploads :: upload ( $_FILES [ 'blob' ], [
2018-07-03 11:12:32 +02:00
'name' => 'Logo stampe' ,
'id_module' => $id_module ,
'id_record' => $id_record ,
]);
2021-03-08 11:20:04 +01:00
Settings :: setValue ( 'Logo stampe' , $upload -> filename );
2018-07-03 11:12:32 +02:00
}
}
// Utente amministratore
if ( ! $has_user ) {
$admin = $dbo -> selectOne ( 'zz_groups' , [ 'id' ], [
'nome' => 'Amministratori' ,
]);
2019-02-21 15:41:27 +01:00
// Creazione utente Amministratore
2018-07-03 11:12:32 +02:00
$dbo -> insert ( 'zz_users' , [
'username' => post ( 'admin_username' ),
2020-12-31 16:13:28 +01:00
'password' => auth () -> hashPassword ( post ( 'admin_password' )),
2018-07-03 11:12:32 +02:00
'email' => post ( 'admin_email' ),
'idgruppo' => $admin [ 'id' ],
'idanagrafica' => isset ( $id_record ) ? $id_record : 0 ,
'enabled' => 1 ,
]);
2019-02-21 15:41:27 +01:00
// Creazione token API per l'amministratore
$dbo -> insert ( 'zz_tokens' , [
'id_utente' => $dbo -> lastInsertedID (),
'token' => secure_random_string (),
]);
2018-07-03 11:12:32 +02:00
}
2018-07-09 10:44:54 +02:00
if ( ! $has_settings ) {
2018-09-27 12:54:57 +02:00
foreach ( $settings as $setting => $required ) {
2018-07-09 10:44:54 +02:00
$setting = Settings :: get ( $setting );
2018-09-27 15:50:03 +02:00
$value = post ( 'setting' )[ $setting [ 'id' ]];
if ( ! empty ( $value )) {
Settings :: setValue ( $setting [ 'nome' ], $value );
}
2018-07-09 10:44:54 +02:00
}
}
2020-12-31 16:13:28 +01:00
redirect_legacy ( base_url (), 'js' );
2021-02-19 11:52:34 +01:00
throw new \App\Exceptions\LegacyExitException ();
2018-07-03 11:12:32 +02:00
}
2020-12-31 16:13:28 +01:00
$img = AppLegacy :: getPaths ()[ 'img' ];
2018-07-03 11:12:32 +02:00
// Visualizzazione dell'interfaccia di impostazione iniziale, nel caso il file di configurazione sia mancante oppure i paramentri non siano sufficienti
echo '
< div class = " box box-center-large box-warning " >
< div class = " box-header with-border text-center " >
2021-08-06 10:41:53 +02:00
< img src = " '. $img .'/logo_completo.png " class = " logo-image " alt = " '.tr('OSM Logo').' " >
2018-07-03 11:12:32 +02:00
</ div >
< div class = " box-body " >
< form action = " " method = " post " id = " init-form " enctype = " multipart/form-data " >
< input type = " hidden " name = " action " value = " init " > ' ;
if ( ! $has_user ) {
echo '
< div class = " panel panel-primary " >
< div class = " panel-heading " >
< h3 class = " panel-title " > '.tr(' Amministrazione ').' </ h3 >
</ div >
< div class = " panel-body " >
< div class = " row " >
< div class = " col-md-6 " >
2020-09-23 11:47:59 +02:00
{[ " type " : " text " , " label " : " '.tr('Username').' " , " name " : " admin_username " , " value " : " " , " placeholder " : " '.tr( " Digita l 'username dell' amministratore " ).' " , " required " : 1 ]}
2018-07-03 11:12:32 +02:00
</ div >
< div class = " col-md-6 " >
2020-09-23 11:47:59 +02:00
{[ " type " : " password " , " label " : " '.tr('Password').' " , " id " : " password " , " name " : " admin_password " , " value " : " " , " placeholder " : " '.tr( " Digita la password dell 'amministratore").' " , " required " : 1, " strength " : " #config" ]}
2018-07-03 11:12:32 +02:00
</ div >
< div class = " col-md-6 " >
2020-09-23 11:47:59 +02:00
{[ " type " : " email " , " label " : " '.tr('Email').' " , " name " : " admin_email " , " value " : " " , " placeholder " : " '.tr( " Digita l 'indirizzo email dell' amministratore " ).' " , " required " : 1 ]}
2018-07-03 11:12:32 +02:00
</ div >
</ div >
</ div >
</ div > ' ;
}
if ( ! $has_azienda ) {
echo '
< div class = " panel panel-primary " >
< div class = " panel-heading " >
< h3 class = " panel-title " > '.tr(' Azienda predefinita ').' </ h3 >
</ div >
2019-07-08 12:41:37 +02:00
< div class = " panel-body " id = " bs-popup " > ' ;
2018-07-03 11:12:32 +02:00
$idtipoanagrafica = $dbo -> fetchArray ( " SELECT idtipoanagrafica FROM an_tipianagrafiche WHERE descrizione='Azienda' " )[ 0 ][ 'idtipoanagrafica' ];
$readonly_tipo = true ;
ob_start ();
2020-09-23 13:36:37 +02:00
include base_dir () . '/modules/anagrafiche/add.php' ;
2018-07-03 11:12:32 +02:00
$anagrafica = ob_get_clean ();
echo str_replace ( '</form>' , '' , $anagrafica );
echo '
< div class = " box box-success collapsed-box " >
< div class = " box-header with-border " >
< h3 class = " box-title " > '.tr(' Logo stampe ').' </ 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 >
< div class = " box-body collapse " >
< div class = " col-md-12 " >
{[ " type " : " file " , " placeholder " : " '.tr('File').' " , " name " : " blob " ]}
</ div >
2020-02-17 09:44:09 +01:00
2019-01-03 12:57:17 +01:00
< p >& nbsp ; </ p >< div class = " col-md-12 alert alert-info text-center " > '.tr(' Per impostare il logo delle stampe , caricare un file " .jpg " . Risoluzione consigliata 302 x111 pixel ').' .</ div >
2018-07-03 11:12:32 +02:00
</ div >
</ div > ' ;
echo '
</ div >
</ div > ' ;
}
2018-07-09 10:44:54 +02:00
if ( ! $has_settings ) {
echo '
< div class = " panel panel-primary " >
< div class = " panel-heading " >
< h3 class = " panel-title " > '.tr(' Impostazioni di base ').' </ h3 >
</ div >
2020-03-03 22:59:18 +01:00
< div class = " panel-body " > ' ;
$i = 0 ;
2018-09-27 12:54:57 +02:00
foreach ( $settings as $setting => $required ) {
2018-09-27 15:50:03 +02:00
if ( empty ( setting ( $setting ))) {
2020-03-04 18:44:07 +01:00
if ( $i % 2 == 0 or $i == 0 ) {
echo ' <div class="row">' ;
}
2018-09-27 15:50:03 +02:00
echo '
2019-07-22 18:54:32 +02:00
< div class = " col-md-6 " >
'.Settings::input($setting, $required).'
</ div > ' ;
2020-03-04 18:44:07 +01:00
++ $i ;
if ( $i % 2 == 0 or $i == sizeof ( $settings )) {
echo ' </div>' ;
}
2018-09-27 15:50:03 +02:00
}
2018-07-09 10:44:54 +02:00
}
2020-03-03 22:59:18 +01:00
echo ' </ div >
2018-07-09 10:44:54 +02:00
</ div > ' ;
}
2018-07-03 11:12:32 +02:00
echo '
<!-- PULSANTI -->
< div class = " row " >
< div class = " col-md-4 " >
< span >*< small >< small > '.tr(' Campi obbligatori ').' </ small ></ small ></ span >
</ div >
< div class = " col-md-4 text-right " >
< button type = " submit " id = " config " class = " btn btn-success btn-block " >
< i class = " fa fa-cog " ></ i > '.tr(' Configura ').'
</ button >
</ div >
</ div >
</ form >
</ div >
</ div > ' ;
echo '
< script >
$ ( document ) . ready ( function (){
$ ( " button[type=submit] " ) . not ( " #config " ) . remove ();
});
</ script >
2020-10-17 15:49:45 +02:00
2019-07-26 18:05:19 +02:00
< script > $ ( document ) . ready ( init ) </ script > ' ;
2018-07-03 11:12:32 +02:00
2020-12-31 16:13:28 +01:00
include_once AppLegacy :: filepath ( 'include|custom|' , 'bottom.php' );
2021-02-19 11:52:34 +01:00
throw new \App\Exceptions\LegacyExitException ();