Fix stile
This commit is contained in:
parent
7fefe724c0
commit
d14dfddb29
|
@ -66,7 +66,6 @@ switch (post('op')) {
|
|||
}
|
||||
}
|
||||
break;
|
||||
|
||||
|
||||
// Apertura bilancio
|
||||
case 'apri-bilancio':
|
||||
|
@ -82,8 +81,8 @@ switch (post('op')) {
|
|||
|
||||
$totale = 0;
|
||||
|
||||
foreach( $conti as $conto ){
|
||||
if( $conto['totale'] >= 0 ){
|
||||
foreach ($conti as $conto) {
|
||||
if ($conto['totale'] >= 0) {
|
||||
$dare = abs($conto['totale']);
|
||||
$avere = 0;
|
||||
} else {
|
||||
|
@ -102,7 +101,7 @@ switch (post('op')) {
|
|||
// Movimento sul conto di apertura
|
||||
$totale = -$totale;
|
||||
|
||||
if( $totale >= 0 ){
|
||||
if ($totale >= 0) {
|
||||
$dare = abs($totale);
|
||||
$avere = 0;
|
||||
} else {
|
||||
|
@ -116,9 +115,8 @@ switch (post('op')) {
|
|||
$movimento->save();
|
||||
|
||||
flash()->info(tr('Apertura bilancio completata!'));
|
||||
|
||||
|
||||
break;
|
||||
|
||||
|
||||
// Chiusura bilancio
|
||||
case 'chiudi-bilancio':
|
||||
|
@ -134,8 +132,8 @@ switch (post('op')) {
|
|||
|
||||
$totale = 0;
|
||||
|
||||
foreach( $conti as $conto ){
|
||||
if( $conto['totale'] < 0 ){
|
||||
foreach ($conti as $conto) {
|
||||
if ($conto['totale'] < 0) {
|
||||
$dare = abs($conto['totale']);
|
||||
$avere = 0;
|
||||
} else {
|
||||
|
@ -154,7 +152,7 @@ switch (post('op')) {
|
|||
// Movimento sul conto di chiusura
|
||||
//$totale = -$totale;
|
||||
|
||||
if( $totale >= 0 ){
|
||||
if ($totale >= 0) {
|
||||
$dare = abs($totale);
|
||||
$avere = 0;
|
||||
} else {
|
||||
|
@ -168,6 +166,6 @@ switch (post('op')) {
|
|||
$movimento->save();
|
||||
|
||||
flash()->info(tr('Chiusura bilancio completata!'));
|
||||
|
||||
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@ $bilancio_gia_aperto = $dbo->fetchNum('SELECT id FROM co_movimenti WHERE is_aper
|
|||
$msg = tr('Sei sicuro di voler aprire il bilancio?');
|
||||
$btn_class = 'btn-info';
|
||||
|
||||
if( $bilancio_gia_aperto){
|
||||
if ($bilancio_gia_aperto) {
|
||||
$msg .= ' '.tr('I movimenti di apertura già esistenti verranno annullati e ricreati').'.';
|
||||
$btn_class = 'btn-default';
|
||||
}
|
||||
|
@ -272,14 +272,13 @@ foreach ($primo_livello as $conto_primo) {
|
|||
</table>';
|
||||
}
|
||||
|
||||
|
||||
// Verifico se è già stata eseguita l'apertura bilancio
|
||||
$bilancio_gia_chiuso = $dbo->fetchNum('SELECT id FROM co_movimenti WHERE is_chiusura=1 AND data BETWEEN '.prepare($_SESSION['period_start']).' AND '.prepare($_SESSION['period_end']));
|
||||
|
||||
$msg = tr('Sei sicuro di voler aprire il bilancio?');
|
||||
$btn_class = 'btn-info';
|
||||
|
||||
if( $bilancio_gia_chiuso){
|
||||
if ($bilancio_gia_chiuso) {
|
||||
$msg .= ' '.tr('I movimenti di apertura già esistenti verranno annullati e ricreati').'.';
|
||||
$btn_class = 'btn-default';
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue