单据同步更新问题

dev
anthonywj 2 years ago
parent 853fe6e897
commit fcaabc888a

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

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

Loading…
Cancel
Save