add description column on loan history form

This commit is contained in:
2024-01-14 15:54:09 +03:30
parent 84ffc999f4
commit 7066084c98
3 changed files with 5 additions and 2 deletions

View File

@@ -31,7 +31,7 @@
"dayjs": "^1.11.9",
"eslint": "8.36.0",
"file-saver": "^2.0.5",
"formik": "^2.2.9",
"formik": "^2.4.5",
"fs-extra": "^11.1.1",
"image-resize": "^1.3.2",
"image-to-file-converter": "^1.0.6",

View File

@@ -663,6 +663,7 @@
"Table_head_position": "سمت",
"Table_head_action": "عملیات",
"Table_head_file": "فایل پیوست",
"Table_head_expert_description": "توضیحات",
"empty_history_detail": "سابقه ای برای این وام وجود ندارد"
}
}

View File

@@ -69,6 +69,7 @@ const TableContent = ({rowId}) => {
<TableCell>{t("LoanHistory.Table_head_date")}</TableCell>
<TableCell>{t("LoanHistory.Table_head_position")}</TableCell>
<TableCell>{t("LoanHistory.Table_head_action")}</TableCell>
<TableCell>{t("LoanHistory.Table_head_expert_description")}</TableCell>
<TableCell>{t("LoanHistory.Table_head_file")}</TableCell>
</TableRow>
</TableHead>
@@ -82,12 +83,13 @@ const TableContent = ({rowId}) => {
'&:last-child td, &:last-child th': {border: 0}
}}
>
<TableCell component="th" scope="row">
<TableCell>
{latest_history.expert.name}
</TableCell>
<TableCell>{moment(latest_history.created_at).locale("fa").format("HH:mm | yyyy/MM/DD")}</TableCell>
<TableCell>{latest_history.expert.position}</TableCell>
<TableCell>{latest_history.previous_state_name}</TableCell>
<TableCell>{latest_history.expert_description}</TableCell>
<TableCell>
{latest_history.attachment ? (
<PrintHistory attachment={latest_history.attachment}/>