update 发布电单车计费模板

This commit is contained in:
Guoqs
2025-04-25 17:31:51 +08:00
parent 09c76b0ec2
commit 25bc761dcf
5 changed files with 115 additions and 13 deletions

View File

@@ -26,10 +26,7 @@ import com.jsowell.common.exception.BusinessException;
import com.jsowell.common.util.DateUtils;
import com.jsowell.common.util.StringUtils;
import com.jsowell.pile.domain.*;
import com.jsowell.pile.dto.AfterSettleOrderDTO;
import com.jsowell.pile.dto.ApplyRefundDTO;
import com.jsowell.pile.dto.QueryOrderDTO;
import com.jsowell.pile.dto.SettleOrderReportDTO;
import com.jsowell.pile.dto.*;
import com.jsowell.pile.mapper.OrderBasicInfoMapper;
import com.jsowell.pile.service.*;
import com.jsowell.pile.service.programlogic.AbstractProgramLogic;
@@ -1062,5 +1059,24 @@ public class TempService {
orderBasicInfoService.splittingMethod(afterSettleOrderDTO);
}
/**
* 调试订单
* @param dto
*/
public void debugOrder(DebugOrderDTO dto) {
if (dto == null) {
return;
}
// 是否重新计算
if (StringUtils.equals(dto.getReCalculateFlag(), "1")) {
}
// 是否重新退款
if (StringUtils.equals(dto.getReRefundFlag(), "1")) {
}
// 是否重新分账
if (StringUtils.equals(dto.getReSplitFlag(), "1")) {
}
}
}