mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-28 08:40:41 +01:00
help text per documenti archiviati e totale spazio occupato
This commit is contained in:
parent
4c0a00783c
commit
8e26c81be0
@ -105,10 +105,17 @@ if (Services::isEnabled()) {
|
|||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>'.tr('Anno').'</th>
|
<th>'.tr('Anno').'</th>
|
||||||
<th>'.tr('Documenti transitati').'</th>
|
<th>'.tr('Documenti archiviati').'
|
||||||
<th>'.tr('Spazio fatture').'</th>
|
<span class="tip" title="'.tr("Fatture attive e relative ricevute, fatture passive").'.">
|
||||||
<th>'.tr('Spazio ricevute').'</th>
|
<i class="fa fa-question-circle-o"></i>
|
||||||
<th>'.tr('Spazio totale occupato').'</th>
|
</span>
|
||||||
|
</th>
|
||||||
|
|
||||||
|
<th>'.tr('Totale spazio occupato').'
|
||||||
|
<span class="tip" title="'.tr("Fatture attive con eventuali allegati e ricevute, fatture passive con eventuali allegati").'.">
|
||||||
|
<i class="fa fa-question-circle-o"></i>
|
||||||
|
</span>
|
||||||
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
|
||||||
@ -116,8 +123,6 @@ if (Services::isEnabled()) {
|
|||||||
<tr class="info">
|
<tr class="info">
|
||||||
<td>'.tr('Totale').'</td>
|
<td>'.tr('Totale').'</td>
|
||||||
<td id="fe_numero"></td>
|
<td id="fe_numero"></td>
|
||||||
<td id="fe_spazio_fatture"></td>
|
|
||||||
<td id="fe_spazio_ricevute"></td>
|
|
||||||
<td id="fe_spazio"></td>
|
<td id="fe_spazio"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
@ -137,8 +142,6 @@ if (Services::isEnabled()) {
|
|||||||
},
|
},
|
||||||
success: function (response) {
|
success: function (response) {
|
||||||
$("#fe_numero").html(response.invoice_number);
|
$("#fe_numero").html(response.invoice_number);
|
||||||
$("#fe_spazio_fatture").html(response.invoices_size);
|
|
||||||
$("#fe_spazio_ricevute").html(response.notifies_size);
|
|
||||||
$("#fe_spazio").html(response.size);
|
$("#fe_spazio").html(response.size);
|
||||||
|
|
||||||
if (response.history.length) {
|
if (response.history.length) {
|
||||||
@ -148,8 +151,6 @@ if (Services::isEnabled()) {
|
|||||||
$("#elenco-fe").append(`<tr>
|
$("#elenco-fe").append(`<tr>
|
||||||
<td>` + data["year"] + `</td>
|
<td>` + data["year"] + `</td>
|
||||||
<td>` + data["number"] + `</td>
|
<td>` + data["number"] + `</td>
|
||||||
<td>` + data["invoices_size"] + `</td>
|
|
||||||
<td>` + data["notifies_size"] + `</td>
|
|
||||||
<td>` + data["size"] + `</td>
|
<td>` + data["size"] + `</td>
|
||||||
</tr>`);
|
</tr>`);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user