单据同步更新问题

dev
anthonywj 2 years ago
parent 853fe6e897
commit fcaabc888a

@ -751,8 +751,8 @@ public class SpsSyncDownloadController {
}
} else {
// 更新业务详情
if (orderEntity.getCheckStatus() != null)
orderService.update(orderEntity);
// if (orderEntity.getCheckStatus() != null)
// orderService.update(orderEntity);
//更新业务详情
if (CollUtil.isNotEmpty(syncDataResponse.getOrderDetailBizEntities())) {
List<IoOrderDetailBizEntity> orderDetailBizEntities = syncDataResponse.getOrderDetailBizEntities();

@ -585,8 +585,14 @@ public class IoOrderServiceImpl implements IoOrderService {
IoOrderResponse response = new IoOrderResponse();
BeanUtil.copyProperties(orderEntity, response);
if (orderEntity.getStatus().equals(ConstantStatus.ORDER_STATUS_AUDITED) && checkBusTypeSupplementOrder(orderEntity)
&& StrUtil.isEmpty(orderEntity.getSupplementNo())) {
response.setEnableSupplementOrder(true);
&& StrUtil.isEmpty(orderEntity.getSupplementNo())
) {
if (orderEntity.getFromType() == ConstantStatus.FROM_UDISP) {
if (orderEntity.getOutChangeEnable()) {
response.setEnableSupplementOrder(true);
}
} else
response.setEnableSupplementOrder(true);
}
result.add(response);
} catch (Exception e) {

Loading…
Cancel
Save