Risolto bug import fatture passive
This commit is contained in:
parent
6b535e843a
commit
afdfd9bb44
|
@ -125,12 +125,14 @@ switch (post('op')) {
|
|||
}
|
||||
|
||||
// Operazioni sul bollo
|
||||
$fattura->addebita_bollo = post('addebita_bollo');
|
||||
$bollo_automatico = post('bollo_automatico');
|
||||
if (empty($bollo_automatico)) {
|
||||
$fattura->bollo = post('bollo');
|
||||
} else {
|
||||
$fattura->bollo = null;
|
||||
if($dir == 'entrata'){
|
||||
$fattura->addebita_bollo = post('addebita_bollo');
|
||||
$bollo_automatico = post('bollo_automatico');
|
||||
if (empty($bollo_automatico)) {
|
||||
$fattura->bollo = post('bollo');
|
||||
} else {
|
||||
$fattura->bollo = null;
|
||||
}
|
||||
}
|
||||
|
||||
// Operazioni sulla dichiarazione d'intento
|
||||
|
|
|
@ -346,12 +346,6 @@ class FatturaElettronica
|
|||
$fattura->note = $note;
|
||||
}
|
||||
|
||||
// Bollo
|
||||
$bollo = $dati_generali['DatiBollo'];
|
||||
if (!empty($bollo)) {
|
||||
$fattura->bollo = $bollo['ImportoBollo'];
|
||||
}
|
||||
|
||||
$fattura->save();
|
||||
|
||||
// Fix generazione idsede
|
||||
|
|
Loading…
Reference in New Issue