Index: CHANGELOG.md =================================================================== diff -u -N -r92e834d67d364bbd32d2d9e4308f0c60b0b7d110 -r63821a96e541fc20e39a5aad8bb48f4e80d60aca --- CHANGELOG.md (.../CHANGELOG.md) (revision 92e834d67d364bbd32d2d9e4308f0c60b0b7d110) +++ CHANGELOG.md (.../CHANGELOG.md) (revision 63821a96e541fc20e39a5aad8bb48f4e80d60aca) @@ -11,6 +11,7 @@ * [OLMIS-7581](https://openlmis.atlassian.net/browse/OLMIS-7581): Fixed wrong order of displaying products after adding a new one in Physical Inventory - mobile app * [OLMIS-7582](https://openlmis.atlassian.net/browse/OLMIS-7582): fixed getStockAdjustment function when there is no draft in Physical Inventory - mobile app * [OLMIS-7599](https://openlmis.atlassian.net/browse/OLMIS-7599): fixed refreshing the app - mobile app +* [OLMIS-7593](https://openlmis.atlassian.net/browse/OLMIS-7593): fixed issue with saving the Unaccounted Quantity field in draft Improvements: * [OLMIS-7588](https://openlmis.atlassian.net/browse/OLMIS-7588): Physical Inventory validation for unaccounted quantity - mobile app Index: src/stock-physical-inventory-draft/physical-inventory-draft.controller.js =================================================================== diff -u -N -r65b4d8ff6555ac16d77240a28d324d95863a71fb -r63821a96e541fc20e39a5aad8bb48f4e80d60aca --- src/stock-physical-inventory-draft/physical-inventory-draft.controller.js (.../physical-inventory-draft.controller.js) (revision 65b4d8ff6555ac16d77240a28d324d95863a71fb) +++ src/stock-physical-inventory-draft/physical-inventory-draft.controller.js (.../physical-inventory-draft.controller.js) (revision 63821a96e541fc20e39a5aad8bb48f4e80d60aca) @@ -628,6 +628,10 @@ return item.lot; }); + draft.lineItems.forEach(function(item) { + checkUnaccountedStockAdjustments(item); + }); + vm.updateProgress(); var orderableGroups = orderableGroupService.groupByOrderableId(draft.lineItems); vm.showVVMStatusColumn = orderableGroupService.areOrderablesUseVvm(orderableGroups);