Fixing style errors.

This commit is contained in:
stickler-ci 2022-02-02 14:38:33 +00:00
parent 952d77c8e1
commit 390d8694da
2 changed files with 7 additions and 14 deletions

View File

@ -33,7 +33,6 @@ $fk_product = GETPOST('product_id', 'int');
$action = GETPOST('action', 'alphanohtml'); $action = GETPOST('action', 'alphanohtml');
if ($action == 'updateselectbatchbywarehouse') { if ($action == 'updateselectbatchbywarehouse') {
$TRes = array(); $TRes = array();
$sql = "SELECT pb.batch, pb.rowid, ps.fk_entrepot, pb.qty, e.ref as label, ps.fk_product"; $sql = "SELECT pb.batch, pb.rowid, ps.fk_entrepot, pb.qty, e.ref as label, ps.fk_product";
@ -54,7 +53,6 @@ if($action == 'updateselectbatchbywarehouse') {
print json_encode($TRes); print json_encode($TRes);
} elseif ($action == 'updateselectwarehousebybatch') { } elseif ($action == 'updateselectwarehousebybatch') {
$res = 0; $res = 0;
$sql = "SELECT pb.batch, pb.rowid, ps.fk_entrepot, e.ref, pb.qty"; $sql = "SELECT pb.batch, pb.rowid, ps.fk_entrepot, e.ref, pb.qty";
@ -75,8 +73,4 @@ if($action == 'updateselectbatchbywarehouse') {
} }
print json_encode($res); print json_encode($res);
} }

View File

@ -184,7 +184,6 @@ if (empty($reshook)) {
$pos = 0; $pos = 0;
// Process line to consume // Process line to consume
foreach ($object->lines as $line) { foreach ($object->lines as $line) {
if ($line->role == 'toconsume') { if ($line->role == 'toconsume') {
$tmpproduct = new Product($db); $tmpproduct = new Product($db);
$tmpproduct->fetch($line->fk_product); $tmpproduct->fetch($line->fk_product);