feat: modules, products, services, services kits

This commit is contained in:
2025-09-16 10:56:10 +04:00
parent f2746b8b65
commit 553e76d610
92 changed files with 8404 additions and 103 deletions

28
src/modules/modules.tsx Normal file
View File

@ -0,0 +1,28 @@
import {
IconBox,
} from "@tabler/icons-react";
import ModulesType from "./types";
import connectModules from "./connectModules";
export enum ModuleNames {
FULFILLMENT_BASE = "fulfillment_base",
}
const modules: ModulesType = {
[ModuleNames.FULFILLMENT_BASE]: {
renderInfo: {
label: "Фулфиллмент",
key: "fulfillment_base",
icon: <IconBox />,
},
modelData: {
id: 1,
key: "fulfillment_base",
label: "Фулфиллмент",
iconName: "IconBox",
description: "Создание товаров и услуг, их привязка к сделкам",
},
},
};
export const MODULES = connectModules(modules);