openstamanager/plugins/importFE/init.php

49 lines
1.6 KiB
PHP
Raw Normal View History

<?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/>.
*/
include_once __DIR__.'/../../core.php';
use Plugins\ImportFE\FatturaElettronica;
use Plugins\ImportFE\Interaction;
if (isset($id_record)) {
2019-07-24 17:17:54 +02:00
$files = Interaction::getFileList();
$record = $files[$id_record - 1];
2019-07-24 17:17:54 +02:00
$has_next = isset($files[$id_record]);
try {
2019-07-24 17:17:54 +02:00
$fattura_pa = FatturaElettronica::manage($record['name']);
$anagrafica = $fattura_pa->findAnagrafica();
2019-07-24 17:17:54 +02:00
} catch (UnexpectedValueException $e) {
$imported = true;
} catch (Exception $e) {
2019-07-24 17:17:54 +02:00
$error = true;
}
2019-11-15 14:53:46 +01:00
2019-11-15 15:11:20 +01:00
// Rimozione .p7m dal nome del file (causa eventuale estrazione da ZIP)
2021-09-01 16:29:57 +02:00
$record['name'] = preg_replace('/(.+)\.p7m$/i', '{1}', $record['name']);
2019-11-15 15:11:20 +01:00
if (empty($record)) {
2019-11-15 14:53:46 +01:00
flash()->warning(tr('Nessuna fattura da importare!'));
2019-11-15 15:11:20 +01:00
2022-03-02 12:18:09 +01:00
redirect_legacy(base_url().'/controller.php?id_module='.$id_module);
2019-11-15 14:53:46 +01:00
}
}