Update RestoreShift frontend
This commit is contained in:
miroman-afk
2022-01-13 15:43:04 +03:00
parent f964aca7a9
commit 61d8b4e1d2
18 changed files with 1973 additions and 126 deletions

View File

@@ -21,4 +21,28 @@
data: { title : 'Eorders' },
controller: 'OrdersCtrl',
resolve: ['scripts/controllers/orders.js']
},
{
code: 'app.clients',
url: '/clients',
templateUrl: '../views/clients/index.html',
data: {title: 'Гости'},
controller: 'ClientsCtrl',
resolve: ['scripts/controllers/clients.js']
},
{
code: 'app.shifts',
url: '/shifts',
templateUrl: '../views/shifts/index.html',
data: {title: 'Смены'},
controller: 'ShiftsCtrl',
resolve: ['scripts/controllers/shifts.js']
},
{
code: 'app.reports',
url: '/reports',
templateUrl: '../views/reports/index.html',
data: {title: 'Отчеты'},
controller: 'ReportsCtrl',
resolve: ['scripts/controllers/reports.js', 'moment', 'datetimepicker', 'select2']
}