2022-05-13 13:24:03 +02:00
< ? php
/*
* OpenSTAManager : il software gestionale open source per l ' assistenza tecnica e la fatturazione
* Copyright ( C ) DevCode s . r . l .
*
* 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 />.
*/
include_once __DIR__ . '/../../core.php' ;
use Carbon\Carbon ;
use Modules\Fatture\Fattura ;
2022-05-26 15:45:49 +02:00
use Plugins\ExportFE\Interaction ;
2022-06-27 23:50:15 +02:00
use Util\XML ;
2022-05-13 13:24:03 +02:00
2022-05-26 15:45:49 +02:00
$services_enable = Interaction :: isEnabled ();
if ( $module -> name == 'Fatture di vendita' && $services_enable ) {
2022-05-13 13:24:03 +02:00
$documenti_scarto = [];
$documenti_invio = [];
$codici_scarto = [ 'EC02' , 'ERR' , 'ERVAL' , 'NS' ];
$codici_invio = [ 'GEN' , 'QUEUE' ];
$data_limite = ( new Carbon ()) -> subMonths ( 6 );
$data_limite_invio = ( new Carbon ()) -> subDays ( 10 );
2022-05-31 17:54:17 +02:00
$data_setting = Carbon :: createFromFormat ( 'd/m/Y' , setting ( 'Data inizio controlli su stati FE' )) -> format ( 'Y-m-d' );
2022-05-13 13:24:03 +02:00
2022-05-31 17:54:17 +02:00
$documenti = Fattura :: where ( 'data' , '>' , $data_limite ) -> where ( 'data' , '>' , $data_setting ) -> whereIn ( 'codice_stato_fe' , [ 'EC02' , 'ERR' , 'ERVAL' , 'NS' , 'GEN' , 'QUEUE' ]) -> get ();
2022-06-27 23:50:15 +02:00
2022-05-13 13:24:03 +02:00
foreach ( $documenti as $documento ) {
2022-06-27 23:50:15 +02:00
2022-05-13 13:24:03 +02:00
$stato_fe = $database -> fetchOne ( 'SELECT descrizione, icon FROM fe_stati_documento WHERE codice = ' . prepare ( $documento -> codice_stato_fe ));
2022-06-27 23:50:15 +02:00
2022-05-13 13:24:03 +02:00
if ( in_array ( $documento -> codice_stato_fe , $codici_scarto )) {
2022-06-27 23:50:15 +02:00
// In caso di NS verifico che non sia semplicemente un codice 00404 (Fattura duplicata)
if ( $documento -> codice_stato_fe == 'NS' ){
$ricevuta_principale = $documento -> getRicevutaPrincipale ();
if ( ! empty ( $ricevuta_principale )) {
$contenuto_ricevuta = XML :: readFile ( $ricevuta_principale -> filepath );
$lista_errori = $contenuto_ricevuta [ 'ListaErrori' ];
if ( $lista_errori ) {
$lista_errori = $lista_errori [ 0 ] ? $lista_errori : [ $lista_errori ];
$errore = $lista_errori [ 0 ][ 'Errore' ];
if ( $errore [ 'Codice' ] == '00404' ){
return ;
}
}
}
}
2022-05-13 13:24:03 +02:00
$documenti_scarto [] = Modules :: link ( 'Fatture di vendita' , $documento -> id , tr ( '_ICON_ Fattura numero _NUM_ del _DATE_ : <b>_STATO_</b>' , [
'_ICON_' => '<i class="' . $stato_fe [ 'icon' ] . '"></i>' ,
'_NUM_' => $documento -> numero_esterno ,
'_DATE_' => dateFormat ( $documento -> data ),
'_STATO_' => $stato_fe [ 'descrizione' ],
]));
2022-11-03 10:47:42 +01:00
$show_avviso = $show_avviso ? : ( $documento -> data_stato_fe < ( new Carbon ()) -> subDays ( 4 ) ? 1 : 0 );
2022-06-27 23:50:15 +02:00
2022-05-13 13:24:03 +02:00
} elseif ( in_array ( $documento -> codice_stato_fe , $codici_invio )) {
2022-05-17 13:19:01 +02:00
if ( $documento -> data <= $data_limite_invio ) {
2022-05-13 13:24:03 +02:00
$documenti_invio [] = Modules :: link ( 'Fatture di vendita' , $documento -> id , tr ( '_ICON_ Fattura numero _NUM_ del _DATE_ : <b>_STATO_</b>' , [
'_ICON_' => '<i class="' . $stato_fe [ 'icon' ] . '"></i>' ,
'_NUM_' => $documento -> numero_esterno ,
'_DATE_' => dateFormat ( $documento -> data ),
'_STATO_' => $stato_fe [ 'descrizione' ],
]));
}
}
}
2022-06-27 23:17:47 +02:00
//Controllo già presente sul plugin Ricevute FE
2022-05-13 13:24:03 +02:00
if ( sizeof ( $documenti_scarto ) > 0 ) {
echo '
< div class = " alert alert-danger " >
2022-06-27 23:17:47 +02:00
< i class = " fa fa-warning " ></ i > '.tr("<b>ATTENZIONE:</b> le seguenti fatture riscontrano problemi").' :< ul > ' ;
2022-05-13 13:24:03 +02:00
foreach ( $documenti_scarto as $documento ) {
echo '
< li >< b > '.$documento.' </ b ></ li > ' ;
}
echo '
2022-11-03 10:47:42 +01:00
</ ul > ' ;
if ( $show_avviso ) {
echo tr ( 'Cosa fare in caso di fattura elettronica scartata? Dovrai correggere la fattura e inviarla di nuovo al SdI <b>entro 5 giorni dalla data di notifica dello scarto</b>, mantenendo lo stesso numero e data del documento.' );
}
echo '
2022-05-13 13:24:03 +02:00
</ div > ' ;
}
if ( sizeof ( $documenti_invio ) > 0 ) {
echo '
< div class = " alert alert-warning " >
< i class = " fa fa-clock-o " ></ i > '.tr("Le seguenti fatture sono in attesa di essere inviate").' :< ul > ' ;
foreach ( $documenti_invio as $documento ) {
echo '
< li >< b > '.$documento.' </ b ></ li > ' ;
}
echo '
</ ul >
</ div > ' ;
}
}