1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
from postgresqleu.util.fields import LowercaseEmailField
from django.conf import settings
class Migration(migrations.Migration):
dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]
operations = [
migrations.CreateModel(
name='Invoice',
fields=[
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
('recipient_email', LowercaseEmailField(max_length=254, blank=True)),
('recipient_name', models.CharField(max_length=100)),
('recipient_address', models.TextField()),
('recipient_secret', models.CharField(max_length=64, null=True, blank=True)),
('title', models.CharField(max_length=100, verbose_name='Invoice title')),
('invoicedate', models.DateTimeField()),
('duedate', models.DateTimeField()),
('canceltime', models.DateTimeField(help_text='Invoice will automatically be canceled at this time', null=True, blank=True)),
('total_amount', models.IntegerField()),
('finalized', models.BooleanField(default=False, blank=True, help_text='Invoice is finalized, should not ever be changed again')),
('deleted', models.BooleanField(default=False, help_text='This invoice has been deleted')),
('deletion_reason', models.CharField(default='', help_text='Reason for deletion of invoice', max_length=500, blank=True)),
('refunded', models.BooleanField(default=False, help_text='This invoice has been refunded')),
('refund_reason', models.CharField(default='', help_text='Reason for refunding of invoice', max_length=500, blank=True)),
('pdf_invoice', models.TextField(blank=True)),
('processorid', models.IntegerField(null=True, blank=True)),
('bankinfo', models.BooleanField(default=True, verbose_name='Include bank details on invoice')),
('paidat', models.DateTimeField(null=True, blank=True)),
('paymentdetails', models.CharField(max_length=100, blank=True)),
('remindersent', models.DateTimeField(null=True, verbose_name='Automatic reminder sent at', blank=True)),
('pdf_receipt', models.TextField(blank=True)),
('accounting_account', models.IntegerField(null=True, verbose_name='Accounting account', blank=True)),
('accounting_object', models.CharField(max_length=30, null=True, verbose_name='Accounting object', blank=True)),
],
options={
'ordering': ('-id',),
},
),
migrations.CreateModel(
name='InvoiceHistory',
fields=[
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
('time', models.DateTimeField(auto_now_add=True)),
('txt', models.CharField(max_length=100)),
('invoice', models.ForeignKey(to='invoices.Invoice', on_delete=models.CASCADE)),
],
options={
'ordering': ['time'],
},
),
migrations.CreateModel(
name='InvoiceLog',
fields=[
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
('timestamp', models.DateTimeField(auto_now_add=True)),
('message', models.TextField()),
('sent', models.BooleanField(default=False)),
],
options={
'ordering': ['-timestamp'],
},
),
migrations.CreateModel(
name='InvoicePaymentMethod',
fields=[
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
('name', models.CharField(max_length=100, help_text="Name used on public site")),
('active', models.BooleanField(default=True)),
('sortkey', models.IntegerField(default=100, verbose_name="Sort key")),
('internaldescription', models.CharField(max_length=100, blank=True, verbose_name="Internal name", help_text="Name used in admin pages and configuration")),
('classname', models.CharField(unique=True, max_length=200)),
('auto', models.BooleanField(default=True, verbose_name='Used by automatically generated invoices')),
],
options={
'ordering': ['sortkey'],
},
),
migrations.CreateModel(
name='InvoiceProcessor',
fields=[
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
('processorname', models.CharField(unique=True, max_length=50)),
('classname', models.CharField(max_length=200)),
],
),
migrations.CreateModel(
name='InvoiceRow',
fields=[
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
('rowtext', models.CharField(max_length=100, verbose_name='Text')),
('rowcount', models.IntegerField(default=1, verbose_name='Count')),
('rowamount', models.IntegerField(default=0, verbose_name='Amount per item')),
('invoice', models.ForeignKey(to='invoices.Invoice', on_delete=models.CASCADE)),
],
),
migrations.AddField(
model_name='invoice',
name='allowedmethods',
field=models.ManyToManyField(to='invoices.InvoicePaymentMethod', verbose_name='Allowed payment methods', blank=True),
),
migrations.AddField(
model_name='invoice',
name='processor',
field=models.ForeignKey(blank=True, to='invoices.InvoiceProcessor', null=True, on_delete=models.CASCADE),
),
migrations.AddField(
model_name='invoice',
name='recipient_user',
field=models.ForeignKey(blank=True, to=settings.AUTH_USER_MODEL, null=True, on_delete=models.CASCADE),
),
]
|