Merge branch 'release/v1.27.8'

This commit is contained in:
AmirHossein Mahmoodi
2024-01-06 14:27:15 +03:30
8 changed files with 91 additions and 1 deletions

View File

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

View File

@@ -196,6 +196,7 @@
"NavganProvinceManager": {
"name": "نام",
"id": "کد یکتا",
"statement_count": "تعداد صورت وضعیت",
"shenase_meli": "شناسه ملی",
"is_legal_person": "نوع شخص",
"haghighi": "حقیقی",
@@ -219,6 +220,7 @@
},
"PassengerBoss": {
"name": "نام",
"statement_count": "تعداد صورت وضعیت",
"id": "کد یکتا",
"score": "رتبه",
"navgan_capacity": "ظرفیت",
@@ -277,6 +279,7 @@
"NavganLoanManagement": {
"name": "نام",
"id": "کد یکتا",
"statement_count": "تعداد صورت وضعیت",
"score": "رتبه",
"navgan_capacity": "ظرفیت",
"manufacture_date": "سال ساخت",
@@ -322,6 +325,7 @@
"TransportationAssistance": {
"name": "نام",
"id": "کد یکتا",
"statement_count": "تعداد صورت وضعیت",
"shenase_meli": "شناسه ملی",
"is_legal_person": "نوع شخص",
"haghighi": "حقیقی",
@@ -357,6 +361,7 @@
},
"MachinaryOffice": {
"name": "نام",
"statement_count": "تعداد صورت وضعیت",
"id": "کد یکتا",
"score": "رتبه",
"navgan_capacity": "ظرفیت",
@@ -609,6 +614,7 @@
},
"LoanHistory": {
"id": "کد یکتا",
"statement_count": "تعداد صورت وضعیت",
"name": "نام",
"score": "رتبه",
"navgan_capacity": "ظرفیت",

View File

@@ -162,6 +162,20 @@ function DashboardLoanHistoryComponent() {
<Typography variant="body2">{renderedCellValue}</Typography>
),
},
{
accessorFn: (row) => row.statement_count,
id: "statement_count",
header: t("LoanHistory.statement_count"),
enableColumnFilter: true,
datatype: "numeric",
filterFn: "equals",
columnFilterModeOptions: [
"equals",
],
Cell: ({renderedCellValue}) => (
<Typography variant="body2">{renderedCellValue}</Typography>
),
},
{
accessorFn: (row) => row.score,
id: "score",

View File

@@ -163,6 +163,20 @@ function DashboardMachinaryOfficeComponent() {
<Typography variant="body2">{renderedCellValue}</Typography>
),
},
{
accessorFn: (row) => row.statement_count,
id: "statement_count",
header: t("MachinaryOffice.statement_count"),
enableColumnFilter: true,
datatype: "numeric",
filterFn: "equals",
columnFilterModeOptions: [
"equals",
],
Cell: ({renderedCellValue}) => (
<Typography variant="body2">{renderedCellValue}</Typography>
),
},
{
accessorFn: (row) => row.score,
id: "score",

View File

@@ -163,6 +163,20 @@ function DashboardNavganLoanManagementComponent() {
<Typography variant="body2">{renderedCellValue}</Typography>
),
},
{
accessorFn: (row) => row.statement_count,
id: "statement_count",
header: t("NavganLoanManagement.statement_count"),
enableColumnFilter: true,
datatype: "numeric",
filterFn: "equals",
columnFilterModeOptions: [
"equals",
],
Cell: ({renderedCellValue}) => (
<Typography variant="body2">{renderedCellValue}</Typography>
),
},
{
accessorFn: (row) => row.score,
id: "score",

View File

@@ -164,6 +164,20 @@ function DashboardNavganProvinceManagerComponent() {
<Typography variant="body2">{renderedCellValue}</Typography>
),
},
{
accessorFn: (row) => row.statement_count,
id: "statement_count",
header: t("NavganProvinceManager.statement_count"),
enableColumnFilter: true,
datatype: "numeric",
filterFn: "equals",
columnFilterModeOptions: [
"equals",
],
Cell: ({renderedCellValue}) => (
<Typography variant="body2">{renderedCellValue}</Typography>
),
},
{
accessorFn: (row) => row.vehicle_type,
id: "vehicle_type",

View File

@@ -164,6 +164,20 @@ function DashboardPassengerOfficeComponent() {
<Typography variant="body2">{renderedCellValue}</Typography>
),
},
{
accessorFn: (row) => row.statement_count,
id: "statement_count",
header: t("PassengerBoss.statement_count"),
enableColumnFilter: true,
datatype: "numeric",
filterFn: "equals",
columnFilterModeOptions: [
"equals",
],
Cell: ({renderedCellValue}) => (
<Typography variant="body2">{renderedCellValue}</Typography>
),
},
{
accessorFn: (row) => row.score,
id: "score",

View File

@@ -164,6 +164,20 @@ function DashboardTransportationAssistanceComponent() {
<Typography variant="body2">{renderedCellValue}</Typography>
),
},
{
accessorFn: (row) => row.statement_count,
id: "statement_count",
header: t("TransportationAssistance.statement_count"),
enableColumnFilter: true,
datatype: "numeric",
filterFn: "equals",
columnFilterModeOptions: [
"equals",
],
Cell: ({renderedCellValue}) => (
<Typography variant="body2">{renderedCellValue}</Typography>
),
},
{
accessorFn: (row) => row.vehicle_type,
id: "vehicle_type",