ULLYZB - tambah chip status lunas dan label unpaid di kolom total patient list
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -501,9 +501,17 @@
|
|||||||
cito: props.item.T_OrderHeaderIsCito === 'Y',
|
cito: props.item.T_OrderHeaderIsCito === 'Y',
|
||||||
}" @click="selectMe(props.item)">
|
}" @click="selectMe(props.item)">
|
||||||
<span title="total tagihan" style="color: black !important; font-weight: bold">
|
<span title="total tagihan" style="color: black !important; font-weight: bold">
|
||||||
{{ number_format(props.item.totalbill) }} </span><br />
|
{{ number_format(props.item.totalbill) }}
|
||||||
<span title="kurang bayar" v-if="props.item.flaglunas === 'N'">
|
</span><br />
|
||||||
{{ number_format(props.item.unpaid) }}
|
<v-chip v-if="props.item.flaglunas === 'Y'" small label color="green" text-color="white" class="mt-1">
|
||||||
|
LUNAS
|
||||||
|
</v-chip>
|
||||||
|
<v-chip v-else small label color="red" text-color="white" class="mt-1">
|
||||||
|
BELUM LUNAS
|
||||||
|
</v-chip>
|
||||||
|
<br />
|
||||||
|
<span v-if="props.item.flaglunas === 'N'" title="kurang bayar" style="color: #c42d2d; font-size: 12px">
|
||||||
|
Unpaid: {{ number_format(props.item.unpaid) }}
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
Reference in New Issue
Block a user