2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-04 20:51:00 +00:00

Improvements to company API

- Filter by is_manufacturer
- Better table display

(cherry picked from commit f427ee4754)
This commit is contained in:
Oliver Walters
2020-04-13 12:16:42 +10:00
parent 906ed7f64d
commit 094a0fe709
7 changed files with 47 additions and 7 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 2.2.10 on 2020-04-12 23:30
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('company', '0015_company_is_manufacturer'),
]
operations = [
migrations.AlterField(
model_name='company',
name='is_manufacturer',
field=models.BooleanField(default=False, help_text='Does this company manufacture parts?'),
),
]