Merge branch 'feature/amin_national_tracking_code' into 'develop'

Feature/amin national tracking code

See merge request witel-front-end/loan-facilities/expert!158
This commit is contained in:
AmirHossein Mahmoodi
2024-02-24 10:40:32 +00:00
2 changed files with 17 additions and 0 deletions

View File

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

View File

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