|
6 | 6 |
|
7 | 7 | # data which we are going to display as tables
|
8 | 8 | DATA = [
|
9 | | - [ "Date" , "Name", "Subscription", "Price (Rs.)" ], |
10 | | - [ |
11 | | - "08/08/2023", |
12 | | - "Full Stack Development with React & Node JS - Live", |
13 | | - "Lifetime", |
14 | | - "10,999.00/-", |
15 | | - ], |
16 | | - [ "08/08/2023", "Data Structures and Algorithms: Live Session", "6 months", "9,999.00/-"], |
17 | | - [ "Sub Total", "", "", "20,9998.00/-"], |
18 | | - [ "Discount", "", "", "-3,000.00/-"], |
19 | | - [ "Total", "", "", "17,998.00/-"], |
| 9 | + ["Date", "Name", "Subscription", "Price (Rs.)"], |
| 10 | + [ |
| 11 | + "08/08/2023", |
| 12 | + "Full Stack Development with React & Node JS - Live", |
| 13 | + "Lifetime", |
| 14 | + "10,999.00/-", |
| 15 | + ], |
| 16 | + ["08/08/2023", "Data Structures and Algorithms: Live Session", |
| 17 | + "6 months", "9,999.00/-"], |
| 18 | + ["Sub Total", "", "", "20,9998.00/-"], |
| 19 | + ["Discount", "", "", "-3,000.00/-"], |
| 20 | + ["Total", "", "", "17,998.00/-"], |
20 | 21 | ]
|
21 | 22 |
|
22 | 23 | # creating a Base Document Template of page size A4
|
23 | | -pdf = SimpleDocTemplate("receipt.pdf", pagesize=A4) |
| 24 | +pdf = SimpleDocTemplate("receipt.pdf", pagesize=A4) |
24 | 25 |
|
25 | 26 | # standard stylesheet defined within reportlab itself
|
26 | 27 | styles = getSampleStyleSheet()
|
27 | 28 |
|
28 | 29 | # fetching the style of Top level heading (Heading1)
|
29 | | -title_style = styles["Heading1"] |
| 30 | +title_style = styles["Heading1"] |
30 | 31 |
|
31 | 32 | # 0: left, 1: center, 2: right
|
32 | 33 | title_style.alignment = 1
|
33 | 34 |
|
34 | 35 | # creating the paragraph with
|
35 | 36 | # the heading text and passing the styles of it
|
36 | | -title = Paragraph("Your Payment Receipt", title_style) |
| 37 | +title = Paragraph("Your Payment Receipt", title_style) |
37 | 38 |
|
38 | 39 | # creates a Table Style object and in it,
|
39 | 40 | # defines the styles row wise
|
40 | 41 | # the tuples which look like coordinates
|
41 | 42 | # are nothing but rows and columns
|
42 | 43 | style = TableStyle(
|
43 | | -[ |
44 | | - ( "BOX", (0, 0), (-1, -1), 1, colors.black), |
45 | | - ( "GRID", (0, 0), (4, 4), 1, colors.black), |
46 | | - ( "BACKGROUND", (0, 0), (3, 0), colors.gray), |
47 | | - ( "TEXTCOLOR", (0, 0), (-1, 0), colors.whitesmoke), |
48 | | - ( "ALIGN", (0, 0), (-1, -1), "CENTER"), |
49 | | - ( "BACKGROUND", (0, 1 ) , (-1, -1), colors.beige), |
50 | | -] |
| 44 | +[ |
| 45 | + ("BOX", (0, 0), (-1, -1), 1, colors.black), |
| 46 | + ("GRID", (0, 0), (4, 4), 1, colors.black), |
| 47 | + ("BACKGROUND", (0, 0), (3, 0), colors.gray), |
| 48 | + ("TEXTCOLOR", (0, 0), (-1, 0), colors.whitesmoke), |
| 49 | + ("ALIGN", (0, 0), (-1, -1), "CENTER"), |
| 50 | + ("BACKGROUND", (0, 1), (-1, -1), colors.beige), |
| 51 | +] |
51 | 52 | )
|
52 | 53 |
|
53 | 54 | # creates a table object and passes the style to it
|
54 | | -table = Table(DATA, style=style) |
| 55 | +table = Table(DATA, style=style) |
55 | 56 |
|
56 | 57 | # final step which builds the
|
57 | 58 | # actual pdf putting together all the elements
|
58 | | -pdf.build([title, table]) |
| 59 | +pdf.build([title, table]) |
0 commit comments