【update】高压系统BPM推送标识字段修改为sysCode

This commit is contained in:
nixj 2024-05-24 08:42:31 +08:00
parent ffb57c836e
commit bdd1dd3757
2 changed files with 2 additions and 4 deletions

View File

@ -155,8 +155,7 @@ public class BPMOrderDomainService {
List<RouteCustomExtensionField> list = jdbcRouteCustomExtensionFieldRepository.findByRouteId(routeOrder.getRouteId())
.stream().filter(s -> s.getFieldName().equals(filterFieldName) && s.getFieldValue().equals(filterFileValue)).toList();
if (!list.isEmpty()) {
exceedStandardDto.setFieldName(filterFieldName);
exceedStandardDto.setFieldValue(filterFileValue);
exceedStandardDto.setSysCode(filterFileValue);
}
boolean success=bpmRequest.exceedStandard(exceedStandardDto, sysCode, employeeNo, accountCompany).getSuccess();
DelayDispatch.attemptToSend(() -> success,

View File

@ -26,7 +26,6 @@ public class ExceedStandardDto {
private String Occupant; //入住人 是否必填 当订单类型=酒店超标 时需提供
private Integer days; //入住天数 是否必填 当订单类型=酒店超标 时需提供
private BigDecimal ExcessAmountDay; //超标金额(/) 是否必填 当订单类型=酒店超标 时需提供
private String fieldName; //系统名
private String fieldValue; //系统标识
private String sysCode ; //系统标识
}