Fix minori

This commit is contained in:
Thomas Zilio 2019-12-13 16:32:53 +01:00
parent 4c30f237fd
commit 749f227b06
3 changed files with 25 additions and 23 deletions

View File

@ -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">

View File

@ -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!'));

View File

@ -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!'));
}