Commit 168dc0b1 authored by zhh's avatar zhh
Browse files

bug修复

parent 7054e92c
This diff is collapsed.
...@@ -44,7 +44,7 @@ public class OmsOrderReturnApplyServiceImpl implements OmsOrderReturnApplyServic ...@@ -44,7 +44,7 @@ public class OmsOrderReturnApplyServiceImpl implements OmsOrderReturnApplyServic
OmsOrderReturnApply returnApply = new OmsOrderReturnApply(); OmsOrderReturnApply returnApply = new OmsOrderReturnApply();
if(status.equals(1)){ if(status.equals(1)){
//确认退货 //确认退货
returnApply.setId(statusParam.getId()); returnApply.setId(id);
returnApply.setStatus(1); returnApply.setStatus(1);
returnApply.setReturnAmount(statusParam.getReturnAmount()); returnApply.setReturnAmount(statusParam.getReturnAmount());
returnApply.setCompanyAddressId(statusParam.getCompanyAddressId()); returnApply.setCompanyAddressId(statusParam.getCompanyAddressId());
...@@ -53,14 +53,14 @@ public class OmsOrderReturnApplyServiceImpl implements OmsOrderReturnApplyServic ...@@ -53,14 +53,14 @@ public class OmsOrderReturnApplyServiceImpl implements OmsOrderReturnApplyServic
returnApply.setHandleNote(statusParam.getHandleNote()); returnApply.setHandleNote(statusParam.getHandleNote());
}else if(status.equals(2)){ }else if(status.equals(2)){
//完成退货 //完成退货
returnApply.setId(statusParam.getId()); returnApply.setId(id);
returnApply.setStatus(2); returnApply.setStatus(2);
returnApply.setReceiveTime(new Date()); returnApply.setReceiveTime(new Date());
returnApply.setReceiveMan(statusParam.getReceiveMan()); returnApply.setReceiveMan(statusParam.getReceiveMan());
returnApply.setReceiveNote(statusParam.getReceiveNote()); returnApply.setReceiveNote(statusParam.getReceiveNote());
}else if(status.equals(3)){ }else if(status.equals(3)){
//拒绝退货 //拒绝退货
returnApply.setId(statusParam.getId()); returnApply.setId(id);
returnApply.setStatus(3); returnApply.setStatus(3);
returnApply.setHandleTime(new Date()); returnApply.setHandleTime(new Date());
returnApply.setHandleMan(statusParam.getHandleMan()); returnApply.setHandleMan(statusParam.getHandleMan());
......
Supports Markdown
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