Blame view

src/main/java/com/huaheng/common/constant/QuantityConstant.java 14.1 KB
pengcheng authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.huaheng.common.constant;

/**
 * 数字自定义常量
 *
 * @author  ricard
 */
public class QuantityConstant {
    /**
     * 1、入库单状态
     * 2、出库单状态
     * 3、单据上传状态
     * 4、入库组盘状态
     * 5、出库组盘状态
     * 6、任务类型
     * 7、任务状态
     * 8、波次状态
     * 9、质检状态
     * 10、盘点状态
DESKTOP-AO0VKC8\mahua authored
20
     * 11INVENTORY_TRANSACTION_RECEIPT
pengcheng authored
21
22
23
24
25
26
27
28
29
30
31
     * 12、调整单状态
     * 13、任务内部类型
     * 14、质检单类型
     */

    //1、入库单状态

    //新建
    public static final Integer RECEIPT_HEADER_BUILD = 0;

    //等待审核
32
    public static final Integer RECEIPT_HEADER_VERIFYING = 5;
pengcheng authored
33
34

    //驳回
35
    public static final Integer RECEIPT_HEADER_REJECTED = 10;
pengcheng authored
36
37
38
39

    //作废
    public static final Integer RECEIPT_HEADER_OBSOLETE = 20;
40
41
42
43
    /**通过*/
//    public static final Integer RECEIPT_HEADER_APPROVE = 50;

    /**订单池*/
pengcheng authored
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
    public static final Integer RECEIPT_HEADER_POOL = 100;

    //入库预约
    public static final Integer RECEIPT_HEADER_RESERVATION = 120;

    //入库到货
    public static final Integer RECEIPT_HEADER_ARRIVAL = 150;

    //入库质检
    public static final Integer RECEIPT_HEADER_CHECK = 180;

    //收货
    public static final Integer RECEIPT_HEADER_RECEIVING = 200;

    //定位
    public static final Integer RECEIPT_HEADER_POSITION = 240;

    //等待上架
    public static final Integer RECEIPT_HEADER_WAIT = 280;
64
    /** 上架 */
pengcheng authored
65
66
    public static final Integer RECEIPT_HEADER_SHELF = 300;
DESKTOP-AO0VKC8\mahua authored
67
    /** 过账*/
pengcheng authored
68
69
    public static final Integer RECEIPT_HEADER_POSTING = 800;
DESKTOP-AO0VKC8\mahua authored
70
    /** 回传 */
pengcheng authored
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
    public static final Integer RECEIPT_HEADER_RETURN = 900;





    //2、出库单状态

    //新建
    public static final Integer SHIPMENT_HEADER_BUILD = 0;

    //订单池
    public static final Integer SHIPMENT_HEADER_POOL = 100;

    //出库预约
    public static final Integer SHIPMENT_HEADER_RESERVATION = 120;

    //订单分析
    public static final Integer SHIPMENT_HEADER_ANALYSIS = 150;

    //波次
    public static final Integer SHIPMENT_HEADER_WAVE = 200;

    //出库组盘
    public static final Integer SHIPMENT_HEADER_GROUPDISK = 300;

    //拣货完成
    public static final Integer SHIPMENT_HEADER_COMPLETED = 500;

    //发运
    public static final Integer SHIPMENT_HEADER_SHIPPING = 800;

    //回传
    public static final Integer SHIPMENT_HEADER_RETURN = 900;




    //3、单据上传状态

    //未上传
    public static final Integer UPLOAD_NOT = 0;

    //上传失败
    public static final Integer UPLOAD_FAILED = 10;

    //上架完成
    public static final Integer UPLOAD_SUCCESS = 20;




    //4、入库组盘状态

    //新建
    public static final Integer RECEIPT_CONTAINER_BUILD = 0;
128
    /** 生成任务 */
pengcheng authored
129
130
    public static final Integer RECEIPT_CONTAINER_TASK= 10;
131
    /**上架完成 */
pengcheng authored
132
133
    public static final Integer RECEIPT_CONTAINER_FINISHED = 20;
134
    /** 复核完成*/
pengcheng authored
135
136
137
138
139
140
    public static final Integer RECEIPT_CONTAINER_REVIEWSUCCESS = 30;



    //5、出库组盘状态
141
    /** 新建 */
pengcheng authored
142
143
    public static final Integer SHIPMENT_CONTAINER_BUILD = 0;
144
    /** 生成任务 */
pengcheng authored
145
146
    public static final Integer SHIPMENT_CONTAINER_TASK= 10;
147
    /** 拣货完成 */
pengcheng authored
148
149
    public static final Integer SHIPMENT_CONTAINER_FINISHED = 20;
150
    /** 复核完成 */
pengcheng authored
151
152
153
154
155
156
    public static final Integer SHIPMENT_CONTAINER_REVIEWSUCCESS = 30;



    //6、任务类型
157
    /** 整盘入库 */
游杰 authored
158
    public static final int TASK_TYPE_WHOLERECEIPT = 100;
pengcheng authored
159
160
    /** 补充入库 */
游杰 authored
161
    public static final int TASK_TYPE_SUPPLEMENTRECEIPT = 200;
pengcheng authored
162
163
    /** 整盘出库 */
游杰 authored
164
    public static final int TASK_TYPE_WHOLESHIPMENT = 300;
pengcheng authored
165
166
    /** 分拣出库 */
游杰 authored
167
    public static final int TASK_TYPE_SORTINGSHIPMENT = 400;
pengcheng authored
168
169
    /** 空容器入库 */
游杰 authored
170
    public static final int TASK_TYPE_EMPTYRECEIPT = 500;
pengcheng authored
171
172
    /** 空容器出库 */
游杰 authored
173
    public static final int TASK_TYPE_EMPTYSHIPMENT = 600;
pengcheng authored
174
175
    /** 盘点 */
游杰 authored
176
    public static final int TASK_TYPE_CYCLECOUNT = 700;
pengcheng authored
177
178
    /** 移库 */
游杰 authored
179
    public static final int TASK_TYPE_TRANSFER = 800;
pengcheng authored
180
181
    /** 出库查看 */
游杰 authored
182
    public static final int TASK_TYPE_VIEW = 900;
pengcheng authored
183
游杰 authored
184
    /** 过站 */
游杰 authored
185
186
    public static final int TASK_TYPE_OVER_STATION = 1000;
游杰 authored
187
188
189
190
191
192
    /** 空托盘组入库 */
    public static final int TASK_TYPE_MANY_EMPTYRECEIPT = 1100;

    /** 空托盘组出库 */
    public static final int TASK_TYPE_MANY_EMPTYSHIPMENT = 1200;
pengcheng authored
193
194
195
196


    //7、任务状态
197
    /** 生成任务 */
游杰 authored
198
    public static final int TASK_STATUS_BUILD = 1;
pengcheng authored
199
200
    /** 下达任务 */
游杰 authored
201
    public static final int TASK_STATUS_RELEASE = 10;
pengcheng authored
202
203
    /** 开始执行 */
游杰 authored
204
    public static final int TASK_STATUS_RUNNING = 20;
pengcheng authored
205
游杰 authored
206
207
208
209
    /** 到达拣选站台 */
    public static final int TASK_STATUS_ARRIVED_STATION = 50;
210
    /** 任务完成 */
游杰 authored
211
    public static final int TASK_STATUS_COMPLETED = 100;
pengcheng authored
212
tongzhonghao authored
213
214
215
    /** 单据已删除*/
    public static final int TASK_STATUS_REMOVE = 170;
pengcheng authored
216
217
218

    //8、波次状态
pengcheng authored
219
220
    //未执行
    public static final Integer WAVE_STATUS_BUILD = 10;
pengcheng authored
221
pengcheng authored
222
223
    //执行中
    public static final Integer WAVE_STATUS_START = 20;
pengcheng authored
224
pengcheng authored
225
226
    //结束
    public static final Integer WAVE_STATUS_END = 30;
pengcheng authored
227
pengcheng authored
228
229
    //执行失败
    public static final Integer WAVE_STATUS_ERROR = 40;
pengcheng authored
230
231
pengcheng authored
232
233
    //波次新建
    public static final Integer WAVE_STEP_BUILD = 0;
pengcheng authored
234
pengcheng authored
235
236
    //剔除订单
    public static final Integer WAVE_STEP_CULL = 5;
pengcheng authored
237
pengcheng authored
238
239
240
241
242
243
244
245
    //波次执行
    public static final Integer WAVE_STEP_START = 10;

    //波次释放
    public static final Integer WAVE_STEP_FREED = 130;

    //波次完成
    public static final Integer WAVE_STEP_END = 100;
pengcheng authored
246
pengcheng authored
247
248
    //波次失败
    public static final Integer WAVE_STEP_ERROR = 120;
pengcheng authored
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288




    //9、质检状态

    //新建
    public static final Integer CHECK_STATUS_BUILD = 0;

    //质检中
    public static final Integer CHECK_STATUS_IN = 10;

    //质检完成
    public static final Integer CHECK_STATUS_COMPLETED = 20;



    //10、盘点状态

    //新建
    public static final Integer CYCLECOUNT_STATUS_BUILD = 1;

    //盘点任务生成
    public static final Integer CYCLECOUNT_STATUS_BUILDTASK = 5;

    //执行中
    public static final Integer CYCLECOUNT_STATUS_EXECUTING = 10;

    //已登记
    public static final Integer CYCLECOUNT_STATUS_REGISTERED= 15;

    //审核
    public static final Integer CYCLECOUNT_STATUS_REVIEW = 30;

    //关闭
    public static final Integer CYCLECOUNT_STATUS_CLOSE = 99;

    //盘点完成
    public static final Integer CYCLECOUNT_STATUS_COMPLETED = 100;
289
290
291
    //盘点有差异
    public static final Integer CYCLECOUNT_STATUS_DIFFERENCE = 105;
pengcheng authored
292
    //已生成调整单
293
294
    public static final Integer CYCLECOUNT_STATUS_GENERATEADJUST = 110;
pengcheng authored
295
296
297
298
299



    //11、库存交易类型
DESKTOP-AO0VKC8\mahua authored
300
    /** 入库 */
pengcheng authored
301
302
    public static final Integer INVENTORY_TRANSACTION_RECEIPT = 10;
DESKTOP-AO0VKC8\mahua authored
303
    /** 出库 */
pengcheng authored
304
305
    public static final Integer INVENTORY_TRANSACTION_SHIPMENT = 20;
DESKTOP-AO0VKC8\mahua authored
306
    /** 调整入 */
pengcheng authored
307
308
    public static final Integer INVENTORY_TRANSACTION_ADJUSTINTO = 30;
DESKTOP-AO0VKC8\mahua authored
309
    /** 调整出 */
pengcheng authored
310
311
    public static final Integer INVENTORY_TRANSACTION_ADJUSTOUT = 40;
DESKTOP-AO0VKC8\mahua authored
312
    /** 调整属性 */
pengcheng authored
313
314
    public static final Integer INVENTORY_TRANSACTION_ADJUSTPROPERTIES = 50;
DESKTOP-AO0VKC8\mahua authored
315
    /** 盘点 */
pengcheng authored
316
317
    public static final Integer INVENTORY_TRANSACTION_CYCLECOUNT = 60;
DESKTOP-AO0VKC8\mahua authored
318
    /** 移库入 */
pengcheng authored
319
320
    public static final Integer INVENTORY_TRANSACTION_TRANSFERINTO = 70;
DESKTOP-AO0VKC8\mahua authored
321
    /** 移库出 */
pengcheng authored
322
323
324
    public static final Integer INVENTORY_TRANSACTION_TRANSFEROUT = 80;
325
326
327
328
329
330
    /** clearReceipt */
    public static final Integer INVENTORY_TRANSACTION_CLEAR_RECEIPT = 200;
    /** clearShipment */
    public static final Integer INVENTORY_TRANSACTION_CLEAR_SHIPMENT = 210;
331
pengcheng authored
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
    //12、调整单状态

    //未批准
    public static final Integer ADJUST_STATUS_NOAPPROVED = 0;

    //已批准
    public static final Integer ADJUST_STATUS_APPROVED = 1;

    //待调整
    public static final Integer ADJUST_STATUS_WAIT = 2;

    //已调整
    public static final Integer ADJUST_STATUS_STOP = 3;


    //13、任务内部类型
349
    /** 上架任务*/
游杰 authored
350
    public static final Integer TASK_INTENERTYPE_RECEIPT = 100;
pengcheng authored
351
352
    /** 拣货任务*/
游杰 authored
353
    public static final Integer TASK_INTENERTYPE_SHIPMENT = 200;
pengcheng authored
354
355
    /** 工作任务*/
游杰 authored
356
    public static final Integer TASK_INTENERTYPE_WORK = 300;
pengcheng authored
357
358

    //盘点任务
游杰 authored
359
    public static final Integer TASK_INTENERTYPE_CYCLECOUNT = 400;
pengcheng authored
360
361
362
363
364
365
366
367
368
369
370
371
372
373



    //13、质检单类型

    //入库质检
    public static final Integer CHECK_TYPE_RECEIPT = 100;

    //在库全检
    public static final Integer CHECK_TYPE_FULL = 200;

    //在库抽检
    public static final Integer CHECK_TYPE_SELECT = 300;
pengcheng authored
374
375
    //空货架
    public static final Integer POINTS_EMPTY = 0;
pengcheng authored
376
pengcheng authored
377
378
    //非空货架
    public static final Integer POINTS_SOME = 1;
游杰 authored
379
380
381

    public static final int ROW_OUT = 1;
    public static final int ROW_IN = 0;
游杰 authored
382
383
    //WCS任务下发
周鸿 authored
384
    public static final String ADDRESS_WCS_TASK_ASSIGN = "wcs";
385
386
387
388
389
390
391
392
    //WCS任务取消
    public static final String ADDRESS_WCS_TASK_CANCEL = "WCS_TASK_CANCEL";
    //WCS任务信息查询
    public static final String ADDRESS_WCS_TASK_INFO = "WCS_TASK_INFO";
    //WCS设置任务优先级
    public static final String ADDRESS_WCS_TASK_PRIORITY_CHANGE = "WCS_TASK_PRIORITY_CHANGE";
    //WCS站台信息查询
    public static final String ADDRESS_WCS_STATION_INFOS = "WCS_STATION_INFOS";
周鸿 authored
393
394
395
396
397
398
399
400

    public static final String ADDRESS_WCS_TASK_STATIONINFOS_="WCS_TASK_STATIONINFOS";

    public static final String ADDRESS_WCS_TASK_GETLOCATIONS="WCS_TASK_GETLOCATIONS";

    public static final String ADDRESS_WCS_TASK_GETAVAILABLE_ROWDWAY="WCS_TASK_GETAVAILABLE_ROWDWAY";

    public static final String ADDRESS_WCS_TASK_GETSTATIONCONTAINER="WCS_TASK_GETSTATIONCONTAINER";
401
402
    //WCS获取可用巷道
    public static final String ADDRESS_WCS_AVAILABLE_ROADWAY = "WCS_AVAILABLE_ROADWAY";
游杰 authored
403
404
    //拆盘机地址
    public static final String ADDRESS_WCS_MANY_EMPTY_CONTAINER = "WCS_MANY_EMPTY_CONTAINER";
405
406
    //mms
    public static final String ADDRESS_MMS = "mms";
407
游杰 authored
408
    //ERP
409
410
    public static final String PLATFORM_ERP = "ERP";
    public static final String PLATFORM_WMS = "WMS";
游杰 authored
411
412
    //good
    public static final String GOOD = "good";
413
    public static final String EMPTY_STRING = "";
游杰 authored
414
415
    //入口
416
    public static final int STATION_IN = 1;
417
    //出口
418
    public static final int STATION_OUT = 2;
419
    //出入口
420
    public static final int STATION_PICK = 3;
421
    //出入口和出口
422
    public static final int STATION_PICK_AND_OUT = 4;
423
游杰 authored
424
    public static final String STATUS_CONTAINER_EMPTY = "empty";
425
    public static final String STATUS_CONTAINER_LOCK = "lock";
游杰 authored
426
    public static final String STATUS_CONTAINER_SOME = "some";
427
    public static final String STATUS_CONTAINER_FULL = "full";
游杰 authored
428
    public static final String STATUS_CONTAINER_MANY = "many";
429
游杰 authored
430
431
    public static final String STATUS_LOCATION_EMPTY = "empty";
    public static final String STATUS_LOCATION_LOCK = "lock";
游杰 authored
432
游杰 authored
433
434
    public static final String RULE_SHIPMENT_TASK= "shipmentTaskRule";
    public static final String RULE_TASK_LOCATION = "taskLocationRule";
435
    public static final String RULE_CONNECT_WCS = "connectWcs";
游杰 authored
436
    public static final String RULE_ALLOCATION = "allocationRule";
tongzhonghao authored
437
    public static final String ZONE_MUTLI_ROADWAY = "ZONE_MUTLI_ROADWAY";
438
    public static final String DOUBLE_FORK_RESERVE_LOCATION = "doubleForkReserveLocation";
游杰 authored
439
440
441

    public static final int DOUBLE_FORK = 1;
    public static final int SINGLE_FORK = 0;
游杰 authored
442
游杰 authored
443
444
    public static final int RULE_TASK_SET_LOCATION = 1;
    public static final int RULE_TASK_NOT_LOCATION = 0;
445
446
447
448
449
450

    public static final int RULE_TASK_PICK_SHIPMENT = 1;
    public static final int RULE_TASK_WHOLE_SHIPMENT = 0;

    public static final int RULE_WCS_CONNECT = 1;
    public static final int RULE_WCS_DISCONNECT = 0;
451
游杰 authored
452
453
    public static final int NOT_MATERIAL_AREAS = 0;
454
455
456
    public static final int RYTASK_STATUS_RUN = 0;
    public static final int RYTASK_STATUS_STOP = 1;
457
458
459
460
461
462
463
    public static final int DOUBLE_IN = 1;
    public static final int NORMAL_IN = 0;

    public static final int EMPTY_OUT = 1;
    public static final int NORMAL_OUT = 0;
464
    public static String ryTask_warehouse_code;
465
tongzhonghao authored
466
    public static String RECEIPT_TYPE_PPI = "PPI";
467
468
469
470
471
    public static String U8_RECEIPT_TYPE_PCI = "PCI";
    public static String U8_RECEIPT_TYPE_CI = "CI";
    public static String U8_RECEIPT_TYPE_PI = "PI";
    public static String U8_RECEIPT_TYPE_SRI = "SRI";
tongzhonghao authored
472
    public static String SHIPMENT_TYPE_PO = "PO";
tongzhonghao authored
473
474
475
476
477
    public static String U8_SHIPMENT_TYPE_OO = "OO";
    public static String U8_SHIPMENT_TYPE_MO = "MO";
    public static String U8_SHIPMENT_TYPE_SO = "SO";
    public static String U8_SHIPMENT_TYPE_PRO = "PRO";
tongzhonghao authored
478
479
    public static String U8_RECEIPT_BACK = "U8_RECEIPT_BACK";
    public static String U8_SHIPMENT_BACK = "U8_SHIPMENT_BACK";
480
481
482
483
484
485
486

    /**
     * 回传状态
     */
    public static Integer ISRETURN_FAIL = 1;
    public static Integer ISRETURN_SUCC = 2;
    public static Integer NOT_RETURN = 3;
周鸿 authored
487
488
489
490
491


    public static String WAREHOUSE_CS="CS0001";
    public static String WAREHOUSE_KS="KS0001";
    public static String WAREHOUSE_XZ="XZ0001";
492
493

    public static final int ROLE_XC = 13;
494
495

    public static final String ZONECODE_LK = "LK";
496
    public static final String ZONECODE_XC = "XC";
tongzhonghao authored
497
498
499
500
501
502
503
504
505
506
507
508
509

    public static final  String STATUS_TASK_SHELF="100";
    public static final  String STATUS_TASK_PICK="200";
    public static final  String STATUS_TASK_ROTATE="300";

    public static final int RULE_AGV_CONNECT = 1;
    //是否连接AGV
    public static final  String RULE_CONNECT_AGV= "RULE_CONNECT_AGV";

    //AGV接口地址
    public static final  String AGV_CANCEL_TASK= "AGV_CANCEL_TASK";
    public static final  String AGV_CREATED_TASK= "AGV_CREATED_TASK";
510
511
512
    //AGV容器类型
    public static final  String AGV_CONTAINER_TYPE= "A";
513
514
515
    //库区类型
    public static final  String ZONE_CODE_TYPE_LK= "LK";
tongzhonghao authored
516
周鸿 authored
517
518
519
520
521
522
523
524
525
    // 16 送货单类型

    // 到货单
    public static Integer THE_ARRIVAL = 2;

    // 未到货单
    public static Integer NO_THE_ARRIVAL = 0;
526
527
528
    public static final String CONTAINER_TYPEM = "M";

    public static final String CONTAINER_TYPEC = "C";
pengcheng authored
529
}