skyouc
2025-03-10 02c50bf159f9432ef7ee6ba3b3a64f4dd8b3186f
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 warehouseAreasItem record
-- mysql
insert into `sys_menu` ( `name`, `parent_id`, `route`, `component`, `type`, `sort`, `tenant_id`, `status`) values ( 'menu.warehouseAreasItem', '0', '/manager/warehouseAreasItem', 'warehouseAreasItem', '0' , '0', '1' , '1');
 
insert into `sys_menu` ( `name`, `parent_id`, `type`, `authority`, `sort`, `tenant_id`, `status`) values ( 'Query 收货区库存信息', '', '1', 'manager:warehouseAreasItem:list', '0', '1', '1');
insert into `sys_menu` ( `name`, `parent_id`, `type`, `authority`, `sort`, `tenant_id`, `status`) values ( 'Create 收货区库存信息', '', '1', 'manager:warehouseAreasItem:save', '1', '1', '1');
insert into `sys_menu` ( `name`, `parent_id`, `type`, `authority`, `sort`, `tenant_id`, `status`) values ( 'Update 收货区库存信息', '', '1', 'manager:warehouseAreasItem:update', '2', '1', '1');
insert into `sys_menu` ( `name`, `parent_id`, `type`, `authority`, `sort`, `tenant_id`, `status`) values ( 'Delete 收货区库存信息', '', '1', 'manager:warehouseAreasItem:remove', '3', '1', '1');
 
-- locale menu name
warehouseAreasItem: 'WarehouseAreasItem',
 
-- locale field
warehouseAreasItem: {
    areaId: "areaId",
    areaName: "areaName",
    matnrId: "matnrId",
    matnrName: "matnrName",
    matnrCode: "matnrCode",
    barcode: "barcode",
    anfme: "anfme",
    batch: "batch",
    unit: "unit",
    stockUnit: "stockUnit",
    brand: "brand",
    shipperId: "shipperId",
    splrId: "splrId",
    weight: "weight",
    prodTime: "prodTime",
    splrBtch: "splrBtch",
},
 
-- ResourceContent
import warehouseAreasItem from './warehouseAreasItem';
 
case 'warehouseAreasItem':
    return warehouseAreasItem;