mirror of
https://github.com/inventree/inventree-app.git
synced 2025-05-03 07:48:53 +00:00
Add model for ManufacturerPart
This commit is contained in:
parent
77532a4026
commit
76e0dd6803
@ -58,4 +58,23 @@ class InvenTreeSupplierPart extends InvenTreeModel {
|
||||
|
||||
return part;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
class InvenTreeManufacturerPart extends InvenTreeModel {
|
||||
|
||||
@override
|
||||
String url = "company/part/manufacturer/";
|
||||
|
||||
InvenTreeManufacturerPart() : super();
|
||||
|
||||
InvenTreeManufacturerPart.fromJson(Map<String, dynamic> json) : super.fromJson(json) {
|
||||
}
|
||||
|
||||
@override
|
||||
InvenTreeModel createFromJson(Map<String, dynamic> json) {
|
||||
var part = InvenTreeManufacturerPart.fromJson(json);
|
||||
|
||||
return part;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user