2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-04-28 05:26:47 +00:00

Use the new API notation for external URL ('link')

This commit is contained in:
Oliver Walters 2020-04-05 19:19:44 +10:00
parent fbd52e1414
commit 65d955bcc6
2 changed files with 3 additions and 2 deletions

View File

@ -45,7 +45,8 @@ class InvenTreeModel {
int get parentId => jsondata['parent'] ?? -1;
String get link => jsondata['URL'] ?? '';
// Legacy API provided external link as "URL", while newer API uses "link"
String get link => jsondata['link'] ?? jsondata['URL'] ?? '';
// Create a new object from JSON data (not a constructor!)
InvenTreeModel createFromJson(Map<String, dynamic> json) {

View File

@ -104,7 +104,7 @@ class _PartDisplayState extends State<PartDisplayWidget> {
tiles.add(
Card(
child: ListTile(
title: Text("In Stock"),
title: Text("Stock"),
leading: FaIcon(FontAwesomeIcons.boxes),
trailing: Text("${part.inStock}"),
onTap: null,