Openbravo Issue Tracking System - Modules
View Issue Details
0048135ModulesAdvanced Warehouse Operationspublic2021-11-23 12:312021-12-14 16:13
davidverrier 
vmromanos 
normalminoralways
closedduplicate 
5
 
 
vmromanos
0048135: Inventory Count: unable to make difference between "not counted yet" and "counted at 0"
While fixing another issue (https://issues.openbravo.com/view.php?id=48123 [^]), it was discovered that is it currently not possible to make a difference between "not counted yet" and "counted at 0".

This has an impact when navigating away and back to the count document.
GIVEN I have counted stock with a value of 0 in non-blind inventory count
WHEN I navigate back to the task list AND click on the count document
THEN I should see the previous quantity counted of 0 and not the quantity on hand
1. Initialize the count info document lines qtyCounted to null or undefined instead of 0
2. Update the section of the model where qtyCounted is set for non-blind inventory count with a check for null or undefined: instead of "qty: qtyCounted ? qtyCounted : qtyOnHand" use "qty: qtyCounted >= 0 ? qtyCounted : qtyOnHand"
No tags attached.
duplicate of defect 0048123 closed ranjith_qualiantech_com using not blind count -> qty counted is 0 if nothing is counted but UI shows qtyOnHand as counted 
related to defect 0048241 closed vmromanos "Initialize Quantity Count with Book Quantity" and manual backoffice lines 
Issue History
2021-11-23 12:31davidverrierNew Issue
2021-11-23 12:31davidverrierAssigned To => vmromanos
2021-11-23 13:20guilleaerRelationship addeddepends on 0048123
2021-12-13 18:06guilleaerRelationship addedrelated to 0048241
2021-12-14 16:13vmromanosReview Assigned To => vmromanos
2021-12-14 16:13vmromanosRelationship replacedduplicate of 0048123
2021-12-14 16:13vmromanosNote Added: 0133698
2021-12-14 16:13vmromanosStatusnew => closed
2021-12-14 16:13vmromanosResolutionopen => duplicate
2022-09-06 17:18caristuCategoryAdvance Warehouse Operations => Advanced Warehouse Operations

Notes
(0133698)
vmromanos   
2021-12-14 16:13   
This issue has been fixed after reimplementing 0048123

https://gitlab.com/openbravo/ci/mobile-test/-/merge_requests/151 [^]
https://gitlab.com/openbravo/product/pmods/org.openbravo.warehouse.advancedwarehouseoperations/-/merge_requests/39 [^]

Documentation: http://wiki.openbravo.com/wiki/Modules:Advanced_Warehouse_Operations/Inventory_Count#Blind_counts [^]