2014-11-05 06:45:28 +00:00
|
|
|
import time
|
2014-11-10 05:10:39 +00:00
|
|
|
from calendar import monthrange
|
2014-11-05 06:45:28 +00:00
|
|
|
|
|
|
|
from netforce.model import Model,fields,get_model
|
2015-03-24 06:51:21 +00:00
|
|
|
from netforce.access import get_active_company
|
2014-11-10 05:10:39 +00:00
|
|
|
from . import utils
|
2014-11-05 06:45:28 +00:00
|
|
|
|
|
|
|
class ReportMedicalSummary(Model):
|
|
|
|
_name="clinic.report.medical.summary"
|
|
|
|
_string="Report Medical Summary"
|
|
|
|
_transient=True
|
|
|
|
|
|
|
|
_fields={
|
|
|
|
"date": fields.Date("Month", required=True),
|
2014-11-13 06:30:51 +00:00
|
|
|
"date_from": fields.Date("From", required=True),
|
|
|
|
"date_to": fields.Date("To", required=True),
|
2015-02-12 01:12:06 +00:00
|
|
|
"prod_categ_id": fields.Many2One("product.categ","Category"),
|
2015-02-12 01:46:55 +00:00
|
|
|
"branch_id": fields.Many2One("clinic.branch","Branch"),
|
|
|
|
"department_id": fields.Many2One("clinic.department","Department"),
|
2015-04-30 15:10:55 +00:00
|
|
|
'report_type': fields.Selection([['completed','Completed'],['not_completed','Not Completed']],"Report Type"),
|
2014-11-05 06:45:28 +00:00
|
|
|
}
|
2015-02-12 01:12:06 +00:00
|
|
|
|
2015-02-24 14:59:49 +00:00
|
|
|
# in case link from another report
|
|
|
|
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("-")
|
|
|
|
weekday, total_day=monthrange(int(year), int(month))
|
|
|
|
date_from=defaults.get('date_from','%s-%s-01'%(year,month))
|
|
|
|
date_to=defaults.get('date_to',"%s-%s-%s"%(year,month,total_day))
|
|
|
|
categ_id=defaults.get('categ_id',None)
|
2015-04-30 15:10:55 +00:00
|
|
|
report_type=defaults.get('report_type',"completed")
|
2015-02-24 14:59:49 +00:00
|
|
|
if not categ_id:
|
2015-04-30 15:10:55 +00:00
|
|
|
categ_ids=get_model("product.categ").search([['code','=','MDC']])
|
2015-02-24 14:59:49 +00:00
|
|
|
if categ_ids:
|
|
|
|
categ_id=categ_ids[0]
|
|
|
|
branch_id=defaults.get('branch_id',None)
|
2015-03-13 06:43:12 +00:00
|
|
|
select_dpt=get_model('select.company').get_select()
|
2015-02-24 14:59:49 +00:00
|
|
|
if not branch_id:
|
2015-03-13 06:43:12 +00:00
|
|
|
if select_dpt:
|
|
|
|
branch_id=select_dpt['branch_id']
|
2015-02-24 14:59:49 +00:00
|
|
|
else:
|
|
|
|
branch_id=int(branch_id or "0")
|
|
|
|
department_id=defaults.get('department_id',None)
|
|
|
|
if not department_id:
|
2015-03-15 15:42:15 +00:00
|
|
|
if select_dpt.get('department_ids'):
|
|
|
|
department_id=select_dpt['department_ids'][0]
|
|
|
|
else:
|
2015-03-13 06:43:12 +00:00
|
|
|
department_id=select_dpt['department_id']
|
2015-02-24 14:59:49 +00:00
|
|
|
else:
|
|
|
|
department_id=int(department_id or "0")
|
|
|
|
res={
|
|
|
|
'date': date,
|
|
|
|
'date_from': date_from,
|
|
|
|
'date_to': date_to,
|
|
|
|
'prod_categ_id': categ_id,
|
|
|
|
'branch_id': branch_id,
|
|
|
|
'department_id': department_id,
|
2015-04-30 15:10:55 +00:00
|
|
|
'report_type': report_type,
|
2015-02-24 14:59:49 +00:00
|
|
|
}
|
|
|
|
return res
|
2015-02-12 01:46:55 +00:00
|
|
|
|
2014-11-05 06:45:28 +00:00
|
|
|
def get_report_data(self,ids,context={}):
|
2014-11-13 06:30:51 +00:00
|
|
|
year, month=time.strftime("%Y-%m").split("-")
|
|
|
|
weekday, total_day=monthrange(int(year), int(month))
|
2015-02-24 14:59:49 +00:00
|
|
|
defaults=self.default_get(context=context)
|
|
|
|
time_start=defaults.get("date_from")
|
|
|
|
time_stop=defaults.get("date_to")
|
|
|
|
prod_categ_id=defaults.get("prod_categ_id")
|
|
|
|
branch_id=defaults.get("branch_id")
|
|
|
|
department_id=defaults.get("department_id")
|
2015-04-30 15:10:55 +00:00
|
|
|
report_type=defaults.get("report_type","completed")
|
2014-11-13 06:30:51 +00:00
|
|
|
if ids:
|
|
|
|
obj=self.browse(ids)[0]
|
2015-02-12 01:12:06 +00:00
|
|
|
prod_categ_id=obj.prod_categ_id.id
|
2015-02-12 01:46:55 +00:00
|
|
|
branch_id=obj.branch_id.id
|
|
|
|
department_id=obj.department_id.id
|
2014-11-13 06:30:51 +00:00
|
|
|
month=obj.date_from.split("-")[1]
|
|
|
|
time_start=obj.date_from
|
|
|
|
time_stop=obj.date_to
|
2015-04-30 15:10:55 +00:00
|
|
|
report_type=obj.report_type or "completed"
|
|
|
|
print('report_type ---> ', report_type)
|
2014-11-10 11:33:01 +00:00
|
|
|
products={}
|
2014-12-02 07:08:20 +00:00
|
|
|
patient_types={t['id']: t['name'] for t in get_model('clinic.patient.type').search_read([[]],['name'],order="name")}
|
2015-02-12 01:12:06 +00:00
|
|
|
|
|
|
|
dom=[]
|
|
|
|
dom.append(['type','=','stock'])
|
2015-05-08 01:09:12 +00:00
|
|
|
dom.append(['report_visible','=',True])
|
2015-08-21 04:22:53 +00:00
|
|
|
st=get_model("clinic.setting").browse(1)
|
|
|
|
ct_ids=[]
|
|
|
|
for categ in st.product_categ_view:
|
|
|
|
ct_ids.append(categ.id)
|
|
|
|
if ct_ids:
|
|
|
|
dom.append(['categ_id.id','in',ct_ids])
|
2015-04-30 15:10:55 +00:00
|
|
|
categ_ids=set()
|
2015-02-12 01:12:06 +00:00
|
|
|
for prod in get_model("product").search_browse(dom):
|
2015-02-03 09:29:53 +00:00
|
|
|
prod_code=prod.code or ""
|
2015-04-30 15:10:55 +00:00
|
|
|
categ=prod.categ_id
|
2015-08-21 04:39:38 +00:00
|
|
|
if categ:
|
2015-04-30 15:10:55 +00:00
|
|
|
categ_ids.update({categ.id})
|
2015-02-03 09:29:53 +00:00
|
|
|
products[prod_code]={}
|
2014-12-02 07:08:20 +00:00
|
|
|
for patient_type_id,type_name in patient_types.items():
|
2015-02-03 09:29:53 +00:00
|
|
|
products[prod_code][patient_type_id]={
|
2014-11-10 11:33:01 +00:00
|
|
|
'qty': 0,
|
|
|
|
'name': prod.name,
|
2015-02-03 09:29:53 +00:00
|
|
|
'code': prod_code or "",
|
2014-11-10 14:52:47 +00:00
|
|
|
'prod_id': prod.id,
|
2014-11-10 11:33:01 +00:00
|
|
|
}
|
|
|
|
|
2015-02-12 01:12:06 +00:00
|
|
|
dom=[]
|
|
|
|
dom.append(['time_start','>=','%s 00:00:00'%time_start])
|
|
|
|
dom.append(['time_stop','<=','%s 23:59:59'%time_stop])
|
2015-02-12 01:46:55 +00:00
|
|
|
if branch_id:
|
|
|
|
dom.append(['branch_id','=',branch_id])
|
|
|
|
if department_id:
|
|
|
|
dom.append(['department_id','=',department_id])
|
2015-04-30 15:10:55 +00:00
|
|
|
if report_type=='completed':
|
|
|
|
dom.append(["state","in",["waiting_payment","paid"]])
|
|
|
|
else:
|
|
|
|
dom.append(["state","not in",["waiting_payment","paid"]])
|
2014-11-10 05:10:39 +00:00
|
|
|
for hd_case in get_model('clinic.hd.case').search_browse(dom):
|
2015-03-13 06:43:12 +00:00
|
|
|
patient_type_id=hd_case.patient_type_id.id
|
2014-11-10 05:10:39 +00:00
|
|
|
for line in hd_case.lines:
|
|
|
|
prod=line.product_id
|
2015-02-03 09:29:53 +00:00
|
|
|
prod_code=prod.code or ""
|
2015-04-30 15:10:55 +00:00
|
|
|
categ=line.product_categ_id
|
2015-02-03 09:29:53 +00:00
|
|
|
if not prod_code or not prod.active:
|
|
|
|
continue
|
2015-04-30 15:10:55 +00:00
|
|
|
if categ and categ.id not in list(categ_ids):
|
2015-02-12 01:12:06 +00:00
|
|
|
continue
|
2015-02-03 09:29:53 +00:00
|
|
|
products[prod_code][patient_type_id]['qty']+=line.qty
|
2014-11-10 11:33:01 +00:00
|
|
|
|
|
|
|
lines=[]
|
2015-05-27 09:51:38 +00:00
|
|
|
limit_char=25
|
2014-12-02 07:08:20 +00:00
|
|
|
titles=[{'name': 'ชื่อยา'}]
|
2015-05-27 09:51:38 +00:00
|
|
|
prod_titles={}
|
2014-12-02 07:08:20 +00:00
|
|
|
for patient_type_id,type_name in sorted(patient_types.items(), key=lambda x: x[0]):
|
2015-05-27 09:51:38 +00:00
|
|
|
prod_titles.update({patient_type_id: type_name})
|
2014-12-02 07:08:20 +00:00
|
|
|
titles.append({
|
|
|
|
'name':type_name,
|
|
|
|
})
|
2015-05-27 09:51:38 +00:00
|
|
|
|
|
|
|
plines=[]
|
|
|
|
def rzero(n):
|
|
|
|
if not n:
|
|
|
|
return ''
|
|
|
|
n="{0:,.0f}".format(n)
|
|
|
|
return n
|
2014-12-02 07:08:20 +00:00
|
|
|
|
2015-05-27 09:51:38 +00:00
|
|
|
for prod, prod_vals in products.items():
|
2014-12-02 07:08:20 +00:00
|
|
|
count=1
|
|
|
|
total=0.0
|
|
|
|
sub_lines=[]
|
2015-03-24 06:51:21 +00:00
|
|
|
all_ptypes=""
|
|
|
|
prod_id=None
|
2015-05-27 09:51:38 +00:00
|
|
|
pvals={}
|
2014-12-02 07:08:20 +00:00
|
|
|
for patient_type_id,type_name in sorted(patient_types.items(), key=lambda x: x[0]):
|
2015-03-24 06:51:21 +00:00
|
|
|
all_ptypes+="%s,"%patient_type_id
|
2015-05-27 09:51:38 +00:00
|
|
|
qty=prod_vals[patient_type_id]['qty'] or 0
|
|
|
|
|
|
|
|
prod_id=prod_vals[patient_type_id]['prod_id']
|
|
|
|
prod_name=prod_vals[patient_type_id]['name'] or ""
|
|
|
|
prod_name_org=prod_vals[patient_type_id]['name'] or ""
|
|
|
|
prod_name=len(prod_name) > limit_char and '%s...' %prod_name[0:limit_char] or prod_name
|
|
|
|
|
|
|
|
pvals.update({
|
|
|
|
'prod_name': prod_name,
|
|
|
|
patient_type_id : rzero(qty),
|
|
|
|
})
|
2014-12-02 07:08:20 +00:00
|
|
|
line={
|
|
|
|
'prod_name': prod_name,
|
|
|
|
'prod_name_org': prod_name_org,
|
2015-03-24 06:51:21 +00:00
|
|
|
'prod_id': prod_id,
|
2014-12-02 07:08:20 +00:00
|
|
|
'total': 0,
|
|
|
|
}
|
|
|
|
sub_lines.append({
|
|
|
|
'qty': qty,
|
2015-03-24 06:51:21 +00:00
|
|
|
'types': "%s"%patient_type_id,
|
|
|
|
'time_start': time_start,
|
|
|
|
'time_stop': time_stop,
|
|
|
|
'product_id': prod_id,
|
|
|
|
'product_categ_id': prod_categ_id,
|
2014-11-10 11:33:01 +00:00
|
|
|
})
|
2014-12-02 07:08:20 +00:00
|
|
|
total+=qty
|
|
|
|
count+=1
|
|
|
|
sub_lines.append({
|
|
|
|
'qty': total,
|
2015-03-24 06:51:21 +00:00
|
|
|
'types': all_ptypes,
|
|
|
|
'time_start': time_start,
|
|
|
|
'time_stop': time_stop,
|
|
|
|
'product_id': prod_id,
|
|
|
|
'product_categ_id': prod_categ_id,
|
2014-12-02 07:08:20 +00:00
|
|
|
})
|
|
|
|
line['sub_lines']=sub_lines
|
2014-11-10 11:33:01 +00:00
|
|
|
lines.append(line)
|
2015-05-27 09:51:38 +00:00
|
|
|
|
|
|
|
pvals[999]=int(total)
|
|
|
|
plines.append(pvals)
|
|
|
|
|
2015-03-24 06:51:21 +00:00
|
|
|
for line in lines:
|
|
|
|
st=""
|
|
|
|
for x in line['sub_lines']:
|
|
|
|
st+='%s'%(x['types'])
|
2014-12-02 07:08:20 +00:00
|
|
|
titles.append({'name':'รวม'})
|
2014-11-10 05:10:39 +00:00
|
|
|
|
2014-11-05 07:03:12 +00:00
|
|
|
company_id=get_active_company()
|
|
|
|
company=get_model('company').browse(company_id)
|
2014-11-13 06:30:51 +00:00
|
|
|
month_str=utils.MONTHS['th_TH'][int(month)]
|
2014-11-10 11:33:01 +00:00
|
|
|
|
2015-02-20 13:10:40 +00:00
|
|
|
# remove zero
|
|
|
|
for line in lines:
|
|
|
|
for sline in line['sub_lines']:
|
|
|
|
qty=sline['qty']
|
|
|
|
if not qty:
|
|
|
|
sline['qty']=''
|
2014-11-10 11:33:01 +00:00
|
|
|
lines=sorted(lines, key=lambda x: x['prod_name'])
|
2014-11-25 01:41:49 +00:00
|
|
|
year=int(year)+543
|
2015-02-27 16:10:50 +00:00
|
|
|
sub_name=''
|
|
|
|
if department_id:
|
|
|
|
dpt=get_model("clinic.department").browse(department_id)
|
|
|
|
sub_name="(%s)" % dpt.name or ""
|
|
|
|
elif branch_id:
|
|
|
|
branch=get_model("clinic.branch").browse(branch_id)
|
|
|
|
sub_name="(%s)" % branch.name or ""
|
2015-05-27 09:51:38 +00:00
|
|
|
|
|
|
|
plines=sorted(plines,key=lambda x:x['prod_name'])
|
2014-11-05 07:03:12 +00:00
|
|
|
data={
|
2015-02-27 16:10:50 +00:00
|
|
|
'company_name': '%s %s' % (company.name or "", sub_name),
|
2014-11-05 07:03:12 +00:00
|
|
|
'parent_company_name': company.parent_id.name or "",
|
2014-11-10 11:33:01 +00:00
|
|
|
'titles': titles,
|
|
|
|
'lines': lines,
|
2015-05-27 09:51:38 +00:00
|
|
|
'plines': plines,
|
|
|
|
'prod_titles': prod_titles,
|
2014-11-10 11:33:01 +00:00
|
|
|
'month': month_str,
|
|
|
|
'year': year,
|
2015-04-30 15:10:55 +00:00
|
|
|
'report_type': report_type,
|
2014-11-05 07:03:12 +00:00
|
|
|
}
|
2014-11-10 11:33:01 +00:00
|
|
|
|
2014-11-05 06:45:28 +00:00
|
|
|
return data
|
|
|
|
|
2014-11-13 06:30:51 +00:00
|
|
|
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
|
|
|
|
|
2015-02-24 14:59:49 +00:00
|
|
|
def onchange_branch(self,context={}):
|
|
|
|
data=context['data']
|
|
|
|
data['department_id']=None
|
|
|
|
return data
|
|
|
|
|
2014-11-05 06:45:28 +00:00
|
|
|
ReportMedicalSummary.register()
|