source_row_id 类型变更
This commit is contained in:
parent
89ba5d49ce
commit
a411e7f8b5
|
|
@ -73,7 +73,7 @@ public class EBomEdit {
|
||||||
parent.setCurrentVersion("A00");
|
parent.setCurrentVersion("A00");
|
||||||
parent.setDeviseName(SessionUtil.getRealName());
|
parent.setDeviseName(SessionUtil.getRealName());
|
||||||
parent.setDeptName(SessionUtil.getDepartName());
|
parent.setDeptName(SessionUtil.getDepartName());
|
||||||
parent.setSourceRowId(0L);
|
parent.setSourceRowId("0");
|
||||||
parent.setSource(source);
|
parent.setSource(source);
|
||||||
parent.setStatus(EBomStatusEnum.WAIT_CHECK.getValue());
|
parent.setStatus(EBomStatusEnum.WAIT_CHECK.getValue());
|
||||||
parent.setNum(new BigDecimal(1));
|
parent.setNum(new BigDecimal(1));
|
||||||
|
|
@ -201,7 +201,7 @@ public class EBomEdit {
|
||||||
child.setSource(source);
|
child.setSource(source);
|
||||||
child.setCreatedTime(LocalDateTime.now());
|
child.setCreatedTime(LocalDateTime.now());
|
||||||
child.setCreatedBy(SessionUtil.getUserCode());
|
child.setCreatedBy(SessionUtil.getUserCode());
|
||||||
child.setSourceRowId(0L);
|
child.setSourceRowId("0");
|
||||||
child.setParentRowId(parentEntity.getRowId());
|
child.setParentRowId(parentEntity.getRowId());
|
||||||
if(StrUtil.isEmpty(child.getOrderNumber())){
|
if(StrUtil.isEmpty(child.getOrderNumber())){
|
||||||
child.setOrderNumber("00");
|
child.setOrderNumber("00");
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue