1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-22 22:37:37 +01:00

Bugfix creazione fattura da ddt

This commit is contained in:
Luca 2017-11-28 17:56:36 +01:00
parent 89461d0d2d
commit b09b42608b

View File

@ -850,7 +850,7 @@ switch (post('op')) {
$id_record = $dbo->lastInsertedID();
// Lettura di tutte le righe della tabella in arrivo
for ($i = 0; $i < sizeof($post['qta_da_evadere']); ++$i) {
foreach ($post['qta_da_evadere'] AS $i => $value) {
// Processo solo le righe da evadere
if ($post['evadere'][$i] == 'on') {
$idrigaddt = post('idriga')[$i];