Changeset 10333 for main/waeup.kofa/trunk/src/waeup/kofa/browser/pdf.py
- Timestamp:
- 21 Jun 2013, 15:42:30 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/browser/pdf.py
r10328 r10333 91 91 fontName='Helvetica', 92 92 fontSize=10, 93 leading=9, 93 94 ) 94 95 … … 700 701 if twoDataCols is True and lines > 2: 701 702 table_left = Table(table_data[:middle], 702 style=table_style, colWidths=[ 4*cm, 5*cm])703 style=table_style, colWidths=[3*cm, 6.3*cm]) 703 704 table_right = Table(table_data[middle:], 704 style=table_style, colWidths=[ 4*cm, 5*cm])705 table_style.append(('LEFTPADDING', (0,0), (0,-1), 3.147*cm),)705 style=table_style, colWidths=[3*cm, 6.3*cm]) 706 table_style.append(('LEFTPADDING', (0,0), (0,-1), 1.2*cm),) 706 707 table = Table([[table_left, table_right],],style=table_style) 707 708 return table
Note: See TracChangeset for help on using the changeset viewer.