Commit 1a9638f6 zshaohui

入库验证,排除料箱

1 个父辈 e0b364f6
......@@ -150,9 +150,13 @@ public class NeotelApi extends BaseSmfApiListener {
@Override
public Barcode canPutIn(String inCheckUrl, Barcode barcode) throws ValidateException {
log.info("{}类型为:{}",barcode.getBarcode(),barcode.getType());
if (COMPONENT_TYPE.COMPONENT != barcode.getType()){
/* if (COMPONENT_TYPE.COMPONENT != barcode.getType()){
return null;
}*/
if (barcode.getBarcode().equals(barcode.getFullCode())){
return null;
}
Map<String, Object> paramMap = new HashMap<>();
paramMap.put("reelId", barcode.getBarcode());
paramMap.put("fullCode", barcode.getFullCode());
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!