diff options
| author | Mitch Riedstra <Mitch@riedstra.us> | 2017-11-09 15:57:46 -0500 |
|---|---|---|
| committer | Mitch Riedstra <Mitch@riedstra.us> | 2017-11-09 15:57:46 -0500 |
| commit | 33a6e5cb02189b7621a279c32c12b5c3d83ba680 (patch) | |
| tree | 6d9776af90222f8062921b62fc7f6f4b5fa01dc7 /app/dispatch/migrations | |
| parent | c055260bb88fd407c81ad0d40dd288a5aae4fb17 (diff) | |
| download | dispatch-tracker-33a6e5cb02189b7621a279c32c12b5c3d83ba680.tar.gz dispatch-tracker-33a6e5cb02189b7621a279c32c12b5c3d83ba680.tar.xz | |
Show number of attachments, and color code issues with loads.
Prevent invoice generation on zero amounts and no attachments.
Add a way for superusers to edit invoices.
Add a field to invoices for a payment identifier. E.g. "Check #1234"
Diffstat (limited to 'app/dispatch/migrations')
| -rw-r--r-- | app/dispatch/migrations/0001_initial.py | 2 | ||||
| -rw-r--r-- | app/dispatch/migrations/0002_auto_20171107_1912.py (renamed from app/dispatch/migrations/0002_auto_20171102_1949.py) | 4 | ||||
| -rw-r--r-- | app/dispatch/migrations/0003_invoice_payment_identifer.py | 20 |
3 files changed, 23 insertions, 3 deletions
diff --git a/app/dispatch/migrations/0001_initial.py b/app/dispatch/migrations/0001_initial.py index a358b07..d2aa2f8 100644 --- a/app/dispatch/migrations/0001_initial.py +++ b/app/dispatch/migrations/0001_initial.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Generated by Django 1.11.5 on 2017-11-02 19:49 +# Generated by Django 1.11.5 on 2017-11-07 19:12 from __future__ import unicode_literals import dispatch.misc diff --git a/app/dispatch/migrations/0002_auto_20171102_1949.py b/app/dispatch/migrations/0002_auto_20171107_1912.py index 4be45e9..059d7be 100644 --- a/app/dispatch/migrations/0002_auto_20171102_1949.py +++ b/app/dispatch/migrations/0002_auto_20171107_1912.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Generated by Django 1.11.5 on 2017-11-02 19:49 +# Generated by Django 1.11.5 on 2017-11-07 19:12 from __future__ import unicode_literals from django.conf import settings @@ -12,8 +12,8 @@ class Migration(migrations.Migration): initial = True dependencies = [ - migrations.swappable_dependency(settings.AUTH_USER_MODEL), ('dispatch', '0001_initial'), + migrations.swappable_dependency(settings.AUTH_USER_MODEL), ] operations = [ diff --git a/app/dispatch/migrations/0003_invoice_payment_identifer.py b/app/dispatch/migrations/0003_invoice_payment_identifer.py new file mode 100644 index 0000000..21130a7 --- /dev/null +++ b/app/dispatch/migrations/0003_invoice_payment_identifer.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.5 on 2017-11-09 20:53 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('dispatch', '0002_auto_20171107_1912'), + ] + + operations = [ + migrations.AddField( + model_name='invoice', + name='payment_identifer', + field=models.CharField(default='', max_length=256), + ), + ] |
