2014-10-02 00:34:58 +00:00
|
|
|
import time
|
2014-10-14 03:57:20 +00:00
|
|
|
from datetime import datetime, timedelta
|
2014-10-02 00:34:58 +00:00
|
|
|
|
2014-08-19 11:36:46 +00:00
|
|
|
from netforce.model import Model, fields, get_model
|
2014-10-02 19:12:52 +00:00
|
|
|
from netforce.access import get_active_company, get_active_user, set_active_user
|
2014-10-14 03:57:20 +00:00
|
|
|
|
|
|
|
FMT_DATE="%Y-%m-%d %H:%M:%S"
|
2014-08-19 11:36:46 +00:00
|
|
|
|
|
|
|
class Visit(Model):
|
|
|
|
_name="clinic.visit"
|
|
|
|
_string="Visit"
|
|
|
|
_audit_log=True
|
|
|
|
_name_field="number"
|
|
|
|
_multi_company=True
|
2014-10-15 17:12:03 +00:00
|
|
|
|
|
|
|
def _get_print_date(self,ids,context={}):
|
|
|
|
res={}
|
|
|
|
for obj in self.browse(ids):
|
|
|
|
res[obj.id]=datetime.now().strftime("%Y-%m-%d %H:%M:%S")
|
|
|
|
return res
|
2014-11-17 00:59:19 +00:00
|
|
|
|
|
|
|
def _get_color(self,ids,context={}):
|
|
|
|
res={}
|
|
|
|
for obj in self.browse(ids):
|
|
|
|
color=get_model("clinic.cycle").browse(obj.cycle_id.id).color
|
|
|
|
res[obj.id]=color
|
|
|
|
return res
|
2014-11-01 17:30:48 +00:00
|
|
|
|
2014-08-19 11:36:46 +00:00
|
|
|
_fields={
|
|
|
|
"number": fields.Char("Number",required=True,search=True),
|
2014-11-29 14:56:15 +00:00
|
|
|
"time_start": fields.DateTime("Start Time",required=True),
|
|
|
|
"time_stop": fields.DateTime("End Time",required=True),
|
2014-10-01 10:52:21 +00:00
|
|
|
"patient_id": fields.Many2One("clinic.patient","Patient",required=True,search=True),
|
2014-11-25 11:39:53 +00:00
|
|
|
"doctor_id": fields.Many2One("clinic.staff","Doctor", domain=[['type','=','doctor']],search=True),
|
|
|
|
"nurse_id": fields.Many2One("clinic.staff","Confirm By", domain=[['type','=','nurse']],search=True),
|
2014-10-02 00:34:58 +00:00
|
|
|
"department_id": fields.Many2One("clinic.department", "Department",search=True),
|
2014-08-19 11:36:46 +00:00
|
|
|
"comments": fields.One2Many("message","related_id","Comments"),
|
|
|
|
"company_id": fields.Many2One("company","Company"),
|
2014-10-05 08:47:12 +00:00
|
|
|
'hd_cases': fields.One2Many('clinic.hd.case','visit_id',"HD Cases",readonly=True),
|
2014-10-14 03:57:20 +00:00
|
|
|
"cycle_id": fields.Many2One("clinic.cycle","Cycle"),
|
2014-11-17 00:59:19 +00:00
|
|
|
'cycle_color': fields.Char('Color',function="_get_color"),
|
2014-12-04 14:08:29 +00:00
|
|
|
"state": fields.Selection([["draft","Draft"],['pending','Pending'],["confirmed","Confirmed"],["cancelled","Cancelled"]],"Status",required=True),
|
2014-10-14 03:57:20 +00:00
|
|
|
"comments": fields.One2Many("message","related_id","Comments"),
|
2014-11-02 02:13:15 +00:00
|
|
|
'visit_date': fields.Date('Visit Date'),
|
2014-10-15 17:12:03 +00:00
|
|
|
'print_date': fields.Date('Print Date',function="_get_print_date"),
|
2014-11-03 00:21:37 +00:00
|
|
|
'cycle_item_id': fields.Many2One("clinic.cycle.item","Cycle Item"), #XXX on_delete="cascade" -> rm visit from cycle item
|
2014-11-01 17:30:48 +00:00
|
|
|
'sequence': fields.Char("Sequence"),
|
2014-11-17 00:59:19 +00:00
|
|
|
'note': fields.Text('Note'),
|
2014-08-19 11:36:46 +00:00
|
|
|
}
|
|
|
|
|
2014-10-15 17:12:03 +00:00
|
|
|
def _get_number(self,context={}):
|
2014-08-19 11:36:46 +00:00
|
|
|
while 1:
|
2014-10-13 08:10:20 +00:00
|
|
|
seq_name='Clinic Visit'
|
|
|
|
seq_id=get_model("sequence").find_sequence(name=seq_name)
|
|
|
|
if not seq_id:
|
|
|
|
raise Exception("Can not found sequence %s"%seq_name)
|
2014-10-02 19:12:52 +00:00
|
|
|
num=get_model("sequence").get_next_number(seq_id,context=context)
|
2014-08-19 11:36:46 +00:00
|
|
|
if not num:
|
|
|
|
return None
|
2014-10-02 19:12:52 +00:00
|
|
|
user_id=get_active_user()
|
|
|
|
set_active_user(1)
|
2014-08-19 11:36:46 +00:00
|
|
|
res=self.search([["number","=",num]])
|
2014-10-02 19:12:52 +00:00
|
|
|
set_active_user(user_id)
|
2014-08-19 11:36:46 +00:00
|
|
|
if not res:
|
|
|
|
return num
|
2014-10-02 19:12:52 +00:00
|
|
|
get_model("sequence").increment_number(seq_id,context=context)
|
2014-08-19 11:36:46 +00:00
|
|
|
|
2014-10-02 00:34:58 +00:00
|
|
|
def _get_nurse(self,context={}):
|
|
|
|
user_id=get_active_user()
|
2014-11-25 11:39:53 +00:00
|
|
|
nurse_ids=get_model("clinic.staff").search([['user_id','=',user_id],['type','=','nurse']])
|
2014-10-02 00:34:58 +00:00
|
|
|
if nurse_ids:
|
|
|
|
return nurse_ids[0]
|
2014-10-13 08:10:20 +00:00
|
|
|
return None
|
2014-08-19 11:36:46 +00:00
|
|
|
|
2014-10-05 05:47:19 +00:00
|
|
|
def _get_time_start(self,context={}):
|
2014-10-14 03:57:20 +00:00
|
|
|
now=datetime.now()
|
2014-10-05 05:47:19 +00:00
|
|
|
starttime=now.strftime("%Y-%m-%d %H:%M:%S")
|
2014-10-21 16:05:14 +00:00
|
|
|
print(":>> ", starttime)
|
2014-10-05 05:47:19 +00:00
|
|
|
return starttime
|
|
|
|
|
|
|
|
def _get_time_stop(self,context={}):
|
2014-10-14 03:57:20 +00:00
|
|
|
hr=timedelta(seconds=3600)
|
|
|
|
now=datetime.now()
|
2014-10-05 05:47:19 +00:00
|
|
|
stoptime=(now+hr).strftime("%Y-%m-%d %H:%M:%S")
|
2014-10-21 16:05:14 +00:00
|
|
|
print('::: ', stoptime)
|
2014-10-05 05:47:19 +00:00
|
|
|
return stoptime
|
|
|
|
|
2014-08-19 11:36:46 +00:00
|
|
|
_defaults={
|
2014-10-04 15:51:54 +00:00
|
|
|
"state": "draft",
|
2014-11-01 17:30:48 +00:00
|
|
|
'time_start': _get_time_start,
|
|
|
|
'time_stop': _get_time_stop,
|
2014-12-03 17:46:50 +00:00
|
|
|
'visit_date': lambda *a: time.strftime("%Y-%m-%d"),
|
2014-10-04 15:51:54 +00:00
|
|
|
"number": "/",
|
2014-08-19 11:36:46 +00:00
|
|
|
"company_id": lambda *a: get_active_company(),
|
2014-10-02 00:34:58 +00:00
|
|
|
'nurse_id': _get_nurse,
|
2014-08-19 11:36:46 +00:00
|
|
|
}
|
2014-11-02 03:03:28 +00:00
|
|
|
|
2014-11-01 17:30:48 +00:00
|
|
|
_order="sequence"
|
2014-12-04 14:08:29 +00:00
|
|
|
|
|
|
|
def new_dlz(self,patient_id):
|
|
|
|
if not patient_id:
|
|
|
|
raise Exception("No Patient to creat Dialyzer")
|
|
|
|
dlz_vals=get_model("clinic.dialyzer").default_get()
|
|
|
|
dlz_vals['product_id']=dlz_vals['product_id'][0]
|
|
|
|
dlz_vals['company_id']=dlz_vals['company_id'][0]
|
|
|
|
dlz_vals['patient_id']=patient_id
|
|
|
|
dlz_id=get_model('clinic.dialyzer').create(dlz_vals)
|
|
|
|
dialyzer=get_model("clinic.dialyzer").browse(dlz_id)
|
|
|
|
dialyzer.confirm()
|
|
|
|
return dlz_id
|
|
|
|
|
|
|
|
def get_dlz(self,visit_id):
|
|
|
|
obj=self.browse(visit_id)
|
|
|
|
patient=obj.patient_id
|
|
|
|
dialyzers=get_model("clinic.dialyzer").search_browse([['patient_id','=',patient.id],['state','=','active']])
|
|
|
|
if not dialyzers:
|
|
|
|
dlz_id=self.new_dlz(patient.id)
|
|
|
|
dialyzer=get_model("clinic.dialyzer").browse(dlz_id)
|
|
|
|
else:
|
|
|
|
dialyzer=dialyzers[-1]
|
|
|
|
use_time=dialyzer.use_time or 0
|
|
|
|
max_time=dialyzer.max_use_time or 0
|
|
|
|
if use_time > max_time:
|
|
|
|
dialyzer.write({
|
|
|
|
'state': 'expire',
|
|
|
|
})
|
|
|
|
# get new dialyzer
|
|
|
|
dlz_id=self.new_dlz(patient.id)
|
|
|
|
dialyzer=get_model("clinic.dialyzer").browse(dlz_id)
|
|
|
|
#raise Exception("%s is expired"%dialyzer.number)
|
|
|
|
use_time+=1
|
|
|
|
vals={
|
|
|
|
"description": dialyzer.description or dialyzer.product_id.name or "",
|
|
|
|
"use_time": use_time,
|
|
|
|
"max_use_time": dialyzer.max_use_time,
|
|
|
|
"member_type": dialyzer.member_type,
|
|
|
|
"dialyzer_type": dialyzer.dialyzer_type,
|
|
|
|
"bid_flow_rate": dialyzer.bid_flow_rate,
|
|
|
|
"ultrafittration": dialyzer.ultrafittration,
|
|
|
|
"state": dialyzer.state,
|
|
|
|
'dialyzer_id': dialyzer.id,
|
|
|
|
}
|
|
|
|
return vals
|
2014-08-19 11:36:46 +00:00
|
|
|
|
2014-10-02 00:34:58 +00:00
|
|
|
def confirm(self,ids,context={}):
|
2014-11-29 14:56:15 +00:00
|
|
|
obj=self.browse(ids)[0]
|
2014-10-04 15:51:54 +00:00
|
|
|
number=obj.number
|
2014-10-27 14:17:22 +00:00
|
|
|
if number=="/" or not number:
|
2014-10-04 15:51:54 +00:00
|
|
|
number=self._get_number(context)
|
|
|
|
vals={
|
|
|
|
'number': number,
|
2014-10-15 03:49:20 +00:00
|
|
|
'state': 'confirmed',
|
2014-10-04 15:51:54 +00:00
|
|
|
}
|
2014-11-29 14:56:15 +00:00
|
|
|
user_id=get_active_user()
|
|
|
|
staff=get_model("clinic.staff").search_browse([['user_id','=',user_id]])
|
|
|
|
if staff:
|
|
|
|
vals['nurse_id']=staff[0].id
|
2014-10-04 15:51:54 +00:00
|
|
|
obj.write(vals)
|
2014-10-02 02:02:22 +00:00
|
|
|
hd_case_obj=get_model("clinic.hd.case")
|
2014-10-02 19:12:52 +00:00
|
|
|
vals={
|
2014-10-02 02:02:22 +00:00
|
|
|
'patient_id': obj.patient_id.id,
|
2014-11-01 17:43:54 +00:00
|
|
|
'nurse_id': obj.nurse_id.id,
|
2014-10-02 02:02:22 +00:00
|
|
|
'department_id': obj.department_id.id,
|
2014-10-05 05:47:19 +00:00
|
|
|
'time_start': obj.time_start,
|
|
|
|
'time_stop': obj.time_stop,
|
2014-10-13 08:10:20 +00:00
|
|
|
'cycle_id' : obj.cycle_id.id,
|
2014-10-02 02:02:22 +00:00
|
|
|
'visit_id': obj.id,
|
2014-10-02 19:12:52 +00:00
|
|
|
'lines':[],
|
|
|
|
'dialyzers': [],
|
2014-11-25 11:39:53 +00:00
|
|
|
'staffs': [],
|
2014-11-29 14:56:15 +00:00
|
|
|
'state': 'waiting_treatment',
|
2014-10-02 19:12:52 +00:00
|
|
|
}
|
2014-11-02 07:13:20 +00:00
|
|
|
|
2014-12-04 14:08:29 +00:00
|
|
|
st=get_model("clinic.setting").browse(1)
|
|
|
|
if st.find_dlz:
|
|
|
|
dialyzer=self.get_dlz(obj.id)
|
|
|
|
vals['dialyzers'].append(('create',dialyzer))
|
|
|
|
|
2014-11-22 06:08:42 +00:00
|
|
|
# use exist hd_case (in case set to draft)
|
|
|
|
hd_case_id=None
|
|
|
|
if obj.hd_cases:
|
|
|
|
hd_case=obj.hd_cases[0]
|
|
|
|
hd_case.write(vals)
|
|
|
|
hd_case_id=hd_case.id
|
|
|
|
else:
|
|
|
|
hd_case_id=hd_case_obj.create(vals)
|
|
|
|
|
2014-10-27 14:17:22 +00:00
|
|
|
if context.get("called"): #XXX call outside
|
|
|
|
return hd_case_id
|
2014-11-21 02:39:26 +00:00
|
|
|
|
|
|
|
print("checking cycle item")
|
|
|
|
date=vals['time_start'][0:10]
|
|
|
|
cycle=obj.cycle_id
|
|
|
|
dom=[]
|
|
|
|
dom.append(['date','=',date])
|
|
|
|
dom.append(['cycle_id','=',cycle.id])
|
|
|
|
item_obj=get_model('clinic.cycle.item')
|
|
|
|
item_ids=item_obj.search(dom)
|
|
|
|
|
|
|
|
def get_schedule(date):
|
|
|
|
dom=[]
|
|
|
|
dom.append(['date','=',date])
|
|
|
|
schedule=None
|
|
|
|
schedules=get_model("clinic.schedule").search_browse(dom)
|
|
|
|
if schedules:
|
|
|
|
schedule=schedules[0]
|
|
|
|
return schedule
|
|
|
|
|
|
|
|
item_vals={
|
|
|
|
'cycle_id': cycle.id,
|
|
|
|
'date': date,
|
|
|
|
'nurses': [],
|
|
|
|
}
|
|
|
|
|
|
|
|
item_id=None
|
|
|
|
if not item_ids:
|
|
|
|
item_id=item_obj.create(item_vals)
|
|
|
|
else:
|
|
|
|
# clear old nurse in cycle item
|
|
|
|
item_id=item_ids[0]
|
|
|
|
item=item_obj.browse(item_id)
|
2014-11-25 05:24:51 +00:00
|
|
|
if item.state!='draft':
|
|
|
|
for nurse in item.nurses:
|
|
|
|
nurse.delete()
|
2014-11-21 02:39:26 +00:00
|
|
|
|
|
|
|
item=item_obj.browse(item_id)
|
2014-11-25 05:24:51 +00:00
|
|
|
if item.state!='draft':
|
|
|
|
schedule=get_schedule(date)
|
|
|
|
if schedule:
|
|
|
|
for line in schedule.lines:
|
|
|
|
if line.cycle_id.id==cycle.id:
|
|
|
|
nurse=line.nurse_id
|
|
|
|
item_vals['nurses'].append(('create',{
|
|
|
|
'nurse_id': nurse.id,
|
|
|
|
'level_id': nurse.level_id.id,
|
|
|
|
}))
|
|
|
|
item.write(item_vals)
|
2014-11-21 02:39:26 +00:00
|
|
|
|
|
|
|
obj.write({
|
|
|
|
'cycle_item_id': item_id,
|
|
|
|
})
|
|
|
|
|
|
|
|
hd_case=hd_case_obj.browse(hd_case_id)
|
|
|
|
hd_case.write({
|
|
|
|
'cycle_item_id': item_id,
|
|
|
|
})
|
|
|
|
|
2014-10-02 02:02:22 +00:00
|
|
|
return {
|
|
|
|
'next': {
|
|
|
|
'name': 'clinic_hd_case',
|
|
|
|
'mode': 'form',
|
|
|
|
'active_id': hd_case_id,
|
|
|
|
},
|
2014-12-04 08:37:54 +00:00
|
|
|
'flash': 'Visit has been confirmed',
|
2014-10-02 02:02:22 +00:00
|
|
|
}
|
2014-08-19 11:36:46 +00:00
|
|
|
|
2014-10-05 05:47:19 +00:00
|
|
|
def discard(self,ids,context={}):
|
2014-08-19 11:36:46 +00:00
|
|
|
obj=self.browse(ids)[0]
|
2014-10-02 00:34:58 +00:00
|
|
|
obj.write({"state":"cancelled"})
|
2014-08-19 11:36:46 +00:00
|
|
|
|
2014-10-13 08:10:20 +00:00
|
|
|
def reopen(self,ids,context={ }):
|
2014-10-02 02:02:22 +00:00
|
|
|
obj=self.browse(ids)[0]
|
2014-10-13 08:10:20 +00:00
|
|
|
obj.write({"state":"draf t"})
|
2014-10-02 02:02:22 +00:00
|
|
|
|
2014-10-02 00:34:58 +00:00
|
|
|
def onchange_patient(self,context={}):
|
|
|
|
data=context['data']
|
|
|
|
patient_id=data['patient_id']
|
2014-12-04 08:37:54 +00:00
|
|
|
patient=get_model("clinic.patient").browse(patient_id)
|
2014-10-03 07:27:57 +00:00
|
|
|
visits=self.search_browse([['patient_id','=',patient_id]],order="number desc")
|
2014-10-02 00:34:58 +00:00
|
|
|
if visits:
|
2014-10-03 07:27:57 +00:00
|
|
|
visit=visits[0]
|
2014-11-27 15:14:31 +00:00
|
|
|
doctor=visit.doctor_id
|
|
|
|
department=visit.department_id
|
|
|
|
if not department:
|
|
|
|
department=patient.department_id
|
|
|
|
data['doctor_id']=doctor.id
|
|
|
|
data['department_id']=department.id
|
2014-12-04 08:37:54 +00:00
|
|
|
if not patient.doctor_id:
|
|
|
|
patient.write({
|
|
|
|
'doctor_id': doctor.id,
|
|
|
|
})
|
2014-10-02 00:34:58 +00:00
|
|
|
else:
|
2014-10-03 06:09:10 +00:00
|
|
|
data['doctor_id']=None
|
2014-10-02 00:34:58 +00:00
|
|
|
data['department_id']=None
|
2014-10-13 08:10:20 +00:00
|
|
|
|
|
|
|
return data
|
2014-10-02 19:12:52 +00:00
|
|
|
|
2014-10-13 08:10:20 +00:00
|
|
|
def copy(self,ids,context={}) :
|
2014-10-02 19:12:52 +00:00
|
|
|
obj=self.browse(ids[0])
|
|
|
|
vals={
|
|
|
|
'patient_id': obj.patient_id.id,
|
|
|
|
'doctor_id': obj.doctor_id.id,
|
|
|
|
'nurse_id': obj.nurse_id.id,
|
|
|
|
'department_id': obj.department_id.id,
|
2014-12-04 14:08:29 +00:00
|
|
|
'cycle_id': obj.cycle_id.id,
|
|
|
|
'time_start': obj.time_start,
|
|
|
|
'time_stop': obj.time_stop,
|
|
|
|
'visit_date': obj.visit_date,
|
2014-10-02 19:12:52 +00:00
|
|
|
}
|
|
|
|
new_id=self.create(vals,context=context)
|
|
|
|
return {
|
|
|
|
'next':{
|
|
|
|
'name': 'clinic_visit',
|
|
|
|
'mode': 'form',
|
|
|
|
'active_id': new_id,
|
|
|
|
},
|
2014-10-13 08:10:20 +00:00
|
|
|
|
2014-12-04 14:08:29 +00:00
|
|
|
'flash': 'Visit %s successfully'%(obj.number),
|
2014-10-02 19:12:52 +00:00
|
|
|
}
|
2014-10-13 08:10:20 +00:00
|
|
|
|
2014-10-04 15:51:54 +00:00
|
|
|
|
|
|
|
def delete(self,ids,context={}):
|
|
|
|
for obj in self.browse(ids):
|
|
|
|
if obj.state!='draft':
|
|
|
|
raise Exception("Can not delete visit %s because state is not draft!"%obj.number)
|
|
|
|
super().delete(ids,context=context)
|
2014-10-04 16:11:34 +00:00
|
|
|
|
|
|
|
def get_data(self,context={}):
|
|
|
|
ref_id=context.get("refer_id")
|
|
|
|
if not ref_id:
|
|
|
|
return {}
|
|
|
|
ref_id=int(ref_id)
|
|
|
|
obj=self.browse(ref_id)
|
|
|
|
data={
|
|
|
|
'number': obj.number,
|
2014-10-05 08:29:21 +00:00
|
|
|
'date_visit': obj.date_visit,
|
2014-10-04 16:11:34 +00:00
|
|
|
'department_name': obj.department_id.name or "",
|
|
|
|
'patient_name': obj.patient_id.name or "",
|
|
|
|
'doctor_name': obj.doctor_id.name or "",
|
|
|
|
'nurse_name': obj.nurse_id.name or "",
|
|
|
|
'print_date': time.strftime("%d/%m/%Y"),
|
2014-10-14 04:31:51 +00:00
|
|
|
'cycle_name': obj.cycle_id.name or "",
|
2014-10-04 16:11:34 +00:00
|
|
|
}
|
2014-10-13 08:10:20 +00:00
|
|
|
return data
|
2014-08-19 11:36:46 +00:00
|
|
|
|
2014-12-03 17:46:50 +00:00
|
|
|
def onchange_cycle(self,context={}):
|
2014-10-14 03:57:20 +00:00
|
|
|
data=context['data']
|
|
|
|
cycle_id=data['cycle_id']
|
2014-12-03 17:46:50 +00:00
|
|
|
date=data['visit_date']
|
|
|
|
if not date:
|
|
|
|
date=data['time_start'][0:10]
|
2014-10-14 03:57:20 +00:00
|
|
|
if cycle_id:
|
|
|
|
cycle=get_model('clinic.cycle').browse(cycle_id)
|
2014-12-03 17:46:50 +00:00
|
|
|
data['time_start']=date+' %s:00'%cycle.time_start
|
|
|
|
data['time_stop']=date+' %s:00'%cycle.time_stop
|
2014-10-05 05:47:19 +00:00
|
|
|
return data
|
2014-10-15 03:49:20 +00:00
|
|
|
|
2014-12-03 17:46:50 +00:00
|
|
|
def onchange_date(self,context={}):
|
|
|
|
data=context['data']
|
|
|
|
date=data['visit_date']
|
|
|
|
time_start=data['time_start'][11:]
|
|
|
|
time_stop=data['time_stop'][11:]
|
|
|
|
data['time_start']='%s %s'%(date,time_start)
|
|
|
|
data['time_stop']='%s %s'%(date,time_stop)
|
|
|
|
return data
|
|
|
|
|
|
|
|
def onchange_datefrom(self,context={}):
|
|
|
|
data=context['data']
|
|
|
|
data['visit_date']=data['time_start'][0:10]
|
|
|
|
return data
|
|
|
|
|
2014-10-15 03:49:20 +00:00
|
|
|
def to_draft(self,ids,context={}):
|
|
|
|
obj=self.browse(ids)[0]
|
|
|
|
for hd_case in obj.hd_cases:
|
2014-11-22 06:08:42 +00:00
|
|
|
hd_case.to_draft()
|
|
|
|
for line in hd_case.lines:
|
|
|
|
line.delete()
|
2014-11-25 11:39:53 +00:00
|
|
|
for ps in hd_case.staffs:
|
2014-11-22 06:08:42 +00:00
|
|
|
ps.delete()
|
|
|
|
#hd_case.delete()
|
2014-10-15 03:49:20 +00:00
|
|
|
obj.write({
|
|
|
|
'state': 'draft',
|
|
|
|
})
|
2014-10-15 17:12:03 +00:00
|
|
|
|
|
|
|
def gen_no(self,ids,context={}):
|
|
|
|
obj=self.browse(ids)[0]
|
2014-11-25 01:41:49 +00:00
|
|
|
if obj.number != '/' or obj.state!='draft':
|
2014-10-15 17:12:03 +00:00
|
|
|
return
|
|
|
|
number=self._get_number(context)
|
|
|
|
obj.write({
|
|
|
|
'number': number,
|
|
|
|
})
|
|
|
|
return {
|
|
|
|
'next': {
|
|
|
|
'name': 'clinic_visit',
|
|
|
|
'mode': 'form',
|
|
|
|
'active_id': obj.id,
|
|
|
|
},
|
2014-11-25 01:41:49 +00:00
|
|
|
'flash': 'Generate number succesfully',
|
2014-10-15 17:12:03 +00:00
|
|
|
}
|
2014-11-01 08:49:27 +00:00
|
|
|
|
|
|
|
def create(self, vals,**kw):
|
|
|
|
cycle_id=vals['cycle_id']
|
2014-11-02 01:26:42 +00:00
|
|
|
cycle=get_model("clinic.cycle").browse(cycle_id)
|
|
|
|
vals['sequence']='%s-%s'%(vals['time_start'][0:10],cycle.sequence) #date-sequence
|
2014-11-02 02:13:15 +00:00
|
|
|
vals['visit_date']=vals['time_start'][0:10]
|
2014-11-21 02:39:26 +00:00
|
|
|
new_id=super().create(vals,**kw)
|
|
|
|
return new_id
|
2014-11-01 17:30:48 +00:00
|
|
|
|
|
|
|
def cancel(self,ids,context={}):
|
|
|
|
obj=self.browse(ids)[0]
|
|
|
|
obj.write({
|
|
|
|
'state': 'cancelled',
|
|
|
|
})
|
|
|
|
return {
|
|
|
|
'next': {
|
|
|
|
'name': 'clinic_visit',
|
|
|
|
'mode': 'form',
|
|
|
|
'active_id': obj.id,
|
|
|
|
},
|
|
|
|
'flash': 'Visit\'s %s has been cancelled'%obj.patient_id.name
|
|
|
|
}
|
2014-11-02 02:13:15 +00:00
|
|
|
|
|
|
|
def write(self,ids,vals,**kw):
|
2014-11-02 03:03:28 +00:00
|
|
|
obj=self.browse(ids)[0]
|
|
|
|
cycle=obj.cycle_id
|
|
|
|
vals['sequence']='%s-%s'%(obj.time_start[0:10],cycle.sequence) #date-sequence
|
|
|
|
vals['visit_date']=obj.time_start[0:10]
|
2014-11-02 02:13:15 +00:00
|
|
|
super().write(ids,vals,**kw)
|
2014-10-05 08:29:21 +00:00
|
|
|
|
2014-08-19 11:36:46 +00:00
|
|
|
Visit.register()
|