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:
sas.fajri
2026-05-28 14:13:27 +07:00
parent 18d054b6b0
commit afc4636bc3

View File

@@ -501,9 +501,17 @@
cito: props.item.T_OrderHeaderIsCito === 'Y',
}" @click="selectMe(props.item)">
<span title="total tagihan" style="color: black !important; font-weight: bold">
{{ number_format(props.item.totalbill) }} </span><br />
<span title="kurang bayar" v-if="props.item.flaglunas === 'N'">
{{ number_format(props.item.unpaid) }}
{{ number_format(props.item.totalbill) }}
</span><br />
<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>
</td>
</tr>