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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
| export const columns = [
| {
| type: 'seq',
| width: 60,
| title: '序号',
| },
| {
| field: 'materialNo',
| title: '物料编号',
| },
| {
| field: 'materialName',
| title: '物料名称',
| },
| {
| field: 'placeNo',
| title: '库位编号',
| },
| {
| field: 'storageTypeNoDesc',
| title: '库位类型',
| },
| {
| field: 'placeStatusDesc',
| title: '库位状态',
| },
| {
| field: 'redundantField1',
| title: '工艺流向编号',
| },
| {
| field: 'redundantField2',
| title: '管段编码',
| },
| {
| field: 'redundantField3',
| title: '管段名称',
| },
| {
| field: 'stockNumber',
| title: '库存数量',
| },
| {
| field: 'materialBatch',
| title: '物料批次',
| },
| {
| field: 'materialModel',
| title: '型号',
| },
| {
| field: 'areaName',
| title: '所属库区',
| },
| {
| field: 'orderInPlace',
| title: '库存次序',
| },
| {
| field: 'inStockTime',
| title: '入库时间',
| width: 180,
| },
| {
| field: 'isLockDesc',
| title: '锁定状态',
| },
| {
| field: 'remark',
| title: '备注',
| },
| ]
|
|