mirror of
https://github.com/HendrikRauh/inventree-app.git
synced 2026-01-13 03:26:24 +00:00
Add default list filters for SupplierPart
This commit is contained in:
parent
aa24274cb3
commit
0b44b3a0c9
1 changed files with 9 additions and 0 deletions
|
|
@ -46,6 +46,15 @@ class InvenTreeSupplierPart extends InvenTreeModel {
|
|||
@override
|
||||
String url = "company/part/";
|
||||
|
||||
@override
|
||||
Map<String, String> defaultListFilters() {
|
||||
return {
|
||||
"manufacturer_detail": "true",
|
||||
"supplier_detail": "true",
|
||||
"supplier_part_detail": "true",
|
||||
};
|
||||
}
|
||||
|
||||
InvenTreeSupplierPart() : super();
|
||||
|
||||
InvenTreeSupplierPart.fromJson(Map<String, dynamic> json) : super.fromJson(json) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue