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
32
33
34
35
36
37
| -- save locItem record
| -- mysql
| insert into `sys_menu` ( `name`, `parent_id`, `route`, `component`, `type`, `sort`, `tenant_id`, `status`) values ( 'menu.locItem', '0', '/manager/locItem', 'locItem', '0' , '0', '1' , '1');
|
| insert into `sys_menu` ( `name`, `parent_id`, `type`, `authority`, `sort`, `tenant_id`, `status`) values ( 'Query 库位明细', '', '1', 'manager:locItem:list', '0', '1', '1');
| insert into `sys_menu` ( `name`, `parent_id`, `type`, `authority`, `sort`, `tenant_id`, `status`) values ( 'Create 库位明细', '', '1', 'manager:locItem:save', '1', '1', '1');
| insert into `sys_menu` ( `name`, `parent_id`, `type`, `authority`, `sort`, `tenant_id`, `status`) values ( 'Update 库位明细', '', '1', 'manager:locItem:update', '2', '1', '1');
| insert into `sys_menu` ( `name`, `parent_id`, `type`, `authority`, `sort`, `tenant_id`, `status`) values ( 'Delete 库位明细', '', '1', 'manager:locItem:remove', '3', '1', '1');
|
| -- locale menu name
| locItem: 'LocItem',
|
| -- locale field
| locItem: {
| locId: "locId",
| orderId: "orderId",
| type: "type",
| orderItemId: "orderItemId",
| wkType: "wkType",
| matnrId: "matnrId",
| maktx: "maktx",
| matnrCode: "matnrCode",
| trackCode: "trackCode",
| unit: "unit",
| anfme: "anfme",
| batch: "batch",
| splrBatch: "splrBatch",
| spec: "spec",
| model: "model",
| fieldsIndex: "fieldsIndex",
| },
|
| -- ResourceContent
| import locItem from './locItem';
|
| case 'locItem':
| return locItem;
|
|