diff --git a/netforce_clinic/layouts/clinic_hd_case_expense_form.xml b/netforce_clinic/layouts/clinic_hd_case_expense_form.xml index caec5e2..e5c45e2 100644 --- a/netforce_clinic/layouts/clinic_hd_case_expense_form.xml +++ b/netforce_clinic/layouts/clinic_hd_case_expense_form.xml @@ -7,7 +7,7 @@ - + diff --git a/netforce_clinic/models/report_hd_case_summary.py b/netforce_clinic/models/report_hd_case_summary.py index a4c7117..3aaa705 100644 --- a/netforce_clinic/models/report_hd_case_summary.py +++ b/netforce_clinic/models/report_hd_case_summary.py @@ -151,7 +151,6 @@ class ReportHDCaseSummary(Model): dom=[] time_start='%s-%s-01'%(year,str(crr_month).zfill(2)) time_stop='%s-%s-%s'%(year,str(crr_month).zfill(2),crr_total_day) - print(time_start, ' ', time_stop, crr_total_day, crr_month,) dom.append(['reg_date','>=',time_start]) dom.append(['reg_date','<=',time_stop]) dom.append(['type_id','=',ptype['id']]) @@ -161,7 +160,7 @@ class ReportHDCaseSummary(Model): 'month': '', 'qty': len(npatients), 'action': 'clinic_patient', - 'action_options': 'mode=list&search_domain=%s&tab_no=2'%dom, + 'action_options': 'mode=list&search_domain=%s'%dom, } count+=1