blob: 125aa74c69e10705656dfc008217502958588db5 (
plain)
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
|
import os
from django.conf import settings
from postgresqleu.util.misc.baseinvoice import BaseInvoice,BaseRefund
class PGDUBase(object):
logo = os.path.join(settings.PROJECT_ROOT, '../media/img/PostgreSQL_logo.1color_blue.300x300.png')
headertext = """PostgreSQL Down Under
Unit 8
66 Bent Street,
McKinnon
VIC 3204
Australia
"""
sendertext = """Your contact: Randal McDonnell
Function: PostgreSQL Down Under Treasurer
E-mail: treasurer@pgdu.org"""
bankinfotext = """Contact treasurer@pgdu.org
"""
paymentterms = """
"""
class PGDUInvoice(PGDUBase, BaseInvoice):
pass
class PGDURefund(PGDUBase, BaseRefund):
pass
|