openstamanager/plugins/receiptFE/actions.php

96 lines
2.5 KiB
PHP
Raw Normal View History

2018-12-14 12:50:44 +01: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-12-14 12:50:44 +01:00
include_once __DIR__.'/../../core.php';
use Plugins\ReceiptFE\Interaction;
2018-12-29 12:03:22 +01:00
use Plugins\ReceiptFE\Ricevuta;
2018-12-14 12:50:44 +01:00
switch (filter('op')) {
case 'import':
$list = Interaction::getReceiptList();
$results = [];
2019-07-24 17:54:50 +02:00
foreach ($list as $element) {
$name = $element['name'];
$fattura = Ricevuta::process($name);
2018-12-14 12:50:44 +01:00
$numero_esterno = $fattura ? $fattura->numero_esterno : null;
2019-02-20 12:39:28 +01:00
$results[] = [
2018-12-14 12:50:44 +01:00
'file' => $name,
'fattura' => $numero_esterno,
2019-02-20 12:39:28 +01:00
];
2018-12-14 12:50:44 +01:00
}
echo json_encode($results);
break;
2019-07-10 15:02:09 +02:00
case 'save':
$content = file_get_contents($_FILES['blob']['tmp_name']);
$file = Ricevuta::store($_FILES['blob']['name'], $content);
$name = $file;
// no break
case 'prepare':
$name = $name ?: get('name');
$fattura = Ricevuta::process($name);
2019-07-10 15:02:09 +02:00
$numero_esterno = $fattura ? $fattura->numero_esterno : null;
2019-07-10 15:02:09 +02:00
echo json_encode([
'file' => $name,
'fattura' => $fattura,
]);
break;
2018-12-14 12:50:44 +01:00
case 'list':
2019-07-10 15:02:09 +02:00
include __DIR__.'/rows.php';
break;
case 'delete':
2019-07-24 17:54:50 +02:00
$file_id = get('file_id');
2019-07-10 15:02:09 +02:00
$directory = Ricevuta::getImportDirectory();
2019-07-24 17:54:50 +02:00
$files = Interaction::getFileList();
$file = $files[$file_id];
2019-07-10 15:02:09 +02:00
2019-07-24 17:54:50 +02:00
if (!empty($file)) {
delete($directory.'/'.$file['name']);
}
2018-12-14 12:50:44 +01:00
2019-07-10 15:02:09 +02:00
break;
case 'process':
$name = get('name');
// Processo il file ricevuto
if (Interaction::isEnabled()) {
$process_result = Interaction::processReceipt($name);
if (!empty($process_result)) {
flash()->error($process_result);
}
}
2018-12-14 12:50:44 +01:00
break;
}