2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-06-12 10:15:32 +00:00
This commit is contained in:
Oliver Walters
2021-02-22 22:05:50 +11:00
parent 9f5583ee68
commit d93f32ac2c
4 changed files with 18 additions and 3 deletions

View File

@ -234,6 +234,19 @@ class _PartDisplayState extends RefreshableState<PartDetailWidget> {
),
);
if (false && part.isPurchaseable) {
if (part.supplier_count > 0) {
tiles.add(
ListTile(
title: Text("Suppliers"),
leading: FaIcon(FontAwesomeIcons.industry),
trailing: Text("${part.supplier_count}"),
)
);
}
}
// TODO - Add link to parts on order
// Parts on order
if (false && part.isPurchaseable) {