2018-12-14 12:50:44 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
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'];
|
2019-02-20 16:07:42 +01:00
|
|
|
Interaction::getReceipt($name);
|
2019-02-20 12:39:28 +01:00
|
|
|
|
|
|
|
$fattura = null;
|
|
|
|
try {
|
2020-03-09 15:53:07 +01:00
|
|
|
$receipt = new Ricevuta($name);
|
2019-02-20 16:07:42 +01:00
|
|
|
$receipt->save();
|
2019-02-20 12:39:28 +01:00
|
|
|
|
|
|
|
$fattura = $receipt->getFattura()->numero_esterno;
|
|
|
|
|
2019-02-20 16:07:42 +01:00
|
|
|
$receipt->delete();
|
|
|
|
|
2019-02-20 12:39:28 +01:00
|
|
|
Interaction::processReceipt($name);
|
2019-02-20 16:07:42 +01:00
|
|
|
} catch (UnexpectedValueException $e) {
|
2018-12-14 12:50:44 +01:00
|
|
|
}
|
|
|
|
|
2019-02-20 12:39:28 +01:00
|
|
|
$results[] = [
|
2018-12-14 12:50:44 +01:00
|
|
|
'file' => $name,
|
2019-02-20 12:39:28 +01:00
|
|
|
'fattura' => $fattura,
|
|
|
|
];
|
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');
|
|
|
|
Interaction::getReceipt($name);
|
|
|
|
|
|
|
|
$fattura = null;
|
|
|
|
try {
|
2020-03-09 15:53:07 +01:00
|
|
|
$receipt = new Ricevuta($name);
|
2019-07-10 15:02:09 +02:00
|
|
|
$receipt->save();
|
|
|
|
|
|
|
|
$fattura = $receipt->getFattura()->numero_esterno;
|
|
|
|
|
|
|
|
$receipt->delete();
|
|
|
|
|
|
|
|
Interaction::processReceipt($name);
|
|
|
|
} catch (UnexpectedValueException $e) {
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|