Esempio n. 1
0
def deliveryvoucher_list_pdf():
    html = deliveryvoucher_list()
    return render_pdf(HTML(string=html))
Esempio n. 2
0
def inventorylocation_list_pdf():
    html = inventorylocation_list()
    return render_pdf(HTML(string=html))
Esempio n. 3
0
def user_list_pdf():
    html = user_list()
    return render_pdf(HTML(string=html))
Esempio n. 4
0
def warehousevoucher_list_pdf():
    html = warehousevoucher_list()
    return render_pdf(HTML(string=html))
Esempio n. 5
0
def product_list_pdf():
    html = product_list()
    return render_pdf(HTML(string=html))
Esempio n. 6
0
def customer_list_pdf():
    html = customer_list()
    return render_pdf(HTML(string=html))
Esempio n. 7
0
def itemgroup_list_pdf():
    html = itemgroup_list()
    return render_pdf(HTML(string=html))
Esempio n. 8
0
def job_edit_pdf(id):
    html = job_edit(id)
    return render_pdf(HTML(string=html))
Esempio n. 9
0
def job_list_pdf():
    html = job_list()
    return render_pdf(HTML(string=html))
Esempio n. 10
0
def employee_list_pdf():
    html = employee_list()
    return render_pdf(HTML(string=html))
Esempio n. 11
0
def department_list_pdf():
    html = department_list()
    return render_pdf(HTML(string=html))