Merge branch 'feature/amin_bank_description' into 'develop'

add bank_reason_description

See merge request witel-front-end/loan-facilities/expert!157
This commit is contained in:
AmirHossein Mahmoodi
2024-02-24 09:58:31 +00:00
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>
),
}
],
[]