2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-16 12:05:53 +00:00

Markdownify the notes field for PurchaseOrder

- Update model field
- Create tab view for PO page
- Add 'notes' tab
This commit is contained in:
Oliver Walters
2020-02-02 11:44:44 +11:00
parent a7846940c4
commit 7ec194a14a
8 changed files with 254 additions and 120 deletions

View File

@ -0,0 +1,19 @@
# Generated by Django 2.2.9 on 2020-02-01 23:46
from django.db import migrations
import markdownx.models
class Migration(migrations.Migration):
dependencies = [
('order', '0014_auto_20191118_2328'),
]
operations = [
migrations.AlterField(
model_name='purchaseorder',
name='notes',
field=markdownx.models.MarkdownxField(blank=True, help_text='Order notes'),
),
]