fix minori
This commit is contained in:
parent
c80fff2291
commit
2b4943ac84
|
@ -58,9 +58,7 @@ switch (post('op')) {
|
|||
|
||||
$id_record = $fattura->id;
|
||||
|
||||
flash()->info(tr('Aggiunta fattura numero _NUM_!', [
|
||||
'_NUM_' => $fattura->numero,
|
||||
]));
|
||||
flash()->info(tr('Fattura aggiunta correttamente!'));
|
||||
|
||||
break;
|
||||
|
||||
|
|
|
@ -138,9 +138,7 @@ switch (filter('op')) {
|
|||
|
||||
case 'oauth2':
|
||||
$oauth2 = $account->oauth2;
|
||||
|
||||
$redirect = base_path().'/oauth2.php?id='.$oauth2->id;
|
||||
redirect($redirect);
|
||||
redirect(base_path().'/oauth2.php?id='.$oauth2->id);
|
||||
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -196,6 +196,10 @@ switch ($operazione) {
|
|||
$pianificazione->fattura()->associate($fattura);
|
||||
$pianificazione->save();
|
||||
|
||||
flash()->info(tr('Rata fatturata correttamente!'));
|
||||
database()->commitTransaction();
|
||||
redirect(base_path().'/controller.php?id_module='.Modules::get('Fatture di vendita')['id'].'&id_record='.$fattura->id);
|
||||
exit();
|
||||
break;
|
||||
|
||||
case 'add_fattura_multipla':
|
||||
|
@ -250,8 +254,11 @@ switch ($operazione) {
|
|||
}
|
||||
|
||||
flash()->info(tr('Rate fatturate correttamente!'));
|
||||
database()->commitTransaction();
|
||||
redirect(base_path().'/controller.php?id_module='.Modules::get('Fatture di vendita')['id']);
|
||||
exit();
|
||||
break;
|
||||
|
||||
redirect(base_path().'/controller.php?id_module=14');
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
'07' => 'Luglio',
|
||||
'08' => 'Agosto',
|
||||
'09' => 'Settembre',
|
||||
'11' => 'Ottobre',
|
||||
'10' => 'Ottobre',
|
||||
'11' => 'Novembre',
|
||||
'12' => 'Dicembre',
|
||||
];
|
||||
|
|
Loading…
Reference in New Issue