70 lines
2.0 KiB
JSON
70 lines
2.0 KiB
JSON
{
|
|
"module": "entry",
|
|
"name": "Entries",
|
|
"icon": "icon-entry",
|
|
"dependencies": ["travel", "item"],
|
|
"validations": true,
|
|
"menus": {
|
|
"main": [
|
|
{"state": "entry.index", "icon": "icon-entry"},
|
|
{"state": "entry.latestBuys", "icon": "icon-latestBuys"}
|
|
],
|
|
"card": [
|
|
{"state": "entry.card.buy", "icon": "icon-lines"},
|
|
{"state": "entry.card.log", "icon": "history"}
|
|
]
|
|
},
|
|
"routes": [
|
|
{
|
|
"url": "/entry",
|
|
"state": "entry",
|
|
"abstract": true,
|
|
"component": "vn-entry",
|
|
"description": "Entries"
|
|
}, {
|
|
"url": "/index?q",
|
|
"state": "entry.index",
|
|
"component": "vn-entry-index",
|
|
"description": "Entries",
|
|
"acl": ["buyer"]
|
|
}, {
|
|
"url": "/latest-buys?q",
|
|
"state": "entry.latestBuys",
|
|
"component": "vn-entry-latest-buys",
|
|
"description": "Latest buys",
|
|
"acl": ["buyer"]
|
|
}, {
|
|
"url": "/create?supplierFk&travelFk&companyFk",
|
|
"state": "entry.create",
|
|
"component": "vn-entry-create",
|
|
"description": "New entry",
|
|
"acl": ["buyer"]
|
|
}, {
|
|
"url": "/:id",
|
|
"state": "entry.card",
|
|
"abstract": true,
|
|
"component": "vn-entry-card"
|
|
}, {
|
|
"url": "/summary",
|
|
"state": "entry.card.summary",
|
|
"component": "vn-entry-summary",
|
|
"description": "Summary",
|
|
"params": {
|
|
"entry": "$ctrl.entry"
|
|
}
|
|
}, {
|
|
"url" : "/log",
|
|
"state": "entry.card.log",
|
|
"component": "vn-entry-log",
|
|
"description": "Log"
|
|
}, {
|
|
"url" : "/buy",
|
|
"state": "entry.card.buy",
|
|
"component": "vn-entry-buy",
|
|
"description": "Buy",
|
|
"params": {
|
|
"entry": "$ctrl.entry"
|
|
}
|
|
}
|
|
]
|
|
} |