|
@@ -345,7 +345,7 @@ public class ColOdrService extends CommonService {
|
345
|
345
|
pickInfoMgntEntity.setWhsId(entity.getRtnWhsId());
|
346
|
346
|
pickInfoMgntEntity.setLocation(entity.getRtnLocation());
|
347
|
347
|
//pickInfoMgntEntity.setColDvsn(entity.getColDvsn());
|
348
|
|
- pickInfoMgntEntity.setWhsDvsn(entity.getColDvsn() == "C001" ? "W02" : "W01"); // 본사엣 수거면 매장,,, 공급사에서 수거면 본사
|
|
348
|
+ pickInfoMgntEntity.setWhsDvsn("C001".equals(entity.getColDvsn()) ? "W02" : "W01"); // 본사엣 수거면 매장,,, 공급사에서 수거면 본사
|
349
|
349
|
pickInfoMgntEntity.setBrandId(entity.getBrandId());
|
350
|
350
|
pickInfoMgntEntity.setColDesc(null);
|
351
|
351
|
|
|
@@ -601,7 +601,7 @@ public class ColOdrService extends CommonService {
|
601
|
601
|
pickInfoMgntEntity.setWhsId(entity.getRtnWhsId());
|
602
|
602
|
pickInfoMgntEntity.setLocation(entity.getRtnLocation());
|
603
|
603
|
pickInfoMgntEntity.setColDvsn(entity.getColDvsn());
|
604
|
|
- pickInfoMgntEntity.setWhsDvsn(entity.getColDvsn() == "C001" ? "W02" : "W01"); // 본사엣 수거면 매장,,, 공급사에서 수거면 본사
|
|
604
|
+ pickInfoMgntEntity.setWhsDvsn("C001".equals(entity.getColDvsn()) ? "W02" : "W01"); // 본사엣 수거면 매장,,, 공급사에서 수거면 본사
|
605
|
605
|
pickInfoMgntEntity.setBrandId(entity.getBrandId());
|
606
|
606
|
pickInfoMgntEntity.setColDesc(null);
|
607
|
607
|
|