add bank_reason_description

This commit is contained in:
2024-02-24 13:25:01 +03:30
parent 5d48837706
commit d903d3fa21
2 changed files with 17 additions and 0 deletions

View File

@@ -438,6 +438,7 @@
"branch_name": "نام شعبه",
"bank_state": "وضعیت بانک",
"state_name": "وضعیت درخواست",
"bank_reason_description": "توضیحات بانک",
"national_id": "کد ملی",
"proposed_amount": "مبلغ پیشنهادی",
"bank_loan_amount": "مبلغ وام بانک",

View File

@@ -174,6 +174,22 @@ function DashboardBankManagementComponent() {
Cell: ({renderedCellValue}) => (
<Typography variant="body2">{renderedCellValue}</Typography>
),
},
{
accessorFn: (row) => row.bank_reason_description,
id: "bank_reason_description",
header: t("BankManagement.bank_reason_description"),
enableColumnFilter: true,
datatype: "text",
filterFn: "equals",
columnFilterModeOptions: [
"equals",
"notEquals",
"contains"
],
Cell: ({renderedCellValue}) => (
<Typography variant="body2">{renderedCellValue}</Typography>
),
}
],
[]