202 lines
No EOL
7.4 KiB
Python
202 lines
No EOL
7.4 KiB
Python
from __future__ import unicode_literals
|
|
from datetime import datetime, date
|
|
from reportlab.lib.enums import TA_CENTER, TA_RIGHT
|
|
from reportlab.lib.pagesizes import letter
|
|
from reportlab.lib.styles import getSampleStyleSheet, ParagraphStyle
|
|
from reportlab.lib.units import inch
|
|
from reportlab.platypus import SimpleDocTemplate, Paragraph, Table
|
|
|
|
from pyinvoice.components import SimpleTable, TableWithHeader, PaidStamp
|
|
from pyinvoice.models import PDFInfo, Item, Transaction, InvoiceInfo, ServiceProviderInfo, ClientInfo
|
|
|
|
|
|
class SimpleInvoice(SimpleDocTemplate):
|
|
default_pdf_info = PDFInfo(title='Invoice', author='CiCiApp.com', subject='Invoice')
|
|
|
|
def __init__(self, invoice_path, pdf_info=None):
|
|
if not pdf_info:
|
|
pdf_info = self.default_pdf_info
|
|
|
|
SimpleDocTemplate.__init__(
|
|
self,
|
|
invoice_path,
|
|
pagesize=letter,
|
|
rightMargin=inch,
|
|
leftMargin=inch,
|
|
topMargin=inch,
|
|
bottomMargin=inch,
|
|
**pdf_info.__dict__
|
|
)
|
|
|
|
self._defined_styles = getSampleStyleSheet()
|
|
self._defined_styles.add(
|
|
ParagraphStyle('RightHeading1', parent=self._defined_styles.get('Heading1'), alignment=TA_RIGHT)
|
|
)
|
|
self._defined_styles.add(
|
|
ParagraphStyle('ItemTableParagraph', parent=self._defined_styles.get('Normal'), alignment=TA_CENTER)
|
|
)
|
|
|
|
self.invoice_info = None
|
|
self.service_provider_info = None
|
|
self.client_info = None
|
|
self.is_paid = False
|
|
self._items = []
|
|
self._transactions = []
|
|
self._story = []
|
|
|
|
@property
|
|
def items(self):
|
|
return self._items[:]
|
|
|
|
def add_item(self, item):
|
|
if isinstance(item, Item):
|
|
self._items.append(item)
|
|
|
|
@property
|
|
def transactions(self):
|
|
return self._transactions[:]
|
|
|
|
def add_transaction(self, t):
|
|
if isinstance(t, Transaction):
|
|
self._transactions.append(t)
|
|
|
|
@staticmethod
|
|
def __format_value(value):
|
|
if isinstance(value, datetime):
|
|
value = value.strftime('%Y-%m-%d %H:%M')
|
|
elif isinstance(value, date):
|
|
value = value.strftime('%Y-%m-%d')
|
|
return value
|
|
|
|
def __attribute_to_table_data(self, instance, attribute_verbose_name_list):
|
|
data = []
|
|
|
|
for property_name, verbose_name in attribute_verbose_name_list:
|
|
attr = getattr(instance, property_name)
|
|
if attr:
|
|
attr = self.__format_value(attr)
|
|
data.append(['{0}:'.format(verbose_name), attr])
|
|
|
|
return data
|
|
|
|
def __build_invoice_info(self):
|
|
if isinstance(self.invoice_info, InvoiceInfo):
|
|
self._story.append(
|
|
Paragraph('Invoice', self._defined_styles.get('RightHeading1'))
|
|
)
|
|
|
|
props = [('invoice_id', 'Invoice id'), ('invoice_datetime', 'Invoice date'),
|
|
('due_datetime', 'Invoice due date')]
|
|
|
|
self._story.append(
|
|
SimpleTable(self.__attribute_to_table_data(self.invoice_info, props), horizontal_align='RIGHT')
|
|
)
|
|
|
|
def __service_provider_data(self):
|
|
props = [('name', 'Name'), ('street', 'Street'), ('city', 'City'), ('state', 'State'),
|
|
('country', 'Country'), ('post_code', 'Post code'), ('vat_tax_number', 'Vat/Tax number')]
|
|
|
|
return self.__attribute_to_table_data(self.service_provider_info, props)
|
|
|
|
def __build_service_provider_info(self):
|
|
# Merchant
|
|
if isinstance(self.service_provider_info, ServiceProviderInfo):
|
|
self._story.append(
|
|
Paragraph('Merchant', self._defined_styles.get('RightHeading1'))
|
|
)
|
|
|
|
self._story.append(
|
|
SimpleTable(self.__service_provider_data(), horizontal_align='RIGHT')
|
|
)
|
|
|
|
def __client_info_data(self):
|
|
props = [('name', 'Name'), ('street', 'Street'), ('city', 'City'), ('state', 'State'),
|
|
('country', 'Country'), ('post_code', 'Post code'), ('email', 'Email'), ('client_id', 'Client id')]
|
|
return self.__attribute_to_table_data(self.client_info, props)
|
|
|
|
def __build_client_info(self):
|
|
# ClientInfo
|
|
if isinstance(self.client_info, ClientInfo):
|
|
self._story.append(
|
|
Paragraph('Client', self._defined_styles.get('Heading1'))
|
|
)
|
|
|
|
self._story.append(
|
|
SimpleTable(self.__client_info_data(), horizontal_align='LEFT')
|
|
)
|
|
|
|
def __build_service_provider_and_client_info(self):
|
|
if isinstance(self.service_provider_info, ServiceProviderInfo) and isinstance(self.client_info, ClientInfo):
|
|
# Merge Table
|
|
table_data = [
|
|
[Paragraph('Service Provider', self._defined_styles.get('Heading1')), '', Paragraph('Client', self._defined_styles.get('Heading1')), '']
|
|
]
|
|
table_style = [
|
|
('SPAN', (0, 0), (1, 0)),
|
|
('SPAN', (2, 0), (3, 0)),
|
|
]
|
|
client_info_data = self.__client_info_data()
|
|
service_provider_data = self.__service_provider_data()
|
|
diff = abs(len(client_info_data) - len(service_provider_data))
|
|
if diff > 0:
|
|
if len(client_info_data) < len(service_provider_data):
|
|
client_info_data.extend([["", ""]]*diff)
|
|
else:
|
|
service_provider_data.extend([["", ""]*diff])
|
|
for d in zip(service_provider_data, client_info_data):
|
|
d[0].extend(d[1])
|
|
table_data.append(d[0])
|
|
self._story.append(
|
|
Table(table_data, style=table_style)
|
|
)
|
|
else:
|
|
self.__build_service_provider_info()
|
|
self.__build_client_info()
|
|
|
|
def __build_items(self):
|
|
# Items
|
|
item_data = [
|
|
(
|
|
item.item_id,
|
|
item.name,
|
|
Paragraph(item.description, self._defined_styles.get('ItemTableParagraph')),
|
|
item.units,
|
|
item.unit_price,
|
|
item.subtotal
|
|
) for item in self._items if isinstance(item, Item)
|
|
]
|
|
|
|
if item_data:
|
|
self._story.append(
|
|
Paragraph('Detail', self._defined_styles.get('Heading1'))
|
|
)
|
|
item_data.insert(0, ('Item id', 'Name', 'Description', 'Units', 'Unit Price', 'Subtotal'))
|
|
self._story.append(TableWithHeader(item_data, horizontal_align='LEFT'))
|
|
|
|
def __build_transactions(self):
|
|
# Transaction
|
|
transaction_table_data = [
|
|
(
|
|
t.transaction_id,
|
|
t.gateway,
|
|
self.__format_value(t.transaction_datetime),
|
|
t.amount
|
|
) for t in self._transactions if isinstance(t, Transaction)
|
|
]
|
|
|
|
if transaction_table_data:
|
|
self._story.append(
|
|
Paragraph('Transaction', self._defined_styles.get('Heading1'))
|
|
)
|
|
transaction_table_data.insert(0, ('Transaction id', 'Gateway', 'Transaction date', 'Amount'))
|
|
self._story.append(TableWithHeader(transaction_table_data, horizontal_align='LEFT'))
|
|
|
|
def finish(self):
|
|
self._story = []
|
|
|
|
self.__build_invoice_info()
|
|
self.__build_service_provider_and_client_info()
|
|
self.__build_items()
|
|
self.__build_transactions()
|
|
|
|
self.build(self._story, onFirstPage=PaidStamp(7 * inch, 5.8 * inch) if self.is_paid else None) |