openstamanager/plugins/importFE/actions.php

104 lines
2.7 KiB
PHP
Raw Normal View History

2018-09-24 18:10:16 +02:00
<?php
include_once __DIR__.'/../../core.php';
2018-11-30 15:33:25 +01:00
use Plugins\ImportFE\FatturaElettronica;
use Plugins\ImportFE\Interaction;
2018-09-24 18:10:16 +02:00
switch (filter('op')) {
case 'save':
2018-11-30 15:33:25 +01:00
$content = file_get_contents($_FILES['blob']['tmp_name']);
2019-02-04 17:26:29 +01:00
$file = FatturaElettronica::store($_FILES['blob']['name'], $content);
2018-09-25 11:55:52 +02:00
2018-11-30 15:33:25 +01:00
if (FatturaElettronica::isValid($file)) {
2018-09-25 11:55:52 +02:00
echo json_encode([
2019-02-04 17:26:29 +01:00
'filename' => $file,
2018-09-25 11:55:52 +02:00
]);
2018-11-30 15:33:25 +01:00
} else {
2018-09-25 11:55:52 +02:00
echo json_encode([
2018-09-25 16:47:44 +02:00
'already' => 1,
2018-09-25 11:55:52 +02:00
]);
}
2018-09-24 18:10:16 +02:00
break;
2018-11-30 15:33:25 +01:00
case 'prepare':
$name = get('name');
$file = Interaction::getImportXML($name);
2018-09-24 18:10:16 +02:00
2018-11-30 15:33:25 +01:00
if (FatturaElettronica::isValid($file)) {
echo json_encode([
'filename' => $file,
]);
} else {
echo json_encode([
'already' => 1,
]);
}
2018-09-24 18:10:16 +02:00
2018-11-30 15:33:25 +01:00
break;
2019-02-12 11:42:48 +01:00
case 'delete':
2019-04-19 03:18:05 +02:00
$directory = FatturaElettronica::getImportDirectory();
2019-02-12 11:42:48 +01:00
2019-02-12 15:00:08 +01:00
delete($directory.'/'.get('name'));
2019-02-12 11:42:48 +01:00
break;
2018-11-30 15:33:25 +01:00
case 'generate':
$filename = post('filename');
2019-04-19 03:18:05 +02:00
$info = [
'id_pagamento' => post('pagamento'),
'id_segment' => post('id_segment'),
'id_tipo' => post('id_tipo'),
2019-05-16 04:52:16 +02:00
'data_ricezione' => post('data_ricezione'),
2019-04-19 03:18:05 +02:00
'articoli' => post('articoli'),
'iva' => post('iva'),
'conto' => post('conto'),
'movimentazione' => post('movimentazione'),
];
$fattura_pa = FatturaElettronica::manage($filename);
$id_record = $fattura_pa->save($info);
2018-09-24 18:10:16 +02:00
2019-04-19 20:47:55 +02:00
ricalcola_costiagg_fattura($id_record);
elimina_scadenza($id_record);
elimina_movimento($id_record, 0);
2019-02-13 10:53:29 +01:00
aggiungi_scadenza($id_record);
aggiungi_movimento($id_record, 'uscita');
2018-11-30 15:33:25 +01:00
$fattura_pa->delete();
2019-02-14 10:58:43 +01:00
// Processo il file ricevuto
if (Interaction::isEnabled()) {
$process_result = Interaction::processXML($filename);
if ($process_result != '') {
flash()->error($process_result);
redirect(ROOTDIR.'/controller.php?id_module='.$id_module);
exit;
}
}
2018-09-24 18:10:16 +02:00
redirect(ROOTDIR.'/editor.php?id_module='.$id_module.'&id_record='.$id_record);
break;
2018-09-26 12:06:24 +02:00
case 'list':
include __DIR__.'/rows.php';
break;
2019-04-19 18:50:16 +02:00
case 'process':
$name = get('name');
// Processo il file ricevuto
if (Interaction::isEnabled()) {
$process_result = Interaction::processXML($name);
if (!empty($process_resul)) {
flash()->error($process_result);
}
}
break;
2018-09-24 18:10:16 +02:00
}