mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-01 10:37:31 +01:00
Fix movimentazione articoli tra Ddt
This commit is contained in:
parent
03398d37f3
commit
90682d16eb
@ -351,12 +351,17 @@ switch (filter('op')) {
|
|||||||
|
|
||||||
$ddt->save();
|
$ddt->save();
|
||||||
|
|
||||||
|
$evadi_qta_parent = true;
|
||||||
|
if ($documento->tipo->descrizione=='Ddt in uscita' || $documento->tipo->descrizione=='Ddt in entrata') {
|
||||||
|
$evadi_qta_parent = false;
|
||||||
|
}
|
||||||
|
|
||||||
$righe = $documento->getRighe();
|
$righe = $documento->getRighe();
|
||||||
foreach ($righe as $riga) {
|
foreach ($righe as $riga) {
|
||||||
if (post('evadere')[$riga->id] == 'on' and !empty(post('qta_da_evadere')[$riga->id])) {
|
if (post('evadere')[$riga->id] == 'on' and !empty(post('qta_da_evadere')[$riga->id])) {
|
||||||
$qta = post('qta_da_evadere')[$riga->id];
|
$qta = post('qta_da_evadere')[$riga->id];
|
||||||
|
|
||||||
$copia = $riga->copiaIn($ddt, $qta);
|
$copia = $riga->copiaIn($ddt, $qta, $evadi_qta_parent);
|
||||||
|
|
||||||
// Aggiornamento seriali dalla riga dell'ordine
|
// Aggiornamento seriali dalla riga dell'ordine
|
||||||
if ($copia->isArticolo()) {
|
if ($copia->isArticolo()) {
|
||||||
|
Loading…
Reference in New Issue
Block a user