mirror of
https://github.com/HendrikRauh/inventree-app.git
synced 2026-01-13 11:36:24 +00:00
Show if stock item is "in production"
This commit is contained in:
parent
0b3e716827
commit
fd8fc9051a
3 changed files with 17 additions and 2 deletions
|
|
@ -230,6 +230,8 @@ class InvenTreeStockItem extends InvenTreeModel {
|
|||
|
||||
int get trackingItemCount => (jsondata["tracking_items"] ?? 0) as int;
|
||||
|
||||
bool get isBuilding => (jsondata["is_building"] ?? false) as bool;
|
||||
|
||||
// Date of last update
|
||||
DateTime? get updatedDate {
|
||||
if (jsondata.containsKey("updated")) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue