修改单据bug

master
郑明梁 2 years ago
parent 23d1193b56
commit 2e36abdc60

@ -385,8 +385,8 @@ public class IoPurChangeService {
ioOrderEntity.setUpdateTime(new Date()); ioOrderEntity.setUpdateTime(new Date());
ioOrderEntity.setUpdateUser(purPlanEntity.getCreateUser()); ioOrderEntity.setUpdateUser(purPlanEntity.getCreateUser());
ioOrderEntity.setCustomerId("110"); ioOrderEntity.setCustomerId("110");
ioOrderEntity.setDeptCode(purPlanEntity.getInvCode()); ioOrderEntity.setDeptCode(purPlanEntity.getDeptCode());
ioOrderEntity.setInvCode(purPlanEntity.getDeptCode()); ioOrderEntity.setInvCode(purPlanEntity.getInvCode());
ioOrderService.insertOrder(ioOrderEntity); ioOrderService.insertOrder(ioOrderEntity);
billNo += ioOrderEntity.getBillNo() + ","; billNo += ioOrderEntity.getBillNo() + ",";
//插入业务单表 //插入业务单表

@ -70,6 +70,7 @@ public class UdiRelevanceResponse {
private Boolean allowNoBatch; private Boolean allowNoBatch;
private Boolean allowNoExpire; private Boolean allowNoExpire;
private Boolean allowNoProduct; private Boolean allowNoProduct;
private Boolean allowNoSerial;
private String spmc; private String spmc;
private String cplx; private String cplx;
private String hchzsb; private String hchzsb;

@ -220,6 +220,9 @@ public class IoOrderResponse {
private Integer processStatus; private Integer processStatus;
private int inCodeStatus; private int inCodeStatus;
private Date checkTime;
private String checkUserName;
/** /**
* *

@ -36,7 +36,7 @@
AND thirdSysFk = #{thirdSysFk} AND thirdSysFk = #{thirdSysFk}
</if> </if>
<if test="thirdSys != '' and thirdSys != null"> <if test="thirdSys != '' and thirdSys != null">
AND thirdSys = #{thirdSys} AND thirdSysFk = #{thirdSys}
</if> </if>
<if test="supName != '' and supName != null"> <if test="supName != '' and supName != null">
AND supName LIKE concat('%',#{supName},'%') AND supName LIKE concat('%',#{supName},'%')

Loading…
Cancel
Save