Esempio n. 1
0
def get_report_customeryn_per_month(type, year, month):
    try:
        return report_factors.generate_report_bymonth('CustomerYN', year, month, type)
    except:
        print "Unexpected error:", sys.exc_info()[0]
        raise
Esempio n. 2
0
def get_report_area_per_month(type, year, month):
    try:
        return report_factors.generate_report_bymonth('BoardArea', year, month, type)
    except:
        print "Unexpected error:", sys.exc_info()[0]
        raise