2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-04-28 05:26:47 +00:00

Merge pull request #120 from inventree/units-fix

Fix duplicate display of units
This commit is contained in:
Oliver 2022-05-07 15:38:36 +10:00 committed by GitHub
commit 97b4eefc13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 8 deletions

View File

@ -6,6 +6,7 @@
- Refactor home screen display
- Display unread notifications on home screen
- Fixes duplicated display of units when showing stock quantity
### 0.6.2 - April 2022
---

View File

@ -261,10 +261,6 @@ class InvenTreePart extends InvenTreeModel {
String q = simpleNumberString(inStock);
if (units.isNotEmpty) {
q += " ${units}";
}
return q;
}
@ -282,10 +278,6 @@ class InvenTreePart extends InvenTreeModel {
String get unallocatedStockString {
String q = simpleNumberString(unallocatedStock);
if (units.isNotEmpty) {
q += " ${units}";
}
return q;
}