Test result fixes (#564)

* Fix association of test results to templates

* Fixes

* Remove unused vars
This commit is contained in:
Oliver 2024-12-06 10:59:49 +11:00 committed by GitHub
parent b849bfc718
commit 6f5fc1d8a9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 76 additions and 22 deletions

View file

@ -657,7 +657,13 @@ class APIFormField {
) : null,
leading: extended ? InvenTreeAPI().getThumbnail(part.thumbnail) : null,
);
case "parttesttemplate":
var template = InvenTreePartTestTemplate.fromJson(data);
return ListTile(
title: Text(template.testName),
subtitle: Text(template.description),
);
case "supplierpart":
var part = InvenTreeSupplierPart.fromJson(data);