Added the ability to invoice an event

This commit is contained in:
tomtom5152
2015-01-30 00:26:15 +00:00
parent bbce968478
commit af1396a168
7 changed files with 177 additions and 6 deletions

View File

@@ -0,0 +1,26 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('RIGS', '0017_auto_20150129_2041'),
]
operations = [
migrations.AlterField(
model_name='invoice',
name='void',
field=models.BooleanField(default=False),
preserve_default=True,
),
migrations.AlterField(
model_name='payment',
name='method',
field=models.CharField(max_length=2, choices=[(b'C', b'Cash'), (b'I', b'Internal'), (b'E', b'External'),
(b'SU', b'SU Core')]),
preserve_default=True,
),
]