From 7de016fea904b91a4b9d4ff3264c779793cfb991 Mon Sep 17 00:00:00 2001 From: puzhibing <393733352@qq.com> Date: 星期三, 26 七月 2023 19:56:47 +0800 Subject: [PATCH] 更新订单管理页面 --- driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/service/IOrderService.java | 25 +++++++++++++++++++++++-- 1 files changed, 23 insertions(+), 2 deletions(-) diff --git a/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/service/IOrderService.java b/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/service/IOrderService.java index 5df2f51..d3b4bb2 100644 --- a/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/service/IOrderService.java +++ b/driver/guns-admin/src/main/java/com/supersavedriving/driver/modular/system/service/IOrderService.java @@ -38,7 +38,7 @@ */ ResultUtil driverAddOrder(Integer uid, AddOrderWarpper addOrderWarpper) throws Exception; - + Order getOrderPrice(Integer type, Double distance, Integer waitTime, Order order, String city); /** * 获取大厅订单列表 * @param uid @@ -73,6 +73,14 @@ /** + * 推送服务中的数据 + * @param orderId + */ + void pushOrderInfo(Long orderId); + + + + /** * 获取订单详情 * @param orderId * @return @@ -101,7 +109,7 @@ * @return * @throws Exception */ - ResultUtil transferOrder(Integer uid, Long orderId, String cause) throws Exception; + ResultUtil transferOrder(Integer uid, Long orderId, String cause, String phone) throws Exception; /** @@ -197,4 +205,17 @@ * @throws Exception */ List<MyAchievementWarpper> queryMyAchievement(Integer driverId, String time) throws Exception; + + + /** + * 主动完成线下收款 + */ + void completeCollection(); + + + ResultUtil fengzhang(Integer userType, Integer id, String merchantNumber, Long orderId, Integer rechargeRecordId, String merOrderId, Double amount, Integer sourceType); + + + + void saveRevenue(Order order) throws Exception; } -- Gitblit v1.7.1