diff --git a/Admin/Install/Navigation.install.json b/Admin/Install/Navigation.install.json index a18b456..e12bd4e 100644 --- a/Admin/Install/Navigation.install.json +++ b/Admin/Install/Navigation.install.json @@ -58,6 +58,52 @@ "children": [] } ] + }, + { + "id": 1004304001, + "pid": "/", + "type": 2, + "subtype": 1, + "name": "Machines", + "uri": "{/base}/production/machine/list?{?}", + "target": "self", + "icon": null, + "order": 5, + "from": "Production", + "permission": { "permission": 2, "type": null, "element": null }, + "parent": 1004301001, + "children": [ + { + "id": 1004304101, + "pid": "/production", + "type": 3, + "subtype": 1, + "name": "List", + "uri": "{/base}/production/machine/list?{?}", + "target": "self", + "icon": null, + "order": 5, + "from": "Production", + "permission": { "permission": 2, "type": null, "element": null }, + "parent": 1004304001, + "children": [] + }, + { + "id": 1004304201, + "pid": "/production", + "type": 3, + "subtype": 1, + "name": "Create", + "uri": "{/base}/production/machine/create?{?}", + "target": "self", + "icon": null, + "order": 10, + "from": "Production", + "permission": { "permission": 4, "type": null, "element": null }, + "parent": 1004304001, + "children": [] + } + ] } ] } diff --git a/Admin/Routes/Web/Backend.php b/Admin/Routes/Web/Backend.php index 72ddc49..e1495ea 100644 --- a/Admin/Routes/Web/Backend.php +++ b/Admin/Routes/Web/Backend.php @@ -50,4 +50,37 @@ return [ ], ], ], + '^.*/production/machine/list(\?.*$|$)' => [ + [ + 'dest' => '\Modules\Production\Controller\BackendController:viewProductionMachineList', + 'verb' => RouteVerb::GET, + 'permission' => [ + 'module' => BackendController::MODULE_NAME, + 'type' => PermissionType::READ, + 'state' => PermissionState::MACHINE, + ], + ], + ], + '^.*/production/machine/create(\?.*$|$)' => [ + [ + 'dest' => '\Modules\Production\Controller\BackendController:viewProductionMachineCreate', + 'verb' => RouteVerb::GET, + 'permission' => [ + 'module' => BackendController::MODULE_NAME, + 'type' => PermissionType::CREATE, + 'state' => PermissionState::MACHINE, + ], + ], + ], + '^.*/production/machine/view(\?.*$|$)' => [ + [ + 'dest' => '\Modules\Production\Controller\BackendController:viewProductionMachineCreate', + 'verb' => RouteVerb::GET, + 'permission' => [ + 'module' => BackendController::MODULE_NAME, + 'type' => PermissionType::CREATE, + 'state' => PermissionState::MACHINE, + ], + ], + ], ]; diff --git a/Models/PermissionState.php b/Models/PermissionState.php index e954933..ac26f2a 100644 --- a/Models/PermissionState.php +++ b/Models/PermissionState.php @@ -29,4 +29,6 @@ abstract class PermissionState extends Enum public const PRODUCTION = 1; public const PROCESS = 2; + + public const MACHINE = 3; } diff --git a/Theme/Backend/Lang/Navigation.ar.lang.php b/Theme/Backend/Lang/Navigation.ar.lang.php deleted file mode 100644 index 8763a6f..0000000 --- a/Theme/Backend/Lang/Navigation.ar.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Articles' => '', - 'Process' => '', - 'Production' => '', -]]; diff --git a/Theme/Backend/Lang/Navigation.cs.lang.php b/Theme/Backend/Lang/Navigation.cs.lang.php deleted file mode 100644 index 8763a6f..0000000 --- a/Theme/Backend/Lang/Navigation.cs.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Articles' => '', - 'Process' => '', - 'Production' => '', -]]; diff --git a/Theme/Backend/Lang/Navigation.da.lang.php b/Theme/Backend/Lang/Navigation.da.lang.php deleted file mode 100644 index 8763a6f..0000000 --- a/Theme/Backend/Lang/Navigation.da.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Articles' => '', - 'Process' => '', - 'Production' => '', -]]; diff --git a/Theme/Backend/Lang/Navigation.de.lang.php b/Theme/Backend/Lang/Navigation.de.lang.php index a1e7a08..ae806d9 100644 --- a/Theme/Backend/Lang/Navigation.de.lang.php +++ b/Theme/Backend/Lang/Navigation.de.lang.php @@ -16,4 +16,7 @@ return ['Navigation' => [ 'Articles' => 'Artikel', 'Process' => 'Prozess', 'Production' => 'Produktion', + 'Machines' => 'Maschinen', + 'List' => 'Liste', + 'Create' => 'Erstellen', ]]; diff --git a/Theme/Backend/Lang/Navigation.el.lang.php b/Theme/Backend/Lang/Navigation.el.lang.php deleted file mode 100644 index 8763a6f..0000000 --- a/Theme/Backend/Lang/Navigation.el.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Articles' => '', - 'Process' => '', - 'Production' => '', -]]; diff --git a/Theme/Backend/Lang/Navigation.en.lang.php b/Theme/Backend/Lang/Navigation.en.lang.php index b51b436..a59c129 100644 --- a/Theme/Backend/Lang/Navigation.en.lang.php +++ b/Theme/Backend/Lang/Navigation.en.lang.php @@ -16,4 +16,7 @@ return ['Navigation' => [ 'Articles' => 'Articles', 'Process' => 'Process', 'Production' => 'Production', + 'Machines' => 'Machines', + 'List' => 'List', + 'Create' => 'Create', ]]; diff --git a/Theme/Backend/Lang/Navigation.es.lang.php b/Theme/Backend/Lang/Navigation.es.lang.php deleted file mode 100644 index 8763a6f..0000000 --- a/Theme/Backend/Lang/Navigation.es.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Articles' => '', - 'Process' => '', - 'Production' => '', -]]; diff --git a/Theme/Backend/Lang/Navigation.fi.lang.php b/Theme/Backend/Lang/Navigation.fi.lang.php deleted file mode 100644 index 8763a6f..0000000 --- a/Theme/Backend/Lang/Navigation.fi.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Articles' => '', - 'Process' => '', - 'Production' => '', -]]; diff --git a/Theme/Backend/Lang/Navigation.fr.lang.php b/Theme/Backend/Lang/Navigation.fr.lang.php deleted file mode 100644 index 8763a6f..0000000 --- a/Theme/Backend/Lang/Navigation.fr.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Articles' => '', - 'Process' => '', - 'Production' => '', -]]; diff --git a/Theme/Backend/Lang/Navigation.hu.lang.php b/Theme/Backend/Lang/Navigation.hu.lang.php deleted file mode 100644 index 8763a6f..0000000 --- a/Theme/Backend/Lang/Navigation.hu.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Articles' => '', - 'Process' => '', - 'Production' => '', -]]; diff --git a/Theme/Backend/Lang/Navigation.it.lang.php b/Theme/Backend/Lang/Navigation.it.lang.php deleted file mode 100644 index 8763a6f..0000000 --- a/Theme/Backend/Lang/Navigation.it.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Articles' => '', - 'Process' => '', - 'Production' => '', -]]; diff --git a/Theme/Backend/Lang/Navigation.ja.lang.php b/Theme/Backend/Lang/Navigation.ja.lang.php deleted file mode 100644 index 8763a6f..0000000 --- a/Theme/Backend/Lang/Navigation.ja.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Articles' => '', - 'Process' => '', - 'Production' => '', -]]; diff --git a/Theme/Backend/Lang/Navigation.ko.lang.php b/Theme/Backend/Lang/Navigation.ko.lang.php deleted file mode 100644 index 8763a6f..0000000 --- a/Theme/Backend/Lang/Navigation.ko.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Articles' => '', - 'Process' => '', - 'Production' => '', -]]; diff --git a/Theme/Backend/Lang/Navigation.no.lang.php b/Theme/Backend/Lang/Navigation.no.lang.php deleted file mode 100644 index 8763a6f..0000000 --- a/Theme/Backend/Lang/Navigation.no.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Articles' => '', - 'Process' => '', - 'Production' => '', -]]; diff --git a/Theme/Backend/Lang/Navigation.pl.lang.php b/Theme/Backend/Lang/Navigation.pl.lang.php deleted file mode 100644 index 8763a6f..0000000 --- a/Theme/Backend/Lang/Navigation.pl.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Articles' => '', - 'Process' => '', - 'Production' => '', -]]; diff --git a/Theme/Backend/Lang/Navigation.pt.lang.php b/Theme/Backend/Lang/Navigation.pt.lang.php deleted file mode 100644 index 8763a6f..0000000 --- a/Theme/Backend/Lang/Navigation.pt.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Articles' => '', - 'Process' => '', - 'Production' => '', -]]; diff --git a/Theme/Backend/Lang/Navigation.ru.lang.php b/Theme/Backend/Lang/Navigation.ru.lang.php deleted file mode 100644 index 8763a6f..0000000 --- a/Theme/Backend/Lang/Navigation.ru.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Articles' => '', - 'Process' => '', - 'Production' => '', -]]; diff --git a/Theme/Backend/Lang/Navigation.sv.lang.php b/Theme/Backend/Lang/Navigation.sv.lang.php deleted file mode 100644 index 8763a6f..0000000 --- a/Theme/Backend/Lang/Navigation.sv.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Articles' => '', - 'Process' => '', - 'Production' => '', -]]; diff --git a/Theme/Backend/Lang/Navigation.th.lang.php b/Theme/Backend/Lang/Navigation.th.lang.php deleted file mode 100644 index 8763a6f..0000000 --- a/Theme/Backend/Lang/Navigation.th.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Articles' => '', - 'Process' => '', - 'Production' => '', -]]; diff --git a/Theme/Backend/Lang/Navigation.tr.lang.php b/Theme/Backend/Lang/Navigation.tr.lang.php deleted file mode 100644 index 8763a6f..0000000 --- a/Theme/Backend/Lang/Navigation.tr.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Articles' => '', - 'Process' => '', - 'Production' => '', -]]; diff --git a/Theme/Backend/Lang/Navigation.uk.lang.php b/Theme/Backend/Lang/Navigation.uk.lang.php deleted file mode 100644 index 8763a6f..0000000 --- a/Theme/Backend/Lang/Navigation.uk.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Articles' => '', - 'Process' => '', - 'Production' => '', -]]; diff --git a/Theme/Backend/Lang/Navigation.zh.lang.php b/Theme/Backend/Lang/Navigation.zh.lang.php deleted file mode 100644 index 8763a6f..0000000 --- a/Theme/Backend/Lang/Navigation.zh.lang.php +++ /dev/null @@ -1,19 +0,0 @@ - [ - 'Articles' => '', - 'Process' => '', - 'Production' => '', -]]; diff --git a/Theme/Backend/Lang/api.en.lang.php b/Theme/Backend/Lang/api.en.lang.php deleted file mode 100644 index 98876d5..0000000 --- a/Theme/Backend/Lang/api.en.lang.php +++ /dev/null @@ -1,15 +0,0 @@ - []]; diff --git a/Theme/Backend/Lang/ar.lang.php b/Theme/Backend/Lang/ar.lang.php deleted file mode 100644 index 8b5e619..0000000 --- a/Theme/Backend/Lang/ar.lang.php +++ /dev/null @@ -1,29 +0,0 @@ - [ - 'Article' => '', - 'Done' => '', - 'Due' => '', - 'For' => '', - 'Name' => '', - 'Ordered' => '', - 'Orderer' => '', - 'Process' => '', - 'Product' => '', - 'Productions' => '', - 'Quantity' => '', - 'Start' => '', - 'Status' => '', -]]; diff --git a/Theme/Backend/Lang/cs.lang.php b/Theme/Backend/Lang/cs.lang.php deleted file mode 100644 index 8b5e619..0000000 --- a/Theme/Backend/Lang/cs.lang.php +++ /dev/null @@ -1,29 +0,0 @@ - [ - 'Article' => '', - 'Done' => '', - 'Due' => '', - 'For' => '', - 'Name' => '', - 'Ordered' => '', - 'Orderer' => '', - 'Process' => '', - 'Product' => '', - 'Productions' => '', - 'Quantity' => '', - 'Start' => '', - 'Status' => '', -]]; diff --git a/Theme/Backend/Lang/da.lang.php b/Theme/Backend/Lang/da.lang.php deleted file mode 100644 index 8b5e619..0000000 --- a/Theme/Backend/Lang/da.lang.php +++ /dev/null @@ -1,29 +0,0 @@ - [ - 'Article' => '', - 'Done' => '', - 'Due' => '', - 'For' => '', - 'Name' => '', - 'Ordered' => '', - 'Orderer' => '', - 'Process' => '', - 'Product' => '', - 'Productions' => '', - 'Quantity' => '', - 'Start' => '', - 'Status' => '', -]]; diff --git a/Theme/Backend/Lang/el.lang.php b/Theme/Backend/Lang/el.lang.php deleted file mode 100644 index 8b5e619..0000000 --- a/Theme/Backend/Lang/el.lang.php +++ /dev/null @@ -1,29 +0,0 @@ - [ - 'Article' => '', - 'Done' => '', - 'Due' => '', - 'For' => '', - 'Name' => '', - 'Ordered' => '', - 'Orderer' => '', - 'Process' => '', - 'Product' => '', - 'Productions' => '', - 'Quantity' => '', - 'Start' => '', - 'Status' => '', -]]; diff --git a/Theme/Backend/Lang/es.lang.php b/Theme/Backend/Lang/es.lang.php deleted file mode 100644 index 8b5e619..0000000 --- a/Theme/Backend/Lang/es.lang.php +++ /dev/null @@ -1,29 +0,0 @@ - [ - 'Article' => '', - 'Done' => '', - 'Due' => '', - 'For' => '', - 'Name' => '', - 'Ordered' => '', - 'Orderer' => '', - 'Process' => '', - 'Product' => '', - 'Productions' => '', - 'Quantity' => '', - 'Start' => '', - 'Status' => '', -]]; diff --git a/Theme/Backend/Lang/fi.lang.php b/Theme/Backend/Lang/fi.lang.php deleted file mode 100644 index 8b5e619..0000000 --- a/Theme/Backend/Lang/fi.lang.php +++ /dev/null @@ -1,29 +0,0 @@ - [ - 'Article' => '', - 'Done' => '', - 'Due' => '', - 'For' => '', - 'Name' => '', - 'Ordered' => '', - 'Orderer' => '', - 'Process' => '', - 'Product' => '', - 'Productions' => '', - 'Quantity' => '', - 'Start' => '', - 'Status' => '', -]]; diff --git a/Theme/Backend/Lang/fr.lang.php b/Theme/Backend/Lang/fr.lang.php deleted file mode 100644 index 8b5e619..0000000 --- a/Theme/Backend/Lang/fr.lang.php +++ /dev/null @@ -1,29 +0,0 @@ - [ - 'Article' => '', - 'Done' => '', - 'Due' => '', - 'For' => '', - 'Name' => '', - 'Ordered' => '', - 'Orderer' => '', - 'Process' => '', - 'Product' => '', - 'Productions' => '', - 'Quantity' => '', - 'Start' => '', - 'Status' => '', -]]; diff --git a/Theme/Backend/Lang/hu.lang.php b/Theme/Backend/Lang/hu.lang.php deleted file mode 100644 index 8b5e619..0000000 --- a/Theme/Backend/Lang/hu.lang.php +++ /dev/null @@ -1,29 +0,0 @@ - [ - 'Article' => '', - 'Done' => '', - 'Due' => '', - 'For' => '', - 'Name' => '', - 'Ordered' => '', - 'Orderer' => '', - 'Process' => '', - 'Product' => '', - 'Productions' => '', - 'Quantity' => '', - 'Start' => '', - 'Status' => '', -]]; diff --git a/Theme/Backend/Lang/it.lang.php b/Theme/Backend/Lang/it.lang.php deleted file mode 100644 index 8b5e619..0000000 --- a/Theme/Backend/Lang/it.lang.php +++ /dev/null @@ -1,29 +0,0 @@ - [ - 'Article' => '', - 'Done' => '', - 'Due' => '', - 'For' => '', - 'Name' => '', - 'Ordered' => '', - 'Orderer' => '', - 'Process' => '', - 'Product' => '', - 'Productions' => '', - 'Quantity' => '', - 'Start' => '', - 'Status' => '', -]]; diff --git a/Theme/Backend/Lang/ja.lang.php b/Theme/Backend/Lang/ja.lang.php deleted file mode 100644 index 8b5e619..0000000 --- a/Theme/Backend/Lang/ja.lang.php +++ /dev/null @@ -1,29 +0,0 @@ - [ - 'Article' => '', - 'Done' => '', - 'Due' => '', - 'For' => '', - 'Name' => '', - 'Ordered' => '', - 'Orderer' => '', - 'Process' => '', - 'Product' => '', - 'Productions' => '', - 'Quantity' => '', - 'Start' => '', - 'Status' => '', -]]; diff --git a/Theme/Backend/Lang/ko.lang.php b/Theme/Backend/Lang/ko.lang.php deleted file mode 100644 index 8b5e619..0000000 --- a/Theme/Backend/Lang/ko.lang.php +++ /dev/null @@ -1,29 +0,0 @@ - [ - 'Article' => '', - 'Done' => '', - 'Due' => '', - 'For' => '', - 'Name' => '', - 'Ordered' => '', - 'Orderer' => '', - 'Process' => '', - 'Product' => '', - 'Productions' => '', - 'Quantity' => '', - 'Start' => '', - 'Status' => '', -]]; diff --git a/Theme/Backend/Lang/no.lang.php b/Theme/Backend/Lang/no.lang.php deleted file mode 100644 index 8b5e619..0000000 --- a/Theme/Backend/Lang/no.lang.php +++ /dev/null @@ -1,29 +0,0 @@ - [ - 'Article' => '', - 'Done' => '', - 'Due' => '', - 'For' => '', - 'Name' => '', - 'Ordered' => '', - 'Orderer' => '', - 'Process' => '', - 'Product' => '', - 'Productions' => '', - 'Quantity' => '', - 'Start' => '', - 'Status' => '', -]]; diff --git a/Theme/Backend/Lang/pl.lang.php b/Theme/Backend/Lang/pl.lang.php deleted file mode 100644 index 8b5e619..0000000 --- a/Theme/Backend/Lang/pl.lang.php +++ /dev/null @@ -1,29 +0,0 @@ - [ - 'Article' => '', - 'Done' => '', - 'Due' => '', - 'For' => '', - 'Name' => '', - 'Ordered' => '', - 'Orderer' => '', - 'Process' => '', - 'Product' => '', - 'Productions' => '', - 'Quantity' => '', - 'Start' => '', - 'Status' => '', -]]; diff --git a/Theme/Backend/Lang/pt.lang.php b/Theme/Backend/Lang/pt.lang.php deleted file mode 100644 index 8b5e619..0000000 --- a/Theme/Backend/Lang/pt.lang.php +++ /dev/null @@ -1,29 +0,0 @@ - [ - 'Article' => '', - 'Done' => '', - 'Due' => '', - 'For' => '', - 'Name' => '', - 'Ordered' => '', - 'Orderer' => '', - 'Process' => '', - 'Product' => '', - 'Productions' => '', - 'Quantity' => '', - 'Start' => '', - 'Status' => '', -]]; diff --git a/Theme/Backend/Lang/ru.lang.php b/Theme/Backend/Lang/ru.lang.php deleted file mode 100644 index 8b5e619..0000000 --- a/Theme/Backend/Lang/ru.lang.php +++ /dev/null @@ -1,29 +0,0 @@ - [ - 'Article' => '', - 'Done' => '', - 'Due' => '', - 'For' => '', - 'Name' => '', - 'Ordered' => '', - 'Orderer' => '', - 'Process' => '', - 'Product' => '', - 'Productions' => '', - 'Quantity' => '', - 'Start' => '', - 'Status' => '', -]]; diff --git a/Theme/Backend/Lang/sv.lang.php b/Theme/Backend/Lang/sv.lang.php deleted file mode 100644 index 8b5e619..0000000 --- a/Theme/Backend/Lang/sv.lang.php +++ /dev/null @@ -1,29 +0,0 @@ - [ - 'Article' => '', - 'Done' => '', - 'Due' => '', - 'For' => '', - 'Name' => '', - 'Ordered' => '', - 'Orderer' => '', - 'Process' => '', - 'Product' => '', - 'Productions' => '', - 'Quantity' => '', - 'Start' => '', - 'Status' => '', -]]; diff --git a/Theme/Backend/Lang/th.lang.php b/Theme/Backend/Lang/th.lang.php deleted file mode 100644 index 8b5e619..0000000 --- a/Theme/Backend/Lang/th.lang.php +++ /dev/null @@ -1,29 +0,0 @@ - [ - 'Article' => '', - 'Done' => '', - 'Due' => '', - 'For' => '', - 'Name' => '', - 'Ordered' => '', - 'Orderer' => '', - 'Process' => '', - 'Product' => '', - 'Productions' => '', - 'Quantity' => '', - 'Start' => '', - 'Status' => '', -]]; diff --git a/Theme/Backend/Lang/tr.lang.php b/Theme/Backend/Lang/tr.lang.php deleted file mode 100644 index 8b5e619..0000000 --- a/Theme/Backend/Lang/tr.lang.php +++ /dev/null @@ -1,29 +0,0 @@ - [ - 'Article' => '', - 'Done' => '', - 'Due' => '', - 'For' => '', - 'Name' => '', - 'Ordered' => '', - 'Orderer' => '', - 'Process' => '', - 'Product' => '', - 'Productions' => '', - 'Quantity' => '', - 'Start' => '', - 'Status' => '', -]]; diff --git a/Theme/Backend/Lang/uk.lang.php b/Theme/Backend/Lang/uk.lang.php deleted file mode 100644 index 8b5e619..0000000 --- a/Theme/Backend/Lang/uk.lang.php +++ /dev/null @@ -1,29 +0,0 @@ - [ - 'Article' => '', - 'Done' => '', - 'Due' => '', - 'For' => '', - 'Name' => '', - 'Ordered' => '', - 'Orderer' => '', - 'Process' => '', - 'Product' => '', - 'Productions' => '', - 'Quantity' => '', - 'Start' => '', - 'Status' => '', -]]; diff --git a/Theme/Backend/Lang/zh.lang.php b/Theme/Backend/Lang/zh.lang.php deleted file mode 100644 index 8b5e619..0000000 --- a/Theme/Backend/Lang/zh.lang.php +++ /dev/null @@ -1,29 +0,0 @@ - [ - 'Article' => '', - 'Done' => '', - 'Due' => '', - 'For' => '', - 'Name' => '', - 'Ordered' => '', - 'Orderer' => '', - 'Process' => '', - 'Product' => '', - 'Productions' => '', - 'Quantity' => '', - 'Start' => '', - 'Status' => '', -]]; diff --git a/Theme/Backend/production-list.tpl.php b/Theme/Backend/production-list.tpl.php index 1682e18..18b2fae 100644 --- a/Theme/Backend/production-list.tpl.php +++ b/Theme/Backend/production-list.tpl.php @@ -45,7 +45,7 @@ echo $this->data['nav']->render(); ?> $value) : ++$c; $url = \phpOMS\Uri\UriFactory::build('{/prefix}business/department/view?{?}&id=' . $value->id); ?> - printHtml($value->id); ?> + id; ?> printHtml($value->getName()); ?> printHtml($value->getParent()); ?> printHtml($value->getUnit()); ?> diff --git a/info.json b/info.json index 5f51fa5..aa9aca3 100644 --- a/info.json +++ b/info.json @@ -17,7 +17,11 @@ "description": "Production module.", "directory": "Production", "dependencies": { - "Admin": "1.0.0" + "Admin": "1.0.0", + "ItemManagement": "1.0.0", + "SupplierManagement": "1.0.0", + "ClientManagement": "1.0.0", + "EquipmentManagement": "1.0.0" }, "providing": { "Navigation": "*"