mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-22 05:23:41 +01:00
Miglioramenti grafici
Introduzione di alcuni miglioramenti grafici e risoluzione di alcuni bug.
This commit is contained in:
parent
dc1204859e
commit
96484ed116
@ -28,9 +28,16 @@ if (Auth::check()) {
|
||||
<script> setInterval("session_keep_alive()", 5*60*1000); </script>';
|
||||
}
|
||||
|
||||
if (get_var('CSS Personalizzato') != '') {
|
||||
$custom_css = get_var('CSS Personalizzato');
|
||||
if (!empty($debug)) {
|
||||
$custom_css .= 'div.phpdebugbar-widgets-sqlqueries span.phpdebugbar-widgets-copy-clipboard:before, div.phpdebugbar-widgets-sqlqueries span.phpdebugbar-widgets-database:before, div.phpdebugbar-widgets-sqlqueries span.phpdebugbar-widgets-duration:before, div.phpdebugbar-widgets-sqlqueries span.phpdebugbar-widgets-memory:before, div.phpdebugbar-widgets-sqlqueries span.phpdebugbar-widgets-row-count:before, div.phpdebugbar-widgets-sqlqueries span.phpdebugbar-widgets-stmt-id:before {
|
||||
font-family: FontAwesome;
|
||||
}';
|
||||
}
|
||||
|
||||
if (!empty($custom_css)) {
|
||||
echo '
|
||||
<style>'.get_var('CSS Personalizzato').'</style>';
|
||||
<style>'.$custom_css.'</style>';
|
||||
}
|
||||
|
||||
if (!empty($debugbarRenderer)) {
|
||||
|
@ -29,7 +29,7 @@ if (empty($idriga)) {
|
||||
}
|
||||
|
||||
// Leggo l'iva predefinita dall'anagrafica e se non c'è leggo quella predefinita generica
|
||||
$rsa = $dbo->fetchArray('SELECT idiva FROM an_anagrafiche WHERE idanagrafica='.prepare($idanagrafica));
|
||||
$rsa = $dbo->fetchArray('SELECT idiva_vendite AS idiva FROM an_anagrafiche WHERE idanagrafica='.prepare($idanagrafica));
|
||||
$idiva = (!empty($rsa[0]['idiva'])) ? $rsa[0]['idiva'] : get_var('Iva predefinita');
|
||||
} else {
|
||||
$op = 'editriga';
|
||||
|
@ -286,13 +286,36 @@ echo '
|
||||
</big>
|
||||
<br><br>';
|
||||
|
||||
$diff2 = Translator::numberToLocale(floatval($contratto_tot_ore) - floatval($totale_ore_impiegate));
|
||||
echo '
|
||||
<big>
|
||||
'.tr('Ore residue').': '.$diff2.'<br>
|
||||
'.tr('Ore erogate').': '.Translator::numberToLocale($totale_ore_impiegate).'<br>
|
||||
'.tr('Ore in contratto').': '.Translator::numberToLocale($contratto_tot_ore).'
|
||||
</big>
|
||||
if (!empty($contratto_tot_ore)) {
|
||||
echo '
|
||||
<div class="row">
|
||||
<big class="col-md-2 col-md-offset-5 text-center">
|
||||
<table class="table text-left">
|
||||
<tr>
|
||||
<td>'.tr('Ore residue').':</td>
|
||||
<td class="text-right">'.Translator::numberToLocale(floatval($contratto_tot_ore) - floatval($totale_ore_impiegate)).'</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>'.tr('Ore erogate').':</td>
|
||||
<td class="text-right">'.Translator::numberToLocale($totale_ore_impiegate).'</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>'.tr('Ore in contratto').':</td>
|
||||
<td class="text-right">'.Translator::numberToLocale($contratto_tot_ore).'</td>
|
||||
</tr>
|
||||
</table>
|
||||
</big>
|
||||
</div>';
|
||||
} else {
|
||||
echo '
|
||||
<div class="alert alert-info">
|
||||
<p>'.tr('Per monitorare il consumo ore, inserisci almeno una riga con unità di misura "ore"').'.</p>
|
||||
</div>';
|
||||
}
|
||||
|
||||
echo '
|
||||
</div>';
|
||||
|
||||
/*
|
||||
|
@ -106,7 +106,7 @@ elseif ($get['op'] == 'addfattura') {
|
||||
$importo = $rs2[0]['totale'] / sizeof($rs);
|
||||
|
||||
// Lettura iva del cliente o predefinita
|
||||
$rs2 = $dbo->fetchArray('SELECT idiva FROM an_anagrafiche WHERE idanagrafica='.prepare($idanagrafica));
|
||||
$rs2 = $dbo->fetchArray('SELECT idiva_vendite AS idiva FROM an_anagrafiche WHERE idanagrafica='.prepare($idanagrafica));
|
||||
$idiva = $rs2[0]['idiva'];
|
||||
|
||||
if ($idiva != 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user