487 lines
18 KiB
PHP
Executable File
487 lines
18 KiB
PHP
Executable File
<?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 Modules\Aggiornamenti\Controlli\DatiFattureElettroniche;
|
|
use Modules\Fatture\Export\CSV;
|
|
use Modules\Fatture\Fattura;
|
|
use Plugins\ExportFE\FatturaElettronica;
|
|
use Plugins\ExportFE\Interaction;
|
|
use Util\XML;
|
|
use Util\Zip;
|
|
|
|
switch (post('op')) {
|
|
case 'export-bulk':
|
|
$dir = base_dir().'/files/export_fatture/';
|
|
directory($dir.'tmp/');
|
|
|
|
$dir = slashes($dir);
|
|
$zip = slashes($dir.'fatture_'.time().'.zip');
|
|
|
|
// Rimozione dei contenuti precedenti
|
|
$files = glob($dir.'/*.zip');
|
|
foreach ($files as $file) {
|
|
delete($file);
|
|
}
|
|
|
|
// Selezione delle fatture da stampare
|
|
$fatture = $dbo->fetchArray('SELECT co_documenti.id, numero_esterno, data, ragione_sociale, co_tipidocumento.descrizione FROM co_documenti INNER JOIN an_anagrafiche ON co_documenti.idanagrafica=an_anagrafiche.idanagrafica INNER JOIN co_tipidocumento ON co_documenti.idtipodocumento=co_tipidocumento.id WHERE co_documenti.id IN('.implode(',', $id_records).')');
|
|
|
|
if (!empty($fatture)) {
|
|
foreach ($fatture as $r) {
|
|
$print = Prints::getModulePredefinedPrint($id_module);
|
|
|
|
Prints::render($print['id'], $r['id'], $dir.'tmp/');
|
|
}
|
|
|
|
// Creazione zip
|
|
if (extension_loaded('zip')) {
|
|
Zip::create($dir.'tmp/', $zip);
|
|
|
|
// Invio al browser dello zip
|
|
download($zip);
|
|
|
|
// Rimozione dei contenuti
|
|
delete($dir.'tmp/');
|
|
}
|
|
}
|
|
|
|
break;
|
|
|
|
case 'exportFE-bulk':
|
|
$dir = base_dir().'/files/export_fatture/';
|
|
directory($dir.'tmp/');
|
|
|
|
$dir = slashes($dir);
|
|
$zip = slashes($dir.'fattureFE_'.time().'.zip');
|
|
|
|
// Rimozione dei contenuti precedenti
|
|
$files = glob($dir.'/*.zip');
|
|
foreach ($files as $file) {
|
|
delete($file);
|
|
}
|
|
|
|
$module = Modules::get($id_module);
|
|
|
|
if ($module['name'] == 'Fatture di vendita') {
|
|
$print_name = 'Fattura elettronica di vendita';
|
|
} else {
|
|
$print_name = 'Fattura elettronica di acquisto';
|
|
}
|
|
$print = $dbo->SelectOne('zz_prints', 'id', ['name' => $print_name]);
|
|
|
|
if (!empty($id_records)) {
|
|
foreach ($id_records as $id_record) {
|
|
Prints::render($print['id'], $id_record, $dir.'tmp/');
|
|
}
|
|
|
|
// Creazione zip
|
|
if (extension_loaded('zip')) {
|
|
Zip::create($dir.'tmp/', $zip);
|
|
|
|
// Invio al browser dello zip
|
|
download($zip);
|
|
|
|
// Rimozione dei contenuti
|
|
delete($dir.'tmp/');
|
|
}
|
|
}
|
|
|
|
break;
|
|
|
|
case 'genera-xml':
|
|
$failed = [];
|
|
$added = [];
|
|
|
|
foreach ($id_records as $id) {
|
|
$fattura = Fattura::find($id);
|
|
|
|
try {
|
|
$fattura_elettronica = new FatturaElettronica($id);
|
|
|
|
if (!empty($fattura_elettronica) && !$fattura_elettronica->isGenerated()) {
|
|
$file = $fattura_elettronica->save($upload_dir);
|
|
$added[] = $fattura->numero_esterno;
|
|
}
|
|
} catch (UnexpectedValueException $e) {
|
|
$failed[] = $fattura->numero_esterno;
|
|
}
|
|
}
|
|
|
|
if (!empty($failed)) {
|
|
flash()->warning(tr('Le fatture elettroniche _LIST_ non sono state generate.', [
|
|
'_LIST_' => implode(', ', $failed),
|
|
]));
|
|
}
|
|
|
|
if (!empty($added)) {
|
|
flash()->info(tr('Le fatture elettroniche _LIST_ sono state generate.', [
|
|
'_LIST_' => implode(', ', $added),
|
|
]));
|
|
}
|
|
|
|
break;
|
|
|
|
case 'hook-send':
|
|
foreach ($id_records as $id) {
|
|
$fattura = Fattura::find($id);
|
|
|
|
try {
|
|
$fattura_elettronica = new FatturaElettronica($fattura->id);
|
|
|
|
if (!empty($fattura_elettronica) && $fattura_elettronica->isGenerated() && $fattura->codice_stato_fe == 'GEN') {
|
|
$fattura->codice_stato_fe = 'QUEUE';
|
|
$fattura->data_stato_fe = date('Y-m-d H:i:s');
|
|
$fattura->hook_send = true;
|
|
$fattura->save();
|
|
|
|
$added[] = $fattura->numero_esterno;
|
|
}
|
|
} catch (UnexpectedValueException $e) {
|
|
$failed[] = $fattura->numero_esterno;
|
|
}
|
|
}
|
|
|
|
flash()->info(tr('Le fatture elettroniche sono state aggiunte alla coda di invio'));
|
|
|
|
break;
|
|
|
|
case 'export-xml-bulk':
|
|
$dir = base_dir().'/files/export_fatture/';
|
|
directory($dir.'tmp/');
|
|
|
|
$dir = slashes($dir);
|
|
$zip = slashes($dir.'fatture_'.time().'.zip');
|
|
|
|
// Rimozione dei contenuti precedenti
|
|
$files = glob($dir.'/*.zip');
|
|
foreach ($files as $file) {
|
|
delete($file);
|
|
}
|
|
|
|
// Selezione delle fatture da esportare
|
|
$fatture = $dbo->fetchArray('SELECT co_documenti.id, numero_esterno, data, ragione_sociale, co_tipidocumento.descrizione, co_tipidocumento.dir FROM co_documenti INNER JOIN an_anagrafiche ON co_documenti.idanagrafica=an_anagrafiche.idanagrafica INNER JOIN co_tipidocumento ON co_documenti.idtipodocumento=co_tipidocumento.id INNER JOIN co_statidocumento ON co_documenti.idstatodocumento=co_statidocumento.id WHERE co_documenti.id IN('.implode(',', $id_records).')');
|
|
|
|
$failed = [];
|
|
$added = 0;
|
|
if (!empty($fatture)) {
|
|
foreach ($fatture as $r) {
|
|
$fattura = Fattura::find($r['id']);
|
|
$include = true;
|
|
|
|
try {
|
|
if ($r['dir'] == 'entrata') {
|
|
$fe = new FatturaElettronica($fattura->id);
|
|
$include = $fe->isGenerated();
|
|
} else {
|
|
$include = $fattura->isFE();
|
|
}
|
|
} catch (UnexpectedValueException $e) {
|
|
$include = false;
|
|
}
|
|
|
|
if (!$include) {
|
|
$failed[] = $fattura->numero_esterno;
|
|
} else {
|
|
if ($r['dir'] == 'entrata') {
|
|
$dst = $fe->getFilename();
|
|
$src = $dbo->selectOne('zz_files', 'filename', ['original' => $dst])['filename'];
|
|
} else {
|
|
$src = basename($fattura->uploads()->where('name', 'Fattura Elettronica')->first()->filepath);
|
|
$dst = basename($fattura->uploads()->where('name', 'Fattura Elettronica')->first()->original_name);
|
|
}
|
|
|
|
$file = slashes($module->upload_directory.'/'.$src);
|
|
$dest = slashes($dir.'tmp/'.$dst);
|
|
|
|
$result = copy($file, $dest);
|
|
|
|
if ($result) {
|
|
++$added;
|
|
//operationLog('export-xml-bulk', ['id_record' => $r['id']]);
|
|
} else {
|
|
$failed[] = $fattura->numero_esterno;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Creazione zip
|
|
if (extension_loaded('zip') and !empty($added)) {
|
|
Zip::create($dir.'tmp/', $zip);
|
|
|
|
// Invio al browser il file zip
|
|
download($zip);
|
|
|
|
// Rimozione dei contenuti
|
|
delete($dir.'tmp/');
|
|
}
|
|
|
|
if (!empty($failed)) {
|
|
flash()->warning(tr('Le fatture elettroniche _LIST_ non sono state incluse poichè non ancora generate o non presenti sul server', [
|
|
'_LIST_' => implode(', ', $failed),
|
|
]));
|
|
}
|
|
}
|
|
break;
|
|
|
|
case 'copy-bulk':
|
|
$list = [];
|
|
foreach ($id_records as $id) {
|
|
$fattura = Fattura::find($id);
|
|
array_push($list, $fattura->numero_esterno);
|
|
|
|
$id_segment = (post('id_segment') ? post('id_segment') : $fattura->id_segment);
|
|
$dir = $dbo->fetchOne('SELECT dir FROM co_tipidocumento WHERE id='.prepare($fattura->idtipodocumento))['dir'];
|
|
|
|
//+ 1 giorno
|
|
if (post('skip_time') == 'Giorno') {
|
|
$data = date('Y-m-d', strtotime('+1 day', strtotime($fattura->data)));
|
|
}
|
|
|
|
//+ 1 settimana
|
|
if (post('skip_time') == 'Settimana') {
|
|
$data = date('Y-m-d', strtotime('+1 week', strtotime($fattura->data)));
|
|
}
|
|
|
|
//+ 1 mese
|
|
if (post('skip_time') == 'Mese') {
|
|
$data = date('Y-m-d', strtotime('+1 month', strtotime($fattura->data)));
|
|
}
|
|
|
|
//+ 1 anno
|
|
if (post('skip_time') == 'Anno') {
|
|
$data = date('Y-m-d', strtotime('+1 year', strtotime($fattura->data)));
|
|
}
|
|
|
|
$new = $fattura->replicate();
|
|
|
|
$new->data = $data;
|
|
$new->id_segment = $id_segment;
|
|
$new->numero = Fattura::getNextNumero($data, $dir, $id_segment);
|
|
|
|
$new->save();
|
|
|
|
$righe = $fattura->getRighe();
|
|
foreach ($righe as $riga) {
|
|
$new_riga = $riga->replicate();
|
|
$new_riga->setDocument($new);
|
|
|
|
if (!post('riferimenti')) {
|
|
$new_riga->idpreventivo = 0;
|
|
$new_riga->idcontratto = 0;
|
|
$new_riga->idintervento = 0;
|
|
$new_riga->idddt = 0;
|
|
$new_riga->idordine = 0;
|
|
}
|
|
|
|
$new_riga->save();
|
|
|
|
if ($new_riga->isArticolo()) {
|
|
$new_riga->movimenta($new_riga->qta);
|
|
}
|
|
}
|
|
}
|
|
|
|
flash()->info(tr('Fatture _LIST_ duplicate correttamente!', [
|
|
'_LIST_' => implode(',', $list),
|
|
]));
|
|
|
|
break;
|
|
|
|
case 'check-bulk':
|
|
$controllo = new DatiFattureElettroniche();
|
|
$fatture = [];
|
|
foreach ($id_records as $id) {
|
|
$fattura_vendita = Fattura::vendita()
|
|
->whereNotIn('codice_stato_fe', ['ERR', 'NS', 'EC02', 'ERVAL'])
|
|
->where('data', '>=', $_SESSION['period_start'])
|
|
->where('data', '<=', $_SESSION['period_end'])
|
|
->where('id', '=', $id)
|
|
->orderBy('data')
|
|
->first();
|
|
|
|
if (!empty($fattura_vendita)) {
|
|
$fatture[$id] = $fattura_vendita;
|
|
|
|
$controllo->checkFattura($fattura_vendita);
|
|
}
|
|
}
|
|
|
|
$results = $controllo->getResults();
|
|
$num = count($results);
|
|
|
|
// Messaggi di risposta
|
|
if (empty($fatture)) {
|
|
flash()->warning(tr('Nessuna fattura utile per il controllo!'));
|
|
} elseif (empty($results)) {
|
|
flash()->info(tr('Nessuna anomalia!'));
|
|
} else {
|
|
flash()->info(tr('Fatture _LIST_ controllate.', [
|
|
'_LIST_' => implode(',', array_column($results, 'numero')),
|
|
]));
|
|
|
|
$riepilogo_anomalie = tr('Attenzione: Trovate _NUM_ anomalie! Le seguenti fatture non trovano corrispondenza tra XML e dati nel documento', ['_NUM_' => $num]).':</br></br>';
|
|
|
|
foreach ($results as $anomalia) {
|
|
$fattura = $fatture[$anomalia['id']];
|
|
|
|
$riepilogo_anomalie .= '<ul>
|
|
<li>'.reference($fattura, $fattura->getReference()).'</li>
|
|
<li>'.$anomalia['descrizione'].'</li>
|
|
</ul><br>';
|
|
}
|
|
|
|
flash()->warning($riepilogo_anomalie);
|
|
}
|
|
break;
|
|
|
|
case 'export-csv':
|
|
$file = temp_file();
|
|
$exporter = new CSV($file);
|
|
|
|
// Esportazione dei record selezionati
|
|
$fatture = Fattura::whereIn('id', $id_records)->get();
|
|
$exporter->setRecords($fatture);
|
|
|
|
$count = $exporter->exportRecords();
|
|
|
|
download($file, 'fatture.csv');
|
|
|
|
break;
|
|
|
|
case 'delete-bulk':
|
|
foreach ($id_records as $id) {
|
|
$documento = Fattura::find($id);
|
|
try {
|
|
$documento->delete();
|
|
} catch (InvalidArgumentException $e) {
|
|
}
|
|
}
|
|
|
|
flash()->info(tr('Fatture eliminate!'));
|
|
break;
|
|
}
|
|
|
|
if (App::debug()) {
|
|
$operations['delete-bulk'] = [
|
|
'text' => '<span><i class="fa fa-trash"></i> '.tr('Elimina selezionati').'</span> <span class="label label-danger">beta</span>',
|
|
];
|
|
}
|
|
|
|
$operations['export-csv'] = [
|
|
'text' => '<span><i class="fa fa-download"></i> '.tr('Esporta selezionati').'</span>',
|
|
'data' => [
|
|
'msg' => tr('Vuoi esportare un CSV con le fatture selezionate?'),
|
|
'button' => tr('Procedi'),
|
|
'class' => 'btn btn-lg btn-success',
|
|
'blank' => true,
|
|
],
|
|
];
|
|
|
|
$operations['copy-bulk'] = [
|
|
'text' => '<span><i class="fa fa-copy"></i> '.tr('Duplica selezionati').'</span>',
|
|
'data' => [
|
|
'msg' => tr('Vuoi davvero duplicare le righe selezionate?').'<br><br>{[ "type": "select", "label": "'.tr('Fattura in avanti di').'", "name": "skip_time", "required": 1, "values": "list=\"Giorno\":\"'.tr('Un giorno').'\", \"Settimana\":\"'.tr('Una settimana').'\", \"Mese\":\"'.tr('Un mese').'\", \"Anno\":\"'.tr('Un anno').'\" ", "value": "Giorno" ]}<br>{[ "type": "select", "label": "'.tr('Sezionale').'", "name": "id_segment", "required": 1, "values": "query=SELECT id, name AS descrizione FROM zz_segments WHERE id_module='.$id_module.' ORDER BY name", "value": "'.$_SESSION['module_'.$id_module]['id_segment'].'" ]}<br>{[ "type": "checkbox", "label": "'.tr('Aggiungere i riferimenti ai documenti esterni?').'", "placeholder": "'.tr('Aggiungere i riferimenti ai documenti esterni?').'", "name": "riferimenti" ]}',
|
|
'button' => tr('Procedi'),
|
|
'class' => 'btn btn-lg btn-warning',
|
|
],
|
|
];
|
|
|
|
$operations['registrazione-contabile'] = [
|
|
'text' => '<span><i class="fa fa-calculator"></i> '.tr('Registrazione contabile').'</span>',
|
|
'data' => [
|
|
'title' => tr('Registrazione contabile'),
|
|
'type' => 'modal',
|
|
'origine' => 'fatture',
|
|
'url' => base_path().'/add.php?id_module='.Modules::get('Prima nota')['id'],
|
|
],
|
|
];
|
|
|
|
$operations['exportFE-bulk'] = [
|
|
'text' => '<span class="'.((!extension_loaded('zip')) ? 'text-muted disabled' : '').'"><i class="fa fa-file-archive-o"></i> '.tr('Esporta stampe FE').'</span>',
|
|
'data' => [
|
|
'title' => '',
|
|
'msg' => tr('Vuoi davvero esportare i PDF delle fatture elettroniche selezionate in un archivio ZIP?'),
|
|
'button' => tr('Procedi'),
|
|
'class' => 'btn btn-lg btn-warning',
|
|
'blank' => true,
|
|
],
|
|
];
|
|
|
|
if ($module->name == 'Fatture di vendita') {
|
|
$operations['genera-xml'] = [
|
|
'text' => '<span><i class="fa fa-file-code-o"></i> '.tr('Genera fatture elettroniche').'</span>',
|
|
'data' => [
|
|
'title' => '',
|
|
'msg' => tr('Generare le fatture elettroniche per i documenti selezionati?<br><small>(le fatture dovranno trovarsi nello stato <i class="fa fa-clock-o text-info" title="Emessa"></i> <small>Emessa</small> e non essere mai state generate)</small>'),
|
|
'button' => tr('Procedi'),
|
|
'class' => 'btn btn-lg btn-warning',
|
|
'blank' => true,
|
|
],
|
|
];
|
|
|
|
$operations['export-bulk'] = [
|
|
'text' => '<span class="'.((!extension_loaded('zip')) ? 'text-muted disabled' : '').'"><i class="fa fa-file-archive-o"></i> '.tr('Esporta stampe').'</span>',
|
|
'data' => [
|
|
'title' => '',
|
|
'msg' => tr('Vuoi davvero esportare i PDF delle fatture selezionate in un archivio ZIP?'),
|
|
'button' => tr('Procedi'),
|
|
'class' => 'btn btn-lg btn-warning',
|
|
'blank' => true,
|
|
],
|
|
];
|
|
|
|
$operations['check-bulk'] = [
|
|
'text' => '<span><i class="fa fa-list-alt"></i> '.tr('Controlla fatture elettroniche').'</span>',
|
|
'data' => [
|
|
'title' => '',
|
|
'msg' => tr('Controllare corrispondenza tra XML e fattura di vendita?<br><small>(le fatture dovranno essere state generate)</small>'),
|
|
'button' => tr('Procedi'),
|
|
'class' => 'btn btn-lg btn-warning',
|
|
'blank' => true,
|
|
],
|
|
];
|
|
}
|
|
|
|
$operations['export-xml-bulk'] = [
|
|
'text' => '<span class="'.((!extension_loaded('zip')) ? 'text-muted disabled' : '').'"><i class="fa fa-file-archive-o"></i> '.tr('Esporta XML').'</span>',
|
|
'data' => [
|
|
'title' => '',
|
|
'msg' => tr('Vuoi davvero esportare le fatture elettroniche selezionate in un archivio ZIP?'),
|
|
'button' => tr('Procedi'),
|
|
'class' => 'btn btn-lg btn-warning',
|
|
'blank' => true,
|
|
],
|
|
];
|
|
|
|
if (Interaction::isEnabled()) {
|
|
$operations['hook-send'] = [
|
|
'text' => '<span><i class="fa fa-paper-plane"></i> '.tr('Coda di invio FE').'</span>',
|
|
'data' => [
|
|
'title' => '',
|
|
'msg' => tr('Vuoi davvero aggiungere queste fatture alla coda di invio per le fatture elettroniche?'),
|
|
'button' => tr('Procedi'),
|
|
'class' => 'btn btn-lg btn-warning',
|
|
],
|
|
];
|
|
}
|
|
|
|
return $operations;
|