conv_bal
chayut.s 2014-10-27 10:31:49 +07:00
parent 0a04faccf6
commit 13045e3f63
4 changed files with 32 additions and 27 deletions

View File

@ -22,8 +22,10 @@
<header string="HD CASE"/> <header string="HD CASE"/>
<item string="HD Detail" action="clinic_report_hd_detail"/> <item string="HD Detail" action="clinic_report_hd_detail"/>
<item string="HD Summary" action="clinic_report_hd_summary"/> <item string="HD Summary" action="clinic_report_hd_summary"/>
<header string="HD Madical"/> <header string="HD Medical"/>
<item string="Madical Summary" action="clinic_report_hd_madical"/> <item string="Medical Summary" action="clinic_report_hd_medical"/>
<header string="HD Payment"/>
<item string="Payment Summary" action="clinic_report_hd_payment"/>"
</item> </item>
<item string="Settings"> <item string="Settings">
<item string="Cycles" action="clinic_cycle"/> <item string="Cycles" action="clinic_cycle"/>

View File

@ -1,10 +1,12 @@
<form model="clinic.report.hd.detail"> <form model="clinic.report.hd.detail">
<group> <group>
<field name="date_from" span="2"/> <field name="patient_id" span="3"/>
<field name="date_to" span="2"/> <field name="type" span="3"/>
<field name="cycle_id" span="2"/> <field name="doctor_id" span="3"/>
<field name="patient_id" span="2"/> <field name="nurse_id" span="3"/>
<field name="nurse_id" span="2"/> <newline/>
<field name="doctor_id" span="2"/> <field name="date_from" span="3"/>
<field name="date_to" span="3"/>
<field name="cycle_id" span="3"/>
</group> </group>
</form> </form>

View File

@ -9,7 +9,7 @@
{{/if}} {{/if}}
</h4> </h4>
</center> </center>
<table class="table table-striped"> <table class="table table-bordered">
<thead class="scroll-header"> <thead class="scroll-header">
<tr> <tr>
<th> <th>
@ -18,9 +18,6 @@
<th> <th>
Patient Patient
</th> </th>
<th>
Doctor
</th>
<th> <th>
Patient Type Patient Type
</th> </th>
@ -33,6 +30,9 @@
<th> <th>
Dialyzer Dialyzer
</th> </th>
<th>
Doctor
</th>
<th> <th>
Nurse Nurse
</th> </th>
@ -53,26 +53,18 @@
<td>{{no_patient}}</td> <td>{{no_patient}}</td>
{{else}} {{else}}
<td></td> <td></td>
<td>{{patient}}</td> <td><a style="text-decoration: underline" href="ui#name=clinic_patient&mode=page&active_id={{patient_id}}">{{patient_name}}</a></td>
{{/if}} {{/if}}
<td>
{{doctor}}
</td>
<td> <td>
{{patient_type}} {{patient_type}}
</td> </td>
<td> <td>
{{total}} {{total}}
</td> </td>
<td> <td><a style="text-decoration: underline" href="ui#name=clinic_hd_case&mode=page&active_id={{hd_case_id}}">{{rc_no}}</a></td>
{{rc_no}} <td><a style="text-decoration: underline" href="ui#name=clinic_dialyzer&mode=page">{{dialyzer_number}}</a></td>
</td> <td><a style="text-decoration: underline" href="ui#name=clinic_doctor&mode=page&active_id={{doctor_id}}">{{doctor_name}}</a></td>
<td> <td><a style="text-decoration: underline" href="ui#name=clinic_nurse&mode=page&active_id={{nurse_id}}">{{nurse_name}}</a></td>
{{dialyzer_name}}
</td>
<td>
{{nurse}}
</td>
</tr> </tr>
{{/each}} {{/each}}
</tbody> </tbody>

View File

@ -4,10 +4,12 @@
</h2> </h2>
<h3> <h3>
[{{company_name}}]<br/> [{{company_name}}]<br/>
As at {{month}} {{year}}
</h3> </h3>
<h4>
As at {{month}} {{year}}
</h4>
</center> </center>
<table class="table table-striped"> <table class="table table-bordered">
<thead class="scroll-header"> <thead class="scroll-header">
<th>Topic</th> <th>Topic</th>
<th>Month</th> <th>Month</th>
@ -22,4 +24,11 @@
</tr> </tr>
{{/each}} {{/each}}
</tbody> </tbody>
<tfoot>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</tfoot>
</table> </table>