fix(ebom): 修改source_row_id由long变为string的相关问题

This commit is contained in:
曹鹏飞 2024-05-11 15:51:19 +08:00
parent afec61231a
commit 29215e70ef
2 changed files with 3 additions and 3 deletions

View File

@ -359,7 +359,7 @@ public class EBomImportService {
parent.setOrderNumber(data.getOrderNum());
parent.setDeptName(SessionUtil.getDepartName());
parent.setSource(EBomSourceEnum.FROM_EXCE.getValue());
parent.setSourceRowId(0L);
parent.setSourceRowId("");
return parent;
}
@ -424,7 +424,7 @@ public class EBomImportService {
parent.setRemark("");
parent.setDeptName(SessionUtil.getDepartName());
parent.setSource(EBomSourceEnum.FROM_EXCE.getValue());
parent.setSourceRowId(0L);
parent.setSourceRowId("");
return parent;
}
}

View File

@ -231,7 +231,7 @@ public abstract class VirtualPackageBase {
parent.setShouldBomExist(1);
parent.setBomExist(1);
parent.setMaterialUnit("PC");
parent.setSourceRowId(0L);
parent.setSourceRowId("");
parent.setLastVersionIs(1);
parent.setNum(new BigDecimal(1));
parent.setDeviseUserCode(SessionUtil.getUserCode());