示例#1
0
def execute(party_ids: List[int], supplier_ids: List[int], start_date: str,
            end_date: str):
    """
    Show the Report
    """
    data = grand_total_report(party_ids, supplier_ids, start_date, end_date)
    show_pdf.show_pdf(data, "grand_total_report")
def execute(party_ids: List[int], supplier_ids: List[int], start_date: str,
            end_date: str):
    """
    Show the Report
    """
    data = legacy_payment_list(party_ids, supplier_ids, start_date, end_date)
    show_pdf.show_pdf(data, "legacy_payment_list")
示例#3
0
def execute(party_ids: List[int], supplier_ids: List[int], start_date: str,
            end_date: str):
    """
    Show the Report
    """
    data = supplier_register(party_ids, supplier_ids, start_date, end_date)
    show_pdf.show_pdf(data, "supplier_register_report")
示例#4
0
def execute(party_ids: List[int], supplier_ids: List[int], start_date: str,
            end_date: str):
    """
    Show the Report
    """
    data = payment_list_summary(party_ids, supplier_ids, start_date, end_date)
    show_pdf.show_pdf(data, "payment_list_summary")