From d508062f487e24d836e3956c0c4745278d9d26bf Mon Sep 17 00:00:00 2001 From: "watcha.h@almacom.co.th" Date: Thu, 9 Apr 2015 11:57:08 +0700 Subject: [PATCH] improve --- netforce_clinic/models/report_labor_cost.py | 23 +++++++++++---------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/netforce_clinic/models/report_labor_cost.py b/netforce_clinic/models/report_labor_cost.py index b190080..66d9fa9 100644 --- a/netforce_clinic/models/report_labor_cost.py +++ b/netforce_clinic/models/report_labor_cost.py @@ -196,17 +196,6 @@ class ReportLaborCost(Model): 'name': 'รวม', 'amount': total_amount, }) - dlines.append({ - 'name': 'แพทย์', - 'qty': 'จำนวนครั้ง', - 'qty2': 'ไม่จ่ายแพทย์', - 'total_qty': 'รวมจำนวนครั้ง', - 'cost': 'เป็นยอดเงินรวม', - 'desc': True, - 'department_id': None, - 'branch_id':None, - 'staff_type': 'doctor', - }) for dt_name,vals in ddata.items(): qty=vals['qty'] or 0 department_id=vals['department_id'] @@ -224,6 +213,17 @@ class ReportLaborCost(Model): 'branch_id': branch_id, 'staff_type': 'doctor', }) + dlines=[{ + 'name': 'แพทย์', + 'qty': 'จำนวนครั้ง', + 'qty2': 'ไม่จ่ายแพทย์', + 'total_qty': 'รวมจำนวนครั้ง', + 'cost': 'เป็นยอดเงินรวม', + 'desc': True, + 'department_id': None, + 'branch_id':None, + 'staff_type': 'doctor', + }]+sorted(dlines,key=lambda x: x['name']) dlines.append({ 'name': 'รวม', 'qty': 0, @@ -264,6 +264,7 @@ class ReportLaborCost(Model): 'total': 0, 'staff_type': 'nurse', }) + nlines=sorted(nlines, key=lambda x: x['name']) nlines.append({ 'name': 'รวม', 'qty': 0,