|
|
|
@ -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) {
|
|
|
|
|