skyouc
2 天以前 0cf1c13ac668cdb689b073c3961592d8ab41316c
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
38
39
40
41
42
43
44
45
-- save locItemWorking record
-- mysql
insert into `sys_menu` ( `name`, `parent_id`, `route`, `component`, `type`, `sort`, `tenant_id`, `status`) values ( 'menu.locItemWorking', '0', '/manager/locItemWorking', 'locItemWorking', '0' , '0', '1' , '1');
 
insert into `sys_menu` ( `name`, `parent_id`, `type`, `authority`, `sort`, `tenant_id`, `status`) values ( 'Query 容器管理', '', '1', 'manager:locItemWorking:list', '0', '1', '1');
insert into `sys_menu` ( `name`, `parent_id`, `type`, `authority`, `sort`, `tenant_id`, `status`) values ( 'Create 容器管理', '', '1', 'manager:locItemWorking:save', '1', '1', '1');
insert into `sys_menu` ( `name`, `parent_id`, `type`, `authority`, `sort`, `tenant_id`, `status`) values ( 'Update 容器管理', '', '1', 'manager:locItemWorking:update', '2', '1', '1');
insert into `sys_menu` ( `name`, `parent_id`, `type`, `authority`, `sort`, `tenant_id`, `status`) values ( 'Delete 容器管理', '', '1', 'manager:locItemWorking:remove', '3', '1', '1');
 
-- locale menu name
locItemWorking: 'LocItemWorking',
 
-- locale field
locItemWorking: {
    locId: "locId",
    locCode: "locCode",
    orderId: "orderId",
    type: "type",
    orderItemId: "orderItemId",
    wkType: "wkType",
    matnrId: "matnrId",
    maktx: "maktx",
    platItemId: "platItemId",
    platOrderCode: "platOrderCode",
    platWorkCode: "platWorkCode",
    projectCode: "projectCode",
    matnrCode: "matnrCode",
    trackCode: "trackCode",
    unit: "unit",
    anfme: "anfme",
    qty: "qty",
    workQty: "workQty",
    batch: "batch",
    splrBatch: "splrBatch",
    splrId: "splrId",
    spec: "spec",
    model: "model",
    fieldsIndex: "fieldsIndex",
},
 
-- ResourceContent
import locItemWorking from './locItemWorking';
 
case 'locItemWorking':
    return locItemWorking;