blob: 761296052b93b4368871d9a7c2bd87ab1b762750 (
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
|
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
1-19 Smith Road
Park Ridge South
QLD 4125
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
|