diff --git a/public/locales/fa/app.json b/public/locales/fa/app.json index c335958..70f243a 100644 --- a/public/locales/fa/app.json +++ b/public/locales/fa/app.json @@ -210,6 +210,7 @@ "id": "کد یکتا", "national_id": "کد ملی", "phone_number": "موبایل", + "province_name": "استان", "created_at": "تاریخ درخواست", "updated_at": "تاریخ بروزرسانی", "navgan_id": "کد ناوگان", @@ -221,6 +222,7 @@ "id": "کد یکتا", "national_id": "کد ملی", "phone_number": "موبایل", + "province_name": "استان", "created_at": "تاریخ درخواست", "updated_at": "تاریخ بروزرسانی", "navgan_id": "کد ناوگان", diff --git a/src/components/dashboard/navgan-loan-management/index.jsx b/src/components/dashboard/navgan-loan-management/index.jsx index 97879be..27cf5c0 100644 --- a/src/components/dashboard/navgan-loan-management/index.jsx +++ b/src/components/dashboard/navgan-loan-management/index.jsx @@ -82,6 +82,15 @@ function DashboardNavganLoanManagementComponent() { {renderedCellValue} ), }, + { + accessorFn: (row) => row.province_name, + id: "province_name", + header: t("NavganLoanManagement.province_name"), + enableColumnFilter: false, + Cell: ({renderedCellValue}) => ( + {renderedCellValue} + ), + }, { accessorFn: (row) => moment(row.created_at).locale("fa").format("HH:mm | yyyy/MM/DD"), diff --git a/src/components/dashboard/refahi-loan-management/index.jsx b/src/components/dashboard/refahi-loan-management/index.jsx index 6bb3753..4ae7238 100644 --- a/src/components/dashboard/refahi-loan-management/index.jsx +++ b/src/components/dashboard/refahi-loan-management/index.jsx @@ -82,6 +82,15 @@ function DashboardRefahiLoanManagementComponent() { {renderedCellValue} ), }, + { + accessorFn: (row) => row.province_name, + id: "province_name", + header: t("RefahiLoanManagement.province_name"), + enableColumnFilter: false, + Cell: ({renderedCellValue}) => ( + {renderedCellValue} + ), + }, { accessorFn: (row) => moment(row.created_at).locale("fa").format("HH:mm | yyyy/MM/DD"),