Fix #1489
This commit is contained in:
parent
f6af582896
commit
b82efb339f
|
@ -179,7 +179,7 @@ switch (post('op')) {
|
||||||
|
|
||||||
$qta = post('qta');
|
$qta = post('qta');
|
||||||
|
|
||||||
$articolo->setTranslation('title', post('descrizione'));
|
$articolo->descrizione = post('descrizione');
|
||||||
$articolo->note = post('note');
|
$articolo->note = post('note');
|
||||||
$articolo->um = post('um') ?: null;
|
$articolo->um = post('um') ?: null;
|
||||||
|
|
||||||
|
|
|
@ -165,7 +165,7 @@ switch (filter('op')) {
|
||||||
$articolo->id_dettaglio_fornitore = post('id_dettaglio_fornitore') ?: null;
|
$articolo->id_dettaglio_fornitore = post('id_dettaglio_fornitore') ?: null;
|
||||||
}
|
}
|
||||||
|
|
||||||
$articolo->setTranslation('title', post('descrizione'));
|
$articolo->descrizione = post('descrizione');
|
||||||
$articolo->note = post('note');
|
$articolo->note = post('note');
|
||||||
$articolo->um = post('um') ?: null;
|
$articolo->um = post('um') ?: null;
|
||||||
|
|
||||||
|
|
|
@ -521,7 +521,7 @@ switch (post('op')) {
|
||||||
$qta = post('qta');
|
$qta = post('qta');
|
||||||
|
|
||||||
$articolo->idsede_partenza = post('idsede_partenza');
|
$articolo->idsede_partenza = post('idsede_partenza');
|
||||||
$articolo->setTranslation('title', post('descrizione'));
|
$articolo->descrizione = post('descrizione');
|
||||||
$articolo->note = post('note');
|
$articolo->note = post('note');
|
||||||
$articolo->um = post('um') ?: null;
|
$articolo->um = post('um') ?: null;
|
||||||
$articolo->idimpianto = post('id_impianto') ?: null;
|
$articolo->idimpianto = post('id_impianto') ?: null;
|
||||||
|
|
|
@ -170,7 +170,7 @@ switch (post('op')) {
|
||||||
$articolo->id_dettaglio_fornitore = post('id_dettaglio_fornitore') ?: null;
|
$articolo->id_dettaglio_fornitore = post('id_dettaglio_fornitore') ?: null;
|
||||||
}
|
}
|
||||||
|
|
||||||
$articolo->setTranslation('title', post('descrizione'));
|
$articolo->descrizione = post('descrizione');
|
||||||
$articolo->note = post('note');
|
$articolo->note = post('note');
|
||||||
$articolo->um = post('um') ?: null;
|
$articolo->um = post('um') ?: null;
|
||||||
|
|
||||||
|
|
|
@ -195,7 +195,7 @@ switch (post('op')) {
|
||||||
|
|
||||||
$qta = post('qta');
|
$qta = post('qta');
|
||||||
|
|
||||||
$articolo->setTranslation('title', post('descrizione'));
|
$articolo->descrizione = post('descrizione');
|
||||||
$articolo->note = post('note');
|
$articolo->note = post('note');
|
||||||
$articolo->um = post('um') ?: null;
|
$articolo->um = post('um') ?: null;
|
||||||
$articolo->data_evasione = post('data_evasione') ?: null;
|
$articolo->data_evasione = post('data_evasione') ?: null;
|
||||||
|
|
|
@ -215,7 +215,7 @@ switch ($operazione) {
|
||||||
|
|
||||||
$qta = post('qta');
|
$qta = post('qta');
|
||||||
|
|
||||||
$articolo->setTranslation('title', post('descrizione'));
|
$articolo->descrizione = post('descrizione');
|
||||||
$articolo->um = post('um') ?: null;
|
$articolo->um = post('um') ?: null;
|
||||||
|
|
||||||
$articolo->costo_unitario = post('costo_unitario') ?: 0;
|
$articolo->costo_unitario = post('costo_unitario') ?: 0;
|
||||||
|
|
Loading…
Reference in New Issue