fix(ebom): 修改source_row_id由long变为string的相关问题
This commit is contained in:
parent
afec61231a
commit
29215e70ef
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Reference in New Issue