2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-06-13 10:45:29 +00:00

Update company detail display page

This commit is contained in:
Oliver
2021-10-03 23:36:26 +11:00
parent 488df25758
commit 98e0106a81
2 changed files with 15 additions and 0 deletions

View File

@ -174,6 +174,17 @@ class _CompanyDetailState extends RefreshableState<CompanyDetailWidget> {
}
)
);
// TODO: Display "supplied parts" count (click through to list of supplier parts)
/*
tiles.add(
ListTile(
title: Text(L10().suppliedParts),
leading: FaIcon(FontAwesomeIcons.shapes),
trailing: Text("${company.partSuppliedCount}"),
)
);
*/
}
if (company.isManufacturer) {