mirror of
https://github.com/HendrikRauh/inventree-app.git
synced 2026-01-14 12:06:24 +00:00
v0.1.1
This commit is contained in:
parent
9f5583ee68
commit
d93f32ac2c
4 changed files with 18 additions and 3 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue