1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| -- save stockStatistic record
| -- mysql
| insert into `sys_menu` ( `name`, `parent_id`, `route`, `component`, `type`, `sort`, `tenant_id`, `status`) values ( 'menu.stockStatistic', '0', '/manager/stockStatistic', 'stockStatistic', '0' , '0', '1' , '1');
|
| insert into `sys_menu` ( `name`, `parent_id`, `type`, `authority`, `sort`, `tenant_id`, `status`) values ( 'Query 日库存统计', '', '1', 'manager:stockStatistic:list', '0', '1', '1');
| insert into `sys_menu` ( `name`, `parent_id`, `type`, `authority`, `sort`, `tenant_id`, `status`) values ( 'Create 日库存统计', '', '1', 'manager:stockStatistic:save', '1', '1', '1');
| insert into `sys_menu` ( `name`, `parent_id`, `type`, `authority`, `sort`, `tenant_id`, `status`) values ( 'Update 日库存统计', '', '1', 'manager:stockStatistic:update', '2', '1', '1');
| insert into `sys_menu` ( `name`, `parent_id`, `type`, `authority`, `sort`, `tenant_id`, `status`) values ( 'Delete 日库存统计', '', '1', 'manager:stockStatistic:remove', '3', '1', '1');
|
| -- locale menu name
| stockStatistic: 'StockStatistic',
|
| -- locale field
| stockStatistic: {
| id: "id",
| dayTime: "dayTime",
| taskType: "taskType",
| taskStatus: "taskStatus",
| maktx: "maktx",
| matnrCode: "matnrCode",
| count: "count",
| batch: "batch",
| anfme: "anfme",
| unit: "unit",
| },
|
| -- ResourceContent
| import stockStatistic from './stockStatistic';
|
| case 'stockStatistic':
| return stockStatistic;
|
|