mirror of
https://github.com/inventree/inventree-app.git
synced 2025-06-16 12:15:31 +00:00
Update company detail display page
This commit is contained in:
@ -48,6 +48,10 @@ class InvenTreeCompany extends InvenTreeModel {
|
||||
|
||||
bool get isCustomer => (jsondata["is_customer"] ?? false) as bool;
|
||||
|
||||
int get partSuppliedCount => (jsondata["parts_supplied"] ?? 0) as int;
|
||||
|
||||
int get partManufacturedCount => (jsondata["parts_manufactured"] ?? 0) as int;
|
||||
|
||||
// Request a list of purchase orders against this company
|
||||
Future<List<InvenTreePurchaseOrder>> getPurchaseOrders({bool? outstanding}) async {
|
||||
|
||||
|
Reference in New Issue
Block a user