Re: Trying to get rid of a space.
patsy_ehmke--- via Tutor <[email protected]> Thu, 11 Jun 2026 11:02:49 -0000
| Newsgroups | gmane.comp.python.tutor |
|---|---|
| Message-ID | <[email protected]> |
This is the code I added - the bit between Begin & End job.
def _create_details_section(self, content):
data = [
[
self._create_text('Customer', extra_tags='<b>'),
'',
'',
''
],
[
self._create_text('Name'),
self._create_text(self.data_dict.get('cl_name')),
self._create_text('Date'),
self._create_text(self.data_dict.get('date_enter'))
],
#Begin job 366609
[
self._create_text('A.B.N'),
self._create_text(self.data_dict.get('cl_abn')),
'',
''
],
#End job 366609
[
self._create_text('Address'),
self._create_text(self.data_dict.get('cl_address')),
'',
''
],
]
style = [('LINEAFTER', (1, 0), (1, 2), 0.25, colors.black)]
t = Table(data=data, colWidths=[3.25 * cm, 9.75 * cm, 3.25 * cm, 3.25 * cm], style=style)
content.append(t)
data = [
I can't seem to paste a snip of the invoices - they are .pdf files - is there a way to attach them?
_______________________________________________
Tutor maillist - To unsubscribe send an email to [email protected]
To unsubscribe or change subscription options:
%(web_page_url)slistinfo/%(_internal_name)s