mirror of
https://github.com/HendrikRauh/inventree-app.git
synced 2026-01-13 03:26:24 +00:00
Update company detail display page
This commit is contained in:
parent
488df25758
commit
98e0106a81
2 changed files with 15 additions and 0 deletions
|
|
@ -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 {
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue