Commit d9189217 by Damien Moulard

linting

parent da215ede
Pipeline #2194 passed with stage
in 1 minute 30 seconds
......@@ -119,6 +119,7 @@ function select_product_from_bc(barcode) {
if (foundProduct.place === 'to_process') {
let row = table_to_process.row($('#'+foundProduct.data.product_id[0]));
remove_from_toProcess(row, foundProduct.data);
}
// Don't remove product from processed list
......@@ -1179,6 +1180,7 @@ function editProductInfo (productToEdit, value = null, batch = false) {
// - product comes from processed list
if (addition === true || firstUpdate === false) {
let row = table_processed.row($('#'+productToEdit.product_id[0]));
remove_from_processed(row, productToEdit);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment