[WIP] Cashless

This commit is contained in:
R
2023-01-11 14:29:02 +07:00
parent 804ac883fa
commit 552a2367f5
14 changed files with 1772 additions and 1037 deletions

View File

@@ -218,6 +218,12 @@ export default function List() {
({row.diagnosis?.code}) {row.diagnosis?.name}
</TableCell>
<TableCell align="left">{fCurrency(row.total_claim)}</TableCell>
{ (row.status == 'approved' && (
<TableCell align="left">Approved</TableCell>
)) }
{ (row.status == 'postponed' && (
<TableCell align="left">Postpone</TableCell>
)) }
<TableCell align="right">
<EditRoundedIcon
@@ -271,6 +277,9 @@ export default function List() {
<TableCell style={headStyle} align="left">
Total Claim
</TableCell>
<TableCell style={headStyle} align="left">
Status
</TableCell>
<TableCell style={headStyle} align="right">
Action
</TableCell>