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

Fix for bug b)

- Don't attempt to save if there are duplicates
- Fix overwritten variable name
- Provide correct return data to the form
This commit is contained in:
Oliver Walters
2020-02-06 23:22:55 +11:00
parent 2949289fab
commit 4bd4f2a0a3
3 changed files with 42 additions and 20 deletions

View File

@ -0,0 +1,19 @@
# Generated by Django 2.2.9 on 2020-02-06 12:13
from django.db import migrations
import markdownx.models
class Migration(migrations.Migration):
dependencies = [
('stock', '0019_auto_20200202_1024'),
]
operations = [
migrations.AlterField(
model_name='stockitem',
name='notes',
field=markdownx.models.MarkdownxField(blank=True, help_text='Stock Item Notes', null=True),
),
]