mirror of
https://github.com/HendrikRauh/inventree-app.git
synced 2026-01-13 03:26:24 +00:00
Display part name
This commit is contained in:
parent
541eca387d
commit
676de0dfe9
2 changed files with 6 additions and 3 deletions
|
|
@ -71,9 +71,10 @@ class _PaginatedPOLineListState extends PaginatedSearchState<PaginatedPOLineList
|
|||
InvenTreeSupplierPart? supplierPart = item.supplierPart;
|
||||
|
||||
if (supplierPart != null) {
|
||||
|
||||
return ListTile(
|
||||
title: Text(supplierPart.SKU),
|
||||
subtitle: Text(supplierPart.partName),
|
||||
subtitle: Text(item.partName),
|
||||
trailing: Text(item.progressString, style: TextStyle(color: item.isComplete ? COLOR_SUCCESS : COLOR_WARNING)),
|
||||
leading: InvenTreeAPI().getThumbnail(supplierPart.partImage),
|
||||
onTap: () async {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue