mirror of
https://github.com/iluvcapra/ptulsconv.git
synced 2026-01-01 17:30:47 +00:00
20 lines
410 B
Python
20 lines
410 B
Python
from reportlab.pdfgen.canvas import Canvas
|
|
|
|
from reportlab.pdfbase import pdfmetrics
|
|
from reportlab.pdfbase.ttfonts import TTFont
|
|
|
|
from reportlab.lib.units import inch
|
|
from reportlab.lib.pagesizes import letter
|
|
|
|
from reportlab.lib.styles import getSampleStyleSheet
|
|
from reportlab.platypus import Paragraph
|
|
|
|
from .common import GRect
|
|
|
|
import datetime
|
|
|
|
|
|
def output_report(records):
|
|
# order by start
|
|
|
|
pass |