2014-10-02 02:02:22 +00:00
|
|
|
<form model="clinic.visit" attrs='{"readonly":[["state","in",["cancelled","confirmed"]]]}' show_company="1">
|
2014-08-19 11:36:46 +00:00
|
|
|
<head>
|
|
|
|
<field name="state"/>
|
2014-10-02 00:34:58 +00:00
|
|
|
<button string="Print" icon="print" action="print_visit"/>
|
2014-08-19 11:36:46 +00:00
|
|
|
<button string="Options" dropdown="1">
|
2014-10-02 19:12:52 +00:00
|
|
|
<item string="Copy" method="copy"/>
|
2014-08-19 11:36:46 +00:00
|
|
|
</button>
|
|
|
|
</head>
|
|
|
|
<tabs>
|
2014-10-02 00:34:58 +00:00
|
|
|
<tab string="Visit">
|
2014-10-02 02:02:22 +00:00
|
|
|
<group span="6" columns="1">
|
|
|
|
<field name="number"/>
|
|
|
|
<field name="visit_date"/>
|
|
|
|
<field name="cycle"/>
|
2014-10-02 19:12:52 +00:00
|
|
|
<field name="time_use"/>
|
2014-10-02 02:02:22 +00:00
|
|
|
</group>
|
|
|
|
<group span="6" columns="1">
|
|
|
|
<field name="patient_id" onchange="onchange_patient"/>
|
|
|
|
<field name="doctor_id"/>
|
|
|
|
<field name="nurse_id"/>
|
2014-10-04 18:33:18 +00:00
|
|
|
<field name="department_id"/>
|
2014-10-02 02:02:22 +00:00
|
|
|
</group>
|
2014-10-02 00:34:58 +00:00
|
|
|
</tab>
|
2014-08-19 11:36:46 +00:00
|
|
|
</tabs>
|
2014-10-04 18:33:18 +00:00
|
|
|
<group attrs='{"invisible": [["state","not in",["waiting_treatment"]]]}'>
|
|
|
|
<separator string="Select Dialyzer -> Click Do Treatment"/>
|
|
|
|
<field name="dialyzers" nolabel="1" count="3">
|
|
|
|
<list>
|
|
|
|
<field name="dialyzer_id" domain="[['state','=','active'],['patient_id','=',parent.patient_id]]" onchange="onchange_dialyzer"/>
|
|
|
|
<field name="description"/>
|
|
|
|
<field name="use_time"/>
|
|
|
|
<field name="max_use_time"/>
|
|
|
|
<field name="member_type"/>
|
|
|
|
<field name="dialyzer_type"/>
|
|
|
|
<field name="bid_flow_rate"/>
|
|
|
|
<field name="ultrafittration"/>
|
|
|
|
<field name="state"/>
|
|
|
|
</list>
|
|
|
|
</field>
|
|
|
|
</group>
|
2014-09-11 03:21:52 +00:00
|
|
|
<foot>
|
2014-10-04 15:51:54 +00:00
|
|
|
<button string="Confirm" type="success" method="confirm" states="draft" />
|
|
|
|
<button string="Do Treatment" type="success" method="do_treatment" icon="arrow-right" states="waiting_treatment" />
|
|
|
|
<button string="Re Visit" type="default" method="reopen" states="cancelled" />
|
|
|
|
<button string="Cancel Visit" type="danger" method="cancel" states="waiting_treatment" confirm="Are you sure to cancel HD case?"/>
|
2014-09-11 03:21:52 +00:00
|
|
|
</foot>
|
2014-08-19 11:36:46 +00:00
|
|
|
<related>
|
2014-10-02 00:34:58 +00:00
|
|
|
<field name="comments"/>
|
2014-08-19 11:36:46 +00:00
|
|
|
</related>
|
|
|
|
</form>
|