Merge branch 'master' of https://github.com/devcode-it/openstamanager
This commit is contained in:
commit
fbc043feb7
|
@ -30,7 +30,11 @@
|
|||
url('../fonts/sourcesanspro-regular-webfont.svg') format('svg');
|
||||
}
|
||||
|
||||
html,
|
||||
html{
|
||||
font-size: 13px;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: sans-serif, "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||
font-size: 1rem;
|
||||
|
@ -38,11 +42,6 @@ body {
|
|||
line-height: 1.5;
|
||||
color: #212529;
|
||||
text-align: left;
|
||||
/*background-color: #fff;*/
|
||||
}
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
textarea {
|
||||
|
|
|
@ -243,7 +243,7 @@ function translateTemplate()
|
|||
|
||||
// Informazioni estese sulle azioni dell'utente
|
||||
$op = post('op');
|
||||
if (!empty($op)) {
|
||||
if (!empty($op) && $op != 'summable-results') {
|
||||
OperationLog::setInfo('id_module', $id_module);
|
||||
OperationLog::setInfo('id_plugin', $id_plugin);
|
||||
OperationLog::setInfo('id_record', $id_record);
|
||||
|
|
|
@ -48,7 +48,7 @@ class Bollo
|
|||
}
|
||||
|
||||
$righe_bollo = $this->fattura->getRighe()->filter(function ($item, $key) {
|
||||
return $item->aliquota != null && in_array($item->aliquota->codice_natura_fe, ['N1', 'N2.1', 'N2.2', 'N3.1', 'N3.2', 'N3.3', 'N3.4', 'N3.5', 'N3.6', 'N4']);
|
||||
return $item->aliquota != null && in_array($item->aliquota->codice_natura_fe, ['N2.1', 'N2.2', 'N3.5', 'N3.6', 'N4']);
|
||||
});
|
||||
$importo_righe_bollo = $righe_bollo->sum('totale_imponibile');
|
||||
|
||||
|
|
Loading…
Reference in New Issue