Commit 86318c63 authored by 李驰骋's avatar 李驰骋

物料同步BUG修复

parent 19d0107a
......@@ -548,7 +548,7 @@ public class MdItemServiceImpl implements IMdItemService {
if ("Y".equalsIgnoreCase(s.getVerifyStatus())) {
MdItem insertTemp = BeanUtil.toBean(s, MdItem.class);
//仅处理物料编号不为空数据
if(StringUtils.isEmpty(s.getItemCode())){
if(StringUtils.isNotEmpty(s.getItemCode())){
if(itemTypeMap.containsKey(s.getItemTypeId())){
insertTemp.setItemTypeName(itemTypeMap.get(s.getItemTypeId()).getItemTypeName());
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment