add national_tracking_code

This commit is contained in:
2024-02-24 14:01:34 +03:30
parent 0d2060faab
commit 6335f24324
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",