2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-08-06 20:11:37 +00:00

Add option for TestReport to include tests for installed items

This commit is contained in:
Oliver Walters
2021-02-19 15:50:25 +11:00
parent a9f255be85
commit beeb94785d
2 changed files with 26 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 3.0.7 on 2021-02-19 04:49
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('report', '0012_buildreport'),
]
operations = [
migrations.AddField(
model_name='testreport',
name='include_installed',
field=models.BooleanField(default=False, help_text='Include test results for stock items installed inside assembled item', verbose_name='Include Installed Tests'),
),
]