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:
18
InvenTree/stock/migrations/0028_auto_20200421_0724.py
Normal file
18
InvenTree/stock/migrations/0028_auto_20200421_0724.py
Normal 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',
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user