clinic/netforce_clinic/models/hd_case_popup_dlz.py

102 lines
3.8 KiB
Python
Raw Normal View History

2015-01-15 05:15:46 +00:00
from netforce.model import Model, fields, get_model
class HDCasePopupDlz(Model):
_name="clinic.hd.case.popup.dlz"
_transient=True
_fields={
"hd_case_id": fields.Many2One("clinic.hd.case","HdCase",required=True,on_delete="cascade"),
2015-01-15 07:37:36 +00:00
'product_id': fields.Many2One("product", "Product",required=True),
"dialyzer_type": fields.Selection([("low","low flux"),("high","high flux"),("dbl","dbl hifulx")],"Dialyzer Type"),
"max_use_time": fields.Integer("Max Use Time"),
"exp_date": fields.Date("Expiry Date"),
"note": fields.Text("Note"),
2015-01-29 14:55:05 +00:00
"membrane_type": fields.Selection([("unsub","Unsub cellul"),("sub","Sub cellul"),("synthetic","Synthetic")],"Membrane Type"),
2015-11-05 04:36:02 +00:00
'drop_old': fields.Boolean("Drop Old Dialyzer"),
2015-01-15 05:15:46 +00:00
}
2015-05-04 10:35:11 +00:00
def __get_hd_case_id(self,context={}):
2015-01-15 05:15:46 +00:00
hd_case_id=context.get("refer_id")
2015-04-30 09:41:34 +00:00
print("clinic.hd.case.popup.dlz default")
2015-01-15 05:15:46 +00:00
if not hd_case_id:
return None
return int(hd_case_id)
2015-05-04 10:35:11 +00:00
def default_get(self,field_names=None,context={},**kw):
defaults=context.get("defaults",{})
hdcase_id=defaults.get('hd_case_id')
dialyzer_type=defaults.get('dialyzer_type', "low")
membrane_type=defaults.get('membrane_type', "unsub")
product_id=defaults.get('product_id', None)
max_use_time=defaults.get('max_use_time', 10)
if not hdcase_id:
hdcase_id=context.get("refer_id")
if hdcase_id:
hdcase_id=int(hdcase_id)
hdcase=get_model('clinic.hd.case').browse(hdcase_id)
for line in hdcase.dialyzers:
dlz=line.dialyzer_id
product_id=dlz.product_id.id
dialyzer_type=dlz.dialyzer_type or "low"
membrane_type=dlz.membrane_type or "unsub"
max_use_time=dlz.max_use_time or 10
res={
'hd_case_id': hdcase_id,
'dialyzer_type': dialyzer_type,
'membrane_type': membrane_type,
'max_use_time': max_use_time,
'product_id': product_id,
2015-11-05 04:36:02 +00:00
'drop_old': True,
2015-05-04 10:35:11 +00:00
}
print('res', res)
return res
2015-01-15 08:45:11 +00:00
def new_dlz(self,ids,context={}):
obj=self.browse(ids)[0]
hd_case=obj.hd_case_id
2015-03-10 11:45:19 +00:00
res={}
2015-01-15 08:45:11 +00:00
if hd_case:
context['is_wiz']=True
context['pop_id']=obj.id
2015-11-05 04:36:02 +00:00
context['drop_old']=obj.drop_old
2015-03-10 11:45:19 +00:00
res=hd_case.new_dialyzer(context=context)
print('res ', res)
return res
2015-01-15 05:15:46 +00:00
def onchange_product(self,context={}):
2015-02-20 05:16:51 +00:00
data=context['data']
2015-05-04 10:35:11 +00:00
hdcase_id=data['hd_case_id']
patient=None
if hdcase_id:
hdcase=get_model('clinic.hd.case').browse(hdcase_id)
patient=hdcase.patient_id
product_id=data['product_id']
2015-02-20 10:59:49 +00:00
data['membrane_type']=None
data['dialyzer_type']=None
2015-05-04 10:35:11 +00:00
data['max_use_time']=10
dom=[]
if patient:
dom.append(['patient_id','=',patient.id])
count=0
for dlz in get_model("clinic.dialyzer").search_browse(dom):
prod=dlz.product_id
if prod.id==product_id:
2015-05-04 10:35:11 +00:00
count+=1
data['membrane_type']=dlz.membrane_type
data['dialyzer_type']=dlz.dialyzer_type or "low"
2015-05-04 10:35:11 +00:00
data['max_use_time']=dlz.max_use_time or 10
break
2015-05-04 10:35:11 +00:00
# search from another patient
if not count:
dom=[]
for dlz in get_model("clinic.dialyzer").search_browse(dom):
prod=dlz.product_id
if prod.id==product_id:
data['membrane_type']=dlz.membrane_type
data['dialyzer_type']=dlz.dialyzer_type or "low"
data['max_use_time']=dlz.max_use_time or 10
break
2015-02-20 05:16:51 +00:00
return data
2015-01-15 05:15:46 +00:00
HDCasePopupDlz.register()