2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-05-01 15:06:49 +00:00

Add default list filters for ManufacturerPart

This commit is contained in:
Oliver 2021-08-02 16:31:44 +10:00
parent 0b44b3a0c9
commit 944f1e2cdc

View File

@ -83,6 +83,13 @@ class InvenTreeManufacturerPart extends InvenTreeModel {
@override
String url = "company/part/manufacturer/";
@override
Map<String, String> defaultListFilters() {
return {
"manufacturer_detail": "true",
};
}
InvenTreeManufacturerPart() : super();
InvenTreeManufacturerPart.fromJson(Map<String, dynamic> json) : super.fromJson(json) {