Importazione campo referente in tutti i documenti
This commit is contained in:
parent
132f173458
commit
b657da9e72
|
@ -475,6 +475,7 @@ $riga = $contratto->getRiga($type, $id_riga);
|
|||
|
||||
$contratto->descrizione = $documento->descrizione;
|
||||
$contratto->esclusioni = $documento->esclusioni;
|
||||
$contratto->idreferente = $documento->idreferente;
|
||||
|
||||
$contratto->save();
|
||||
|
||||
|
|
|
@ -326,6 +326,7 @@ switch (post('op')) {
|
|||
$ddt->idsede_destinazione = $id_sede;
|
||||
|
||||
$ddt->idcausalet = post('id_causale_trasporto');
|
||||
$ddt->idreferente = $documento->idreferente;
|
||||
|
||||
$ddt->save();
|
||||
|
||||
|
|
|
@ -697,6 +697,7 @@ switch (post('op')) {
|
|||
|
||||
$fattura->idsede_destinazione = $documento->idsede;
|
||||
$fattura->id_ritenuta_contributi = post('id_ritenuta_contributi') ?: null;
|
||||
$fattura->idreferente = $documento->idreferente;
|
||||
|
||||
$fattura->save();
|
||||
|
||||
|
|
|
@ -421,6 +421,7 @@ switch (post('op')) {
|
|||
$intervento->codice_cup = $documento->codice_cup;
|
||||
$intervento->codice_cig = $documento->codice_cig;
|
||||
$intervento->num_item = $documento->num_item;
|
||||
$intervento->idreferente = $documento->idreferente;
|
||||
|
||||
$intervento->save();
|
||||
|
||||
|
|
|
@ -397,6 +397,7 @@ switch (post('op')) {
|
|||
$ordine->codice_cup = $documento->codice_cup;
|
||||
$ordine->codice_cig = $documento->codice_cig;
|
||||
$ordine->num_item = $documento->num_item;
|
||||
$ordine->idreferente = $documento->idreferente;
|
||||
|
||||
$ordine->save();
|
||||
|
||||
|
|
Loading…
Reference in New Issue