Merge branch 'release/v1.32.4'

This commit is contained in:
2024-02-24 10:54:03 +03:30
3 changed files with 7 additions and 6 deletions

View File

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

View File

@@ -434,6 +434,7 @@
"id": "کد یکتا", "id": "کد یکتا",
"national_serial_number": "سریال پشت کارت ملی", "national_serial_number": "سریال پشت کارت ملی",
"birthday": "تاریخ تولد", "birthday": "تاریخ تولد",
"approved_amount": "مبلغ تصویب شده",
"branch_name": "نام شعبه", "branch_name": "نام شعبه",
"bank_state": "وضعیت بانک", "bank_state": "وضعیت بانک",
"state_name": "وضعیت درخواست", "state_name": "وضعیت درخواست",

View File

@@ -113,9 +113,9 @@ function DashboardBankManagementComponent() {
), ),
}, },
{ {
accessorFn: (row) => row.proposed_amount, accessorFn: (row) => row.approved_amount,
id: "proposed_amount", id: "approved_amount",
header: t("BankManagement.proposed_amount"), header: t("BankManagement.approved_amount"),
enableColumnFilter: true, enableColumnFilter: true,
datatype: "text", datatype: "text",
filterFn: "equals", filterFn: "equals",
@@ -125,7 +125,7 @@ function DashboardBankManagementComponent() {
"contains", "contains",
], ],
Cell: ({renderedCellValue}) => ( Cell: ({renderedCellValue}) => (
<Typography variant="body2">{renderedCellValue}</Typography> <Typography variant="body2">{Number(renderedCellValue).toLocaleString()}</Typography>
), ),
}, },
{ {
@@ -144,7 +144,7 @@ function DashboardBankManagementComponent() {
"between", "between",
], ],
Cell: ({renderedCellValue}) => ( Cell: ({renderedCellValue}) => (
<Typography variant="body2">{renderedCellValue}</Typography> <Typography variant="body2">{Number(renderedCellValue).toLocaleString()}</Typography>
), ),
}, },
{ {