1.单据实体类增加三期校验字段

zhairh
x_z 3 years ago
parent 4bc21a1e0f
commit 0fc5dcb63c

@ -296,6 +296,7 @@ public class WareHouseController {
orderEntity1.setOutChangeEnable(addOrderRequest.isOutChangeEnable());
orderEntity1.setPreCheck(addOrderRequest.isPreCheck());
orderEntity1.setUpdateTime(new Date());
orderEntity1.setCodeFillCheck(addOrderRequest.isCodeFillCheck());
orderService.updateOrder(orderEntity1);
WarehouseEntity warehouseEntity = new WarehouseEntity();
warehouseEntity.setOrderId(addOrderRequest.getOrderId());

@ -68,4 +68,9 @@ public class OrderEntity {
private String deptName;
private String printRemark;
/**
* UDI
*/
private boolean codeFillCheck;
}

@ -34,7 +34,7 @@
receiveStatus, erpFk, stockCheckFk, customerId, supId,
exportFilePath, locStorageCode, supplementNo, ullageSupNo, createUser, reviewUser,
outChangeEnable, originUllageSupNo, preCheck, updateTime, replicateNo, invWarehouseCode,
fromSubInvCode, createTime, invStorageCode, deptCode, printRemark)
fromSubInvCode, createTime, invStorageCode, deptCode, printRemark, codeFillCheck)
values (#{id},
#{action},
#{corpOrderId},
@ -56,7 +56,8 @@
#{ullageSupNo}, #{createUser}, #{reviewUser}, #{outChangeEnable}, #{originUllageSupNo}, #{preCheck},
#{updateTime}, #{replicateNo}, #{invWarehouseCode}, #{fromSubInvCode}, #{createTime}, #{invStorageCode},
#{deptCode},
#{printRemark})
#{printRemark},
#{codeFillCheck})
</insert>
@ -67,9 +68,9 @@
fromCorp, status, remark, exportStatus, fromType, contrastStatus, signStatus,
receiveStatus, erpFk, stockCheckFk, customerId, supId,
exportFilePath, locStorageCode, supplementNo, ullageSupNo, createUser, reviewUser,
outChangeEnable, originUllageSupNo, preCheck,updateTime,replicateNo,invWarehouseCode,fromSubInvCode,createTime,invStorageCode,deptCode,printRemark)
values (
#{id},
outChangeEnable, originUllageSupNo, preCheck, updateTime, replicateNo, invWarehouseCode,
fromSubInvCode, createTime, invStorageCode, deptCode, printRemark, codeFillCheck)
values (#{id},
#{action},
#{corpOrderId},
#{actDate},
@ -104,8 +105,8 @@
#{createTime},
#{invStorageCode},
#{deptCode},
#{printRemark}
)
#{printRemark},
#{codeFillCheck})
</insert>
@ -147,7 +148,7 @@
<if test="createTime != null and createTime != ''">createTime=#{createTime},</if>
<if test="deptCode != null and deptCode != ''">deptCode=#{deptCode},</if>
<if test="printRemark != null and printRemark != ''">printRemark=#{printRemark},</if>
<if test="codeFillCheck != null">codeFillCheck=#{codeFillCheck},</if>
</trim>
WHERE id = #{id}
</update>

Loading…
Cancel
Save