71 lines
1.7 KiB
PHP
71 lines
1.7 KiB
PHP
|
<?php
|
||
|
|
||
|
include_once __DIR__.'/../../core.php';
|
||
|
|
||
|
use Plugins\ImportFE\Interaction;
|
||
|
|
||
|
$list = Interaction::listToImport();
|
||
|
|
||
|
if (!empty($list)) {
|
||
|
echo '
|
||
|
<table class="table table-striped table-hover table-condensed table-bordered">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>'.tr('Nome').'</th>
|
||
|
<th width="60" class="text-center">#</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>';
|
||
|
|
||
|
foreach ($list as $element) {
|
||
|
echo '
|
||
|
<tr>
|
||
|
<td>'.$element.'</td>
|
||
|
<td>
|
||
|
<button type="button" class="btn btn-warning" onclick="download(this, \''.$element.'\')">
|
||
|
<i class="fa fa-download"></i> '.tr('Importa').'
|
||
|
</button>
|
||
|
</td>
|
||
|
</tr>';
|
||
|
}
|
||
|
|
||
|
echo '
|
||
|
</tbody>
|
||
|
</table>';
|
||
|
} else {
|
||
|
echo '
|
||
|
<p>'.tr('Nessuna fattura da importare').'.</p>';
|
||
|
}
|
||
|
|
||
|
echo '
|
||
|
<script>
|
||
|
function download(button, file) {
|
||
|
var restore = buttonLoading(button);
|
||
|
|
||
|
$.ajax({
|
||
|
url: globals.rootdir + "/actions.php",
|
||
|
type: "get",
|
||
|
data: {
|
||
|
id_module: globals.id_module,
|
||
|
id_plugin: '.$id_plugin.',
|
||
|
op: "prepare",
|
||
|
name: file,
|
||
|
},
|
||
|
success: function(data) {
|
||
|
data = JSON.parse(data);
|
||
|
|
||
|
if (!data.already) {
|
||
|
launch_modal("'.tr('Righe fattura').'", globals.rootdir + "/actions.php?id_module=" + globals.id_module + "&id_plugin=" + '.$id_plugin.' + "&op=list&filename=" + data.filename);
|
||
|
} else {
|
||
|
swal({
|
||
|
title: "'.tr('Fattura già importata!').'",
|
||
|
type: "info",
|
||
|
})
|
||
|
}
|
||
|
|
||
|
buttonRestore(button, restore);
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
</script>';
|