|
|
|
@ -813,7 +813,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);
|
|
|
|
|
}
|
|
|
|
@ -870,7 +871,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());
|
|
|
|
|
}
|
|
|
|
|