2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-06-16 12:15:31 +00:00

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
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);