同步单据审核时间不一致问题

dev
anthonywj 2 years ago
parent 6c91a2e9e7
commit 9955a21ec1

@ -80,6 +80,7 @@ public class IoCheckInoutService {
/**
*
*
* @param billNo
* @return
*/
@ -132,6 +133,7 @@ public class IoCheckInoutService {
/**
* |
*
* @param orderId
*/
public void check(String orderId) {
@ -782,7 +784,8 @@ public class IoCheckInoutService {
if (orderEntity.getStatus() == ConstantStatus.ORDER_STATUS_CHECK_REW) {
orderEntity.setDealStatus(ConstantStatus.ORDER_DEAL_REW);
orderEntity.setUpdateTime(new Date());
orderEntity.setCheckTime(new Date());
if (IntUtil.value(orderEntity.getFromType()) != ConstantStatus.FROM_UDISP)
orderEntity.setCheckTime(new Date());
orderService.update(orderEntity);
checkSecond(orderEntity);
}
@ -839,7 +842,8 @@ public class IoCheckInoutService {
if (orderEntity.getStatus() == ConstantStatus.ORDER_STATUS_AUDITED) {
orderEntity.setDealStatus(ConstantStatus.ORDER_DEAL_CHECK);
orderEntity.setUpdateTime(new Date());
orderEntity.setAuditTime(new Date());
if (IntUtil.value(orderEntity.getFromType()) != ConstantStatus.FROM_UDISP)
orderEntity.setAuditTime(new Date());
if (StrUtil.isEmpty(orderEntity.getReviewUser())) {
orderEntity.setReviewUser(orderEntity.getReviewUser());
}

Loading…
Cancel
Save