feat: tags page

This commit is contained in:
2026-01-19 17:58:21 +03:30
parent 850b4a3f1e
commit a1aefdff8f
5 changed files with 182 additions and 25 deletions

View File

@@ -23,6 +23,7 @@ import Cooperatives from "../Pages/Cooperatives";
import CooperativeRanchers from "../Pages/CooperativeRanchers";
import SettingsOfUnits from "../Pages/SettingsOfUnits";
import Tagging from "../Pages/Tagging";
import Tags from "../Pages/Tags";
export const managementCategoryItems = [
{
@@ -171,6 +172,16 @@ export const taggingCategoryItems = [
path: R.TAGGING,
component: Tagging,
},
{
name: "tags",
path: R.TAGS,
component: Tags,
},
{
name: "tags",
path: R.TAGS_BATCH,
component: Tags,
},
];
export const posCategoryItems = [

View File

@@ -97,6 +97,9 @@ export function getFaPermissions(permission: string) {
case "tagging":
faPermission = "پلاک کوبی";
break;
case "tags":
faPermission = "پلاک ها";
break;
default:
break;
}