xxx
parent
4cef271ce4
commit
62df3b9d59
|
@ -92,6 +92,13 @@ class ReportAccountHDCaseSummary(Model):
|
||||||
items[code].append({
|
items[code].append({
|
||||||
'amount': amt,
|
'amount': amt,
|
||||||
})
|
})
|
||||||
|
pm_number=''
|
||||||
|
for pm in hdcase.payments:
|
||||||
|
pm_number+=pm.number or ""
|
||||||
|
inv_number=""
|
||||||
|
for inv in hdcase.invoices:
|
||||||
|
inv_number+=inv.number or ""
|
||||||
|
|
||||||
patient=hdcase.patient_id
|
patient=hdcase.patient_id
|
||||||
ptype=hdcase.patient_type_id
|
ptype=hdcase.patient_type_id
|
||||||
cycle=hdcase.cycle_id
|
cycle=hdcase.cycle_id
|
||||||
|
@ -108,6 +115,8 @@ class ReportAccountHDCaseSummary(Model):
|
||||||
'pname': patient.name,
|
'pname': patient.name,
|
||||||
'cseq': cycle.sequence or 0,
|
'cseq': cycle.sequence or 0,
|
||||||
'cycle_item_id': cycle_item.id,
|
'cycle_item_id': cycle_item.id,
|
||||||
|
'pm_number': pm_number,
|
||||||
|
'inv_number': inv_number,
|
||||||
}
|
}
|
||||||
for code, item in items.items():
|
for code, item in items.items():
|
||||||
vals.update({
|
vals.update({
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
<table class="table">
|
<table class="table">
|
||||||
<thead class="scroll-header">
|
<thead class="scroll-header">
|
||||||
<tr>
|
<tr>
|
||||||
<th colspan="11" style="text-align:center">
|
<th colspan="13" style="text-align:center">
|
||||||
{{#each types}}
|
{{#each types}}
|
||||||
<span class="label label-{{color}}">{{name}}: {{qty}}</span>
|
<span class="label label-{{color}}">{{name}}: {{qty}}</span>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
@ -29,6 +29,11 @@
|
||||||
<th>ค่าฟอก</th>
|
<th>ค่าฟอก</th>
|
||||||
<th>ค่ายา</th>
|
<th>ค่ายา</th>
|
||||||
<th>ค่าฉีดยา</th>
|
<th>ค่าฉีดยา</th>
|
||||||
|
<th>HCT</th>
|
||||||
|
{{#ifeq reimbursable "no"}}
|
||||||
|
<th>Rc.</th>
|
||||||
|
<th>Inv.</th>
|
||||||
|
{{/ifeq}}
|
||||||
<th>แพทย์</th>
|
<th>แพทย์</th>
|
||||||
<th>พยาบาล</th>
|
<th>พยาบาล</th>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -47,6 +52,11 @@
|
||||||
<td>{{currency fee zero=""}}</td>
|
<td>{{currency fee zero=""}}</td>
|
||||||
<td>{{currency epo zero=""}}</td>
|
<td>{{currency epo zero=""}}</td>
|
||||||
<td>{{currency srv zero=""}}</td>
|
<td>{{currency srv zero=""}}</td>
|
||||||
|
<td>{{hct}}</td>
|
||||||
|
{{#ifeq ../reimbursable "no"}}
|
||||||
|
<td>{{pm_number}}</td>
|
||||||
|
<td>{{inv_number}}</td>
|
||||||
|
{{/ifeq}}
|
||||||
<td>{{dname}}</td>
|
<td>{{dname}}</td>
|
||||||
<td>
|
<td>
|
||||||
{{view "link" string="View" action="clinic_cycle_item" action_options="mode=form" active_id=cycle_item_id}}
|
{{view "link" string="View" action="clinic_cycle_item" action_options="mode=form" active_id=cycle_item_id}}
|
||||||
|
|
Loading…
Reference in New Issue