2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-17 12:35:46 +00:00

Limit choices for Part selection

Based on is_template / virtual / active status
This commit is contained in:
Oliver Walters
2020-03-18 21:28:11 +11:00
parent b2cb41f879
commit 8eaaf62eda
6 changed files with 67 additions and 1 deletions

View File

@ -0,0 +1,19 @@
# Generated by Django 2.2.9 on 2020-03-18 10:27
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('build', '0009_auto_20200210_1032'),
]
operations = [
migrations.AlterField(
model_name='build',
name='part',
field=models.ForeignKey(help_text='Select part to build', limit_choices_to={'active': True, 'assembly': True, 'is_template': False, 'virtual': False}, on_delete=django.db.models.deletion.CASCADE, related_name='builds', to='part.Part'),
),
]