xxx
parent
593ffd6248
commit
e86640ea42
|
@ -128,7 +128,6 @@ class ReportCycleSetting(Model):
|
||||||
pts[key]['sun_cycle_id']=cycle.name
|
pts[key]['sun_cycle_id']=cycle.name
|
||||||
|
|
||||||
lines=[]
|
lines=[]
|
||||||
no=1
|
|
||||||
for k, vals in pts.items():
|
for k, vals in pts.items():
|
||||||
pt_id, dpt_id=k
|
pt_id, dpt_id=k
|
||||||
if pt_id:
|
if pt_id:
|
||||||
|
@ -138,12 +137,17 @@ class ReportCycleSetting(Model):
|
||||||
dpt_id=pt.department_id.id
|
dpt_id=pt.department_id.id
|
||||||
if dpt_id:
|
if dpt_id:
|
||||||
vals['department_id']=dpt_id
|
vals['department_id']=dpt_id
|
||||||
vals['no']=no
|
|
||||||
lines.append(vals)
|
lines.append(vals)
|
||||||
|
|
||||||
|
no=1
|
||||||
|
nlines=[]
|
||||||
|
for line in sorted(lines,key=lambda x:x['patient_name']):
|
||||||
|
line['no']=no
|
||||||
|
nlines.append(line)
|
||||||
no+=1
|
no+=1
|
||||||
|
|
||||||
data={
|
data={
|
||||||
'lines': lines,
|
'lines': nlines,
|
||||||
'department_id': department_id,
|
'department_id': department_id,
|
||||||
}
|
}
|
||||||
return data
|
return data
|
||||||
|
|
Loading…
Reference in New Issue