Fix minori
This commit is contained in:
parent
4c30f237fd
commit
749f227b06
|
@ -53,7 +53,7 @@ echo '
|
|||
</div>
|
||||
</form>
|
||||
|
||||
<form action="" method="post" role="form" class="tab-pane active" id="inserimento">
|
||||
<form action="" method="post" role="form" class="tab-pane" id="inserimento">
|
||||
<input type="hidden" name="backto" value="record-edit">
|
||||
<input type="hidden" name="op" value="add_serials">
|
||||
|
||||
|
|
|
@ -111,7 +111,7 @@ switch (post('op')) {
|
|||
|
||||
$fattura->save();
|
||||
|
||||
if ($stato_precedente->descrizione == 'Bozza' && $stato['descrizione'] == 'Emessa') {
|
||||
if ($fattura->direzione == 'entrata' && $stato_precedente->descrizione == 'Bozza' && $stato['descrizione'] == 'Emessa') {
|
||||
// Generazione automatica della Fattura Elettronica
|
||||
$stato_fe = empty($fattura->codice_stato_fe) || in_array($fattura->codice_stato_fe, ['GEN', 'NS', 'EC02']);
|
||||
$checks = FatturaElettronica::controllaFattura($fattura);
|
||||
|
@ -154,6 +154,7 @@ switch (post('op')) {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
aggiorna_sedi_movimenti('documenti', $id_record);
|
||||
|
||||
flash()->info(tr('Fattura modificata correttamente!'));
|
||||
|
|
|
@ -14,8 +14,9 @@ switch (filter('op')) {
|
|||
// Verifico che questo nome gruppo non sia già stato usato
|
||||
if ($dbo->fetchNum('SELECT nome FROM zz_groups WHERE nome='.prepare($nome)) == 0) {
|
||||
$dbo->query('INSERT INTO zz_groups(nome, editable) VALUES('.prepare($nome).', 1)');
|
||||
flash()->info(tr('Gruppo aggiunto!'));
|
||||
$id_record = $dbo->lastInsertedID();
|
||||
|
||||
flash()->info(tr('Gruppo aggiunto!'));
|
||||
} else {
|
||||
flash()->error(tr('Gruppo già esistente!'));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue