Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
102 righe
3.4 KiB
102 righe
3.4 KiB
<!doctype html> |
|
<? |
|
include '../../lib/api.php'; |
|
define('WS_MODULE', 'elenco_sconti'); |
|
define('THIS_PERMISSION', GRUPPO_ISTANZE); |
|
include_once (ROOT . "layout/include_permission.php"); |
|
?> |
|
<html lang="en"> |
|
<? include_once ROOT . 'layout/head.php'; ?> |
|
<body> |
|
<? include_once ROOT . 'layout/header.php'; ?> |
|
|
|
<main role="main" class="<?= $cssColumNavBar ?>"> |
|
<div class="container"> |
|
<? include_once ROOT . 'layout/menu.php'; ?> |
|
|
|
<div class="row"> |
|
<div class="col-sm-12"> |
|
<nav aria-label="breadcrumb"> |
|
<ol class="breadcrumb"> |
|
<li class="breadcrumb-item"><a href="#">Home</a></li> |
|
<li class="breadcrumb-item active" aria-current="page">DECRETI DI LIQUIDAZIONE</li> |
|
</ol> |
|
</nav> |
|
</div> |
|
</div> |
|
<div class="row"> |
|
<div class="col s12"> |
|
<div class="card"> |
|
<div class="card-header"> |
|
<span style="font-size: xxx-large"><i class="fas fa-file-pdf text-primary"></i></span> |
|
<span class="card-title">DECRETI DI LIQUIDAZIONE</span> |
|
</div> |
|
<div class="card-content"> |
|
<br> |
|
<div class="col s12"> |
|
<table id="lista_decreti" class="table table-striped table-bordered" style="width:100%"> |
|
<thead> |
|
<tr> |
|
<th>Lotto</th> |
|
<th>Data creazione</th> |
|
<th>Periodo di liquidazione</th> |
|
<th>Numero DRS</th> |
|
<th>Data DRS</th> |
|
<th>Tipo</th> |
|
<th>#</th> |
|
</tr> |
|
</thead> |
|
</table> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</main> |
|
<? include_once ROOT . 'layout/footer.php'; ?> |
|
<script type="text/javascript"> |
|
$(document).ready(function () { |
|
//$('.modal').modal(); |
|
|
|
$('#lista_decreti').DataTable({ |
|
'processing': true, |
|
'serverSide': true, |
|
'serverMethod': 'post', |
|
"order": [[0, 'desc']], |
|
'ajax': { |
|
'url': WS_CALL, |
|
'data': { |
|
'module': "<?= WS_MODULE ?>", |
|
'action': "lista_decreti" |
|
} |
|
}, |
|
'columns': [ |
|
{data: 'LOTTO'}, |
|
{data: 'DATA_CREAZIONE'}, |
|
{data: 'DATA_FILTRO', orderable: false}, |
|
{data: 'NUMERO_DRS', orderable: false}, |
|
{data: 'DATA_DRS', orderable: false}, |
|
{data: 'TIPO', orderable: false}, |
|
{data: 'OP', orderable: false} |
|
], |
|
initComplete: function (settings, json) { |
|
siparsFramework.DataTableEventXhr();// |
|
} |
|
}); |
|
|
|
}); |
|
|
|
function openStreamer(f) { |
|
var object = { |
|
nomeFile: f, |
|
module: 'streamerFile', |
|
action: 'download_mandati_pdf' |
|
}; |
|
$.redirect(WS_CALL, object, "POST"); |
|
} |
|
|
|
</script> |
|
|
|
</body> |
|
</html>
|
|
|