Merge branch 'release/1.32.6'

This commit is contained in:
2024-02-24 14:22:15 +03:30
3 changed files with 18 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
NEXT_PUBLIC_API_NAME = "Loan Facilities Dashboard"
NEXT_PUBLIC_API_VERSION = "1.32.5"
NEXT_PUBLIC_API_VERSION = "1.32.6"
NEXT_PUBLIC_DEFAULT_LANGUAGE = "fa"
NEXT_PUBLIC_DEFAULT_DIRECTION = "rtl"

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",