can not create visit / hdcase
parent
b9436c5990
commit
03770dc2c8
|
@ -1509,7 +1509,7 @@ class HDCase(Model):
|
|||
})
|
||||
vals=self.get_staff_line(vals,patient_id)
|
||||
vals=self.get_hct(vals,patient_id)
|
||||
new_id=super().create(vals,context)
|
||||
new_id=super().create(vals,context=context)
|
||||
self.function_store([new_id])
|
||||
return new_id
|
||||
|
||||
|
|
|
@ -206,7 +206,7 @@ class Visit(Model):
|
|||
hd_case.write(vals)
|
||||
hd_case_id=hd_case.id
|
||||
else:
|
||||
hd_case_id=hd_case_obj.create(vals,context)
|
||||
hd_case_id=hd_case_obj.create(vals,context=context)
|
||||
|
||||
if context.get("called"): #XXX call outside
|
||||
return hd_case_id
|
||||
|
@ -477,7 +477,7 @@ class Visit(Model):
|
|||
}
|
||||
|
||||
def create(self, vals,context):
|
||||
new_id=super().create(vals,context)
|
||||
new_id=super().create(vals,context=context)
|
||||
self.function_store([new_id])
|
||||
return new_id
|
||||
|
||||
|
|
Loading…
Reference in New Issue