clinic/netforce_clinic/models/report_cycle_item.py

303 lines
11 KiB
Python

import time
from calendar import monthrange
from netforce.model import Model,fields,get_model
from netforce.access import get_active_company
from . import utils
class ReportCycleItem(Model):
_name="clinic.report.cycle.item"
_string="Report Cycle Item"
_transient=True
_fields={
"date": fields.Date("Month"),
"date_from": fields.Date("From", required=True),
"date_to": fields.Date("To", required=True),
"cycle_id": fields.Many2One("clinic.cycle","Cycle"),
"ptype_id": fields.Many2One("clinic.patient.type","Patient Type"),
'branch_id': fields.Many2One("clinic.branch","Branch"),
'department_id': fields.Many2One("clinic.department","Department"),
}
def default_get(self,field_names=None,context={},**kw):
defaults=context.get("defaults",{})
date=defaults.get('date',time.strftime("%Y-%m-%d"))
#year,month=time.strftime("%Y-%m").split("-")
datenow=time.strftime("%Y-%m-%d")
date_from=defaults.get('date_from',datenow)
date_to=defaults.get('date_to',datenow)
branch_id=defaults.get('branch_id')
if branch_id:
branch_id=int(branch_id)
department_id=defaults.get('department_id')
if department_id:
department_id=int(department_id)
ptype_id=defaults.get('ptype_id')
res=get_model('select.company').get_select()
if res:
if not branch_id:
branch_id=res['branch_id']
if not department_id:
if res.get("department_ids"):
department_id=res['department_ids'][0]
else:
department_id=res['department_id']
res={
'date': date,
'date_from': date_from,
'date_to': date_to,
'branch_id': branch_id,
'department_id': department_id,
'ptype_id': ptype_id,
}
print('report.cycle.item.defautls', res)
return res
def get_report_data(self,ids,context={}):
company_id=get_active_company()
company=get_model('company').browse(company_id)
defaults=self.default_get(context=context)
date_from=defaults.get("date_from")
date_to=defaults.get("date_to")
branch_id=defaults.get("branch_id")
department_id=defaults.get("department_id")
ptype_id=defaults.get("ptype_id")
print('date_from ', date_from)
month=date_from.split("-")[1]
cycle_id=None
if ids:
obj=self.browse(ids)[0]
month=obj.date_from.split("-")[1]
date_from=obj.date_from
date_to=obj.date_to
branch_id=obj.branch_id.id
department_id=obj.department_id.id
cycle_id=obj.cycle_id.id
ptype_id=obj.ptype_id.id
# new patient of this month
dom=[]
dom.append(['date','>=',date_from])
dom.append(['date','<=',date_to])
dom.append(['state','=','validated'])
if cycle_id:
dom.append(['cycle_id','=',cycle_id])
if branch_id:
dom.append(['branch_id','=',branch_id])
if department_id:
dom.append(['department_id','=',department_id])
lines=[]
cycles={}
vasculars={}
for vscl in get_model("clinic.vascular.access").search_read([],['code','description']):
vasculars[vscl['code']]={
'qty': 0,
'description': vscl['description'] or ''
}
ptypes={}
for ptype in get_model("clinic.patient.type").search_read([],['name']):
ptypes[ptype['name'] or ""]=0
for citem in get_model('clinic.cycle.item').search_browse(dom,order="date"):
cycle=citem.cycle_id
date=citem.date
key='%s-%s'%(date,cycle.id)
if key not in cycles.keys():
cycles[key]=[]
for line in citem.lines:
nurse=line.nurse_id
cycles[key].append({
'name': nurse.name,
'first_name': nurse.first_name or "",
})
for hdcase in citem.hd_cases:
if hdcase.state not in ('paid', 'waiting_payment'):
continue
patient=hdcase.patient_id
vascular=patient.vascular_acc
if vascular:
vasculars[vascular.code]['qty']+=1
ptype=patient.type_id
if ptype_id and ptype_id!=ptype.id:
continue
ptypes[ptype.name or ""]+=1
doctor=hdcase.doctor_id
cycle=hdcase.cycle_id
dpt=hdcase.department_id
dlz_use=hdcase.dlz_use or 0
dlz_drop=False
for dlz_line in hdcase.dialyzers:
dlz=dlz_line.dialyzer_id
if dlz.state in ('drop','expire'):
dlz_use="%sทิ้ง"%dlz_use
dlz_drop=True
cancel=False
row_color=''
def reformat_number(number=''):
if not number:
return ""
number=number.replace("HDC/","")
number=number.replace("HDC-","")
return number
lines.append({
'dlz_drop': dlz_drop,
'cancel': cancel,
'row_color': row_color,
'pname': patient.name or '',
'pid': patient.id or '',
'hn': patient.hn_no,
'did': doctor.id,
#'dname': doctor.name or "",
'dname': '%s %s'%(doctor.first_name or "", doctor.last_name or ""),
'dfirst': doctor.first_name or "",
'date': hdcase.date,
'epo': hdcase.epo,
'mdc': hdcase.mdc,
'hdcase_number': reformat_number(hdcase.number),
'hdcase_id': hdcase.id,
'mdc_name': hdcase.mdc_name or hdcase.epo,
'fee': abs(hdcase.fee),
'dlz_name': hdcase.dlz_name,
'dlz_use': dlz_use,
'dlz_id': hdcase.dlz_id,
'cseq': cycle.sequence or 0,
'cid': cycle.id,
'hdcase_id': hdcase.id,
'note': hdcase.note or "",
'cname': cycle.name or '',
'ctid': citem.id or '',
'hct': hdcase.hct or 0,
'tname': ptype.name or '',
'tid': ptype.id,
'dpt_id': dpt.id,
'dpt_name': dpt.name or "",
})
month_str=utils.MONTHS['th_TH'][int(month)]
company_name=company.name or ""
if department_id:
department=get_model("clinic.department").browse(department_id)
company_name+=" ("+department.name+")"
elif branch_id:
branch=get_model("clinic.branch").browse(branch_id)
company_name+=" ("+branch.name+")"
nlines=[]
index=0
old=[]
total_fee=0
total_mdc=0
dates={}
no=0
count=0
sub_fee=0
sub_mdc=0
pt=0
for line in sorted(lines,key=lambda x:(x['date'],x['cseq'])):
pt+=1
date=line['date'] or ''
key='%s-%s'%(date,line['cseq'])
if key not in dates.keys():
no=1
count=0
sub_fee=1
sub_mdc=0
for x in lines:
if x['cseq']==line['cseq'] and x['date']==date:
sub_fee+=x['fee'] or 0
sub_mdc+=x['mdc'] or 0
count+=1
line['date_txt']=line['date']
line['cseq_txt']=line['cseq']
dates[key]=0
else:
no+=1
dates[key]+=1
line['no']=no
total_fee+=line.get("fee",0)
total_mdc+=line.get("mdc",0)
cid=line['cid']
if not key in old:
old.append(key)
index=0
else:
index+=1
key='%s-%s'%(date,cid)
cres=cycles[key]
line['nurse']=''
if index < len(cres):
line['nurse']=cres[index]['name']
line['nfirst_name']=cres[index]['first_name']
nlines.append(line)
if no==count:
nlines.append({
'sub': 'show',
'sub_txt': 'รวม',
'row_color': '#dfdfdf',
'no': count,
'fee': sub_fee,
'mdc': sub_mdc,
})
vscl_lines=[]
for k,v in vasculars.items():
vscl_lines.append({
'description': v['description'],
'qty': v['qty'],
})
ptype_lines=[]
total_pt=0
pkeys=list(ptypes.keys())
for pname in sorted(pkeys):
qty=ptypes[pname]
ptype_lines.append({
'name': pname,
'qty': qty,
})
total_pt+=qty
ptype_txt=' '.join(['%s: %s'%(x['name'],x['qty']) for x in ptype_lines])
vscl_lines2=[{}]
index=1
for vscl_line in vscl_lines:
vscl_lines2[0].update({
'v%s'%index: vscl_line['description'],
'v%s_1'%index: vscl_line['qty'],
})
index+=1
vscl_txt=' '.join(['%s = %s'%(x['description'],x['qty']) for x in vscl_lines])
data={
'company_name': company_name or "",
'lines': nlines,
'vscl_lines': vscl_lines,
'vscl_lines2': vscl_lines2,
'vscl_txt': vscl_txt,
'ptype_lines': ptype_lines,
'ptype_txt': ptype_txt,
'month': month_str,
'date_from': date_from,
'date_to': date_to,
'total_pt': pt,
'total_fee': total_fee,
'total_mdc': total_mdc,
'total_pt': total_pt,
}
return data
def onchange_date(self,context={}):
data=context['data']
date=data['date']
year,month,day=date.split("-")
weekday, total_day=monthrange(int(year), int(month))
data['date_from']="%s-%s-01"%(year,month)
data['date_to']="%s-%s-%s"%(year,month,total_day)
return data
def onchange_type(self,context={}):
data=context['data']
data['department_id']=None
return data
def onchange_datefrom(self,context={}):
data=context['data']
data['date_to']=data['date_from']
return data
ReportCycleItem.register()