OutItem.java
9.9 KB
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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
package com.myproject.bean.update.qisda;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.myproject.bean.BaseMongoBean;
import com.myproject.bean.qisda.RequestOutItemBean;
import com.myproject.util.DateUtil;
import java.util.*;
/**
*
*/
public class OutItem extends BaseMongoBean {
public OutItem(RequestOutItemBean itemBean) {
this.slotStr = itemBean.getSlot();
this.slotlocation = itemBean.getSlotlocation();
this.facility = itemBean.getFacility();
this.reelcut = itemBean.getReelcut();
this.pn = itemBean.getPartNum();
this.qty = itemBean.getQty();
this.action = itemBean.getAction();
this.hSerial = itemBean.gethSerial();
this.so = itemBean.getSo();
this.soseq = itemBean.getSoseq();
this.refno = itemBean.getRefno();
this.reelID = itemBean.getReelID();
this.location = itemBean.getLocation();
String sdateStr = itemBean.getSdte() + itemBean.getStme();
String mdateStr = itemBean.getMdte() + itemBean.getMtme();
this.sdate = DateUtil.toDate(sdateStr, "yyyyMMddHHmmss");
this.mdate = DateUtil.toDate(mdateStr, "yyyyMMddHHmmss");
}
public OutItem() {
}
/**
* 动作(首盘,分盘,补料盘,急料,指定料,单独出库)
*/
private String action;
/**
* 需求单号
*/
private String hSerial;
/**
* 工单
*/
private String so;
/**
* 工单序号
*/
private String soseq;
/**
* 备料单号
*/
private String refno;
/**
* 建议出仓时间
*/
private Date sdate;
/**
* 必须出仓日期
*/
private Date mdate;
/**
* 料站
*/
private String slotStr;
/**
* 料站序号
*/
private int slotlocation;
/**
* facility
*/
private String facility;
/**
* 是否是分盘料
*/
private String reelcut;
private String reelID;
private String location;
/**
* PN
*/
private String pn;
/**
* 需求单中数量
*/
private int qty;
/**
* 补料时如果首盘没出,需要修正需求单的数量
*/
private int fixedQty;
/**
* 已出数量
*/
private int outQty;
/**
* 预绑定数量
*/
private int lockQty;
/**
* 真实绑定数量
*/
private int realLockQty;
/**
* 发料数量(放上小车的数量),分盘需求单中的发料数量是指整个soseq工单的发料数量
*/
private int sendQty;
/**
* 出库缺料情况
*/
public int outLessQty(){
return qty - outQty;
}
/**
* 发料缺料
*/
public int sendLessQty(){
return getFixedQty() - sendQty;
}
/**
* 预绑定缺料数量
*/
public int preBindLessQty(){
return qty - lockQty;
}
/**
* 真实绑定缺料
*/
public int realBindLessQty(){
return qty - realLockQty;
}
public String getFacility() {
return facility;
}
public void setFacility(String facility) {
this.facility = facility;
}
public String gethSerial() {
if(hSerial == null){
hSerial = "";
}
return hSerial;
}
public String getSourceName(){
return hSerial + "_" + so + "_" + slotlocation;
}
public void sethSerial(String hSerial) {
this.hSerial = hSerial;
}
public int getLockQty() {
return lockQty;
}
public void setLockQty(int lockQty) {
this.lockQty = lockQty;
}
public int getOutQty() {
return outQty;
}
public void setOutQty(int outQty) {
this.outQty = outQty;
}
public String getPn() {
return pn;
}
public void setPn(String pn) {
this.pn = pn;
}
public int getQty() {
return qty;
}
public void setQty(int qty) {
this.qty = qty;
}
public String getReelcut() {
return reelcut;
}
public void setReelcut(String reelcut) {
this.reelcut = reelcut;
}
public String getSlotStr() {
return slotStr;
}
public void setSlotStr(String slotStr) {
this.slotStr = slotStr;
}
/**
* 是否是分盘料
*/
public boolean isCutMaterial(){
if(reelcut == null){
return false;
}
return "Y".equalsIgnoreCase(reelcut);
}
public int getSlotlocation() {
return slotlocation;
}
public void setSlotlocation(int slotlocation) {
this.slotlocation = slotlocation;
}
public String getRefno() {
return refno;
}
public void setRefno(String refno) {
this.refno = refno;
}
public String getSo() {
return so;
}
public void setSo(String so) {
this.so = so;
}
public int getRealLockQty() {
return realLockQty;
}
public void setRealLockQty(int realLockQty) {
this.realLockQty = realLockQty;
}
/**
* 是否缺料(真实绑定OK)
*/
public boolean isBindOk(){
if(isFirstReelAction()){
//首盘料,真实绑定数量满足即为绑定OK
return realBindLessQty() <=0;
}else if(isReelCutAction()){
//分盘需求,预绑定数量满足需求数量,即为绑定OK
return preBindLessQty() <= 0;
}else if(isTailAction()){
//尾料,检测真实绑定数量
return realBindLessQty() <=0;
}else{
return realBindLessQty() <=0;
}
}
/**
* 任务是否完成
*/
public boolean isItemEnd(){
//首盘料,只要有出料就算完成
if(isFirstReelAction()){
//发料完成才算
return getSendQty() > 0;
}else if(isReelCutAction()){
// //分盘需求,分盘料真实绑定与需求数相同,即认为完成
// if(isCutMaterial()){
// return realBindLessQty() <= 0;
// }else{
// //非分盘料
// return true;
// }
return sendLessQty() <= 0;
}else if(isUrgentAction()){
//紧急料,出库数量大于需求数量
return outLessQty() <=0;
}else if(isTailAction()){
//发料完成
return sendLessQty() <= 0;
}
return false;
}
/**
* 是否满足
* @return
*/
public boolean isOutOk(){
//首盘料,只要有出料就算完成
if(isFirstReelAction()){
//发料完成才算
return getOutQty() > 0;
}else if(isReelCutAction()){
//分盘需求,分盘料出库数量+真实绑定数量大于需求数量才算出库完成
if(isCutMaterial()){
return getOutQty() + getRealLockQty() >= getQty();
}else{
//非分盘料
return true;
}
}else if(isUrgentAction()){
//紧急料,出库数量大于需求数量
return outLessQty() <=0;
}else if(isTailAction()){
//发料完成
return sendLessQty() <= 0;
}
return false;
}
/**
* 首盘需求单
*/
public boolean isFirstReelAction(){
return getAction().contains("首盘");
}
/**
* 分盘需求单
*/
public boolean isReelCutAction(){
return getAction().contains("分盘");
}
public boolean isUrgentAction(){
return getAction().contains("急料") || getAction().contains("指定") || getAction().contains("单独出库");
}
/**
* 补料需求单
*/
public boolean isTailAction(){
return getAction().contains("补料");
}
public String getAction() {
if(action == null){
return "";
}
return action;
}
public void setAction(String action) {
this.action = action;
}
public Date getMdate() {
return mdate;
}
public void setMdate(Date mdate) {
this.mdate = mdate;
}
public Date getSdate() {
return sdate;
}
public void setSdate(Date sdate) {
this.sdate = sdate;
}
public String getLocation() {
return location;
}
public void setLocation(String location) {
this.location = location;
}
public String getReelID() {
return reelID;
}
public void setReelID(String reelID) {
this.reelID = reelID;
}
public String getSoseq() {
return soseq;
}
public void setSoseq(String soseq) {
this.soseq = soseq;
}
@Override
public String toString() {
return "OutItem{" +
"action='" + action + '\'' +
", hSerial='" + hSerial + '\'' +
", so='" + so + '\'' +
", soseq='" + soseq + '\'' +
", refno='" + refno + '\'' +
", sdate=" + sdate +
", mdate=" + mdate +
", slotStr='" + slotStr + '\'' +
", slotlocation=" + slotlocation +
", facility='" + facility + '\'' +
", reelcut='" + reelcut + '\'' +
", reelID='" + reelID + '\'' +
", location='" + location + '\'' +
", pn='" + pn + '\'' +
", qty=" + qty +
", outQty=" + outQty +
", lockQty=" + lockQty +
", realLockQty=" + realLockQty +
'}';
}
public int getSendQty() {
return sendQty;
}
public void setSendQty(int sendQty) {
this.sendQty = sendQty;
}
public int getFixedQty() {
if(fixedQty == 0){
fixedQty = qty;
return fixedQty;
}
return fixedQty;
}
public void setFixedQty(int fixedQty) {
this.fixedQty = fixedQty;
}
}