mirror of
https://github.com/inventree/inventree-app.git
synced 2025-08-11 15:00:57 +00:00
PO Line Item Improvements (#340)
* Refactor thumbnail image * Add paginated list of purchase order line items * Refactor getBody() function - No longer "have" to specify - Can use getTiles for a simpler interface * Add detail widget for polineitem * add pricing info * Receive line items via action button * tweak color * update release notes * linting fixes
This commit is contained in:
assets
lib
api.dartapi_form.dart
inventree
l10n
widget
attachment_widget.dartbom_list.dartcompany_detail.dartcompany_list.dartnotifications.dartpart_list.dartpart_suppliers.dartpo_line_detail.dartpo_line_list.dartpurchase_order_detail.dartpurchase_order_list.dartrefreshable_state.dartsearch.dartstock_detail.dartstock_item_test_results.dartstock_list.dartsupplier_part_detail.dartsupplier_part_list.dart
@@ -154,11 +154,7 @@ class _PaginatedPurchaseOrderListState extends PaginatedSearchState<PaginatedPur
|
||||
return ListTile(
|
||||
title: Text(order.reference),
|
||||
subtitle: Text(order.description),
|
||||
leading: supplier == null ? null : InvenTreeAPI().getImage(
|
||||
supplier.thumbnail,
|
||||
width: 40,
|
||||
height: 40,
|
||||
),
|
||||
leading: supplier == null ? null : InvenTreeAPI().getThumbnail(supplier.thumbnail),
|
||||
trailing: Text(
|
||||
InvenTreeAPI().PurchaseOrderStatus.label(order.status),
|
||||
style: TextStyle(
|
||||
|
Reference in New Issue
Block a user