Merge pull request #24542 from altairisfr/emptyshipping
FIX for emptyshipping
This commit is contained in:
commit
440a526b0a
@ -317,7 +317,7 @@ if (empty($reshook)) {
|
||||
|
||||
//var_dump($batch_line[2]);
|
||||
|
||||
if ($totalqty > 0) { // There is at least one thing to ship
|
||||
if ($totalqty > 0 || !empty($conf->global->SHIPMENT_GETS_ALL_ORDER_PRODUCTS)) { // There is at least one thing to ship
|
||||
//var_dump($_POST);exit;
|
||||
for ($i = 0; $i < $num; $i++) {
|
||||
$qty = "qtyl".$i;
|
||||
@ -327,7 +327,7 @@ if (empty($reshook)) {
|
||||
//shipment from multiple stock locations
|
||||
$nbstockline = count($stockLine[$i]);
|
||||
for ($j = 0; $j < $nbstockline; $j++) {
|
||||
if ($stockLine[$i][$j]['qty'] > 0) {
|
||||
if ($stockLine[$i][$j]['qty'] > 0 || ($stockLine[$i][$j]['qty'] == 0 && !empty($conf->global->SHIPMENT_GETS_ALL_ORDER_PRODUCTS))) {
|
||||
$ret = $object->addline($stockLine[$i][$j]['warehouse_id'], $stockLine[$i][$j]['ix_l'], $stockLine[$i][$j]['qty'], $array_options[$i]);
|
||||
if ($ret < 0) {
|
||||
setEventMessages($object->error, $object->errors, 'errors');
|
||||
@ -336,7 +336,7 @@ if (empty($reshook)) {
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (GETPOST($qty, 'int') > 0 || (GETPOST($qty, 'int') == 0 && $conf->global->SHIPMENT_GETS_ALL_ORDER_PRODUCTS)) {
|
||||
if (GETPOST($qty, 'int') > 0 || (GETPOST($qty, 'int') == 0 && !empty($conf->global->SHIPMENT_GETS_ALL_ORDER_PRODUCTS))) {
|
||||
$ent = "entl".$i;
|
||||
$idl = "idl".$i;
|
||||
$entrepot_id = is_numeric(GETPOST($ent, 'int')) ?GETPOST($ent, 'int') : GETPOST('entrepot_id', 'int');
|
||||
|
||||
Loading…
Reference in New Issue
Block a user