Fix sede fatturazione
This commit is contained in:
parent
3a65e9810f
commit
36c0b39650
|
@ -95,6 +95,9 @@ switch (post('op')) {
|
|||
$documenti->push($fattura);
|
||||
}
|
||||
|
||||
$fattura->idsede_destinazione = $documento_import->idsede_destinazione;
|
||||
$fattura->save();
|
||||
|
||||
// Inserimento righe
|
||||
foreach ($righe as $riga) {
|
||||
$qta = $riga->qta_rimanente;
|
||||
|
|
|
@ -732,7 +732,10 @@ switch (post('op')) {
|
|||
$fattura->idpagamento = setting('Tipo di pagamento predefinito');
|
||||
}
|
||||
|
||||
$fattura->idsede_destinazione = $documento->idsede;
|
||||
|
||||
$idsede = ($documento->idsede_destinazione ? $documento->idsede_destinazione : $documento->idsede);
|
||||
|
||||
$fattura->idsede_destinazione = $idsede;
|
||||
$fattura->id_ritenuta_contributi = post('id_ritenuta_contributi') ?: null;
|
||||
$fattura->idreferente = $documento->idreferente;
|
||||
$fattura->idagente = $documento->idagente;
|
||||
|
|
Loading…
Reference in New Issue