2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-02 11:40:58 +00:00

Ability to filter StockItemList API by sales_order or sales_order_line

This commit is contained in:
Oliver Walters
2020-04-21 17:33:02 +10:00
parent 0d1919f10b
commit 2c6e8da90e
3 changed files with 41 additions and 9 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 3.0.5 on 2020-04-21 07:24
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('stock', '0027_stockitem_sales_order'),
]
operations = [
migrations.RenameField(
model_name='stockitem',
old_name='sales_order',
new_name='sales_order_line',
),
]