2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-06-12 10:15:32 +00:00

Display number of items on order

This commit is contained in:
Oliver
2021-08-02 20:07:29 +10:00
parent 71ef6b3c5a
commit 48d5c2e560
2 changed files with 10 additions and 1 deletions

View File

@ -346,7 +346,7 @@ class _PartDisplayState extends RefreshableState<PartDetailWidget> {
title: Text(L10().onOrder),
subtitle: Text(L10().onOrderDetails),
leading: FaIcon(FontAwesomeIcons.shoppingCart),
trailing: Text("${part.onOrder}"),
trailing: Text("${part.onOrderString}"),
onTap: () {
// TODO - Order views
},