服务指令-退货流程完成修改

This commit is contained in:
曹磊 2025-12-17 10:03:56 +08:00
parent b081a7d2be
commit 311f10db2b
1 changed files with 2 additions and 2 deletions

View File

@ -329,7 +329,7 @@ public class InvoicingOrdersServiceImpl extends ServiceImpl<InvoicingOrdersMappe
InvoicingOrders order = this.getOne(ioQw); InvoicingOrders order = this.getOne(ioQw);
InvoicingOrders DirectivePrice = baseMapper.getDirectivePrice(order.getDirectiveId());//获取服务指令价格 InvoicingOrders DirectivePrice = baseMapper.getDirectivePrice(order.getDirectiveId());//获取服务指令价格
InvoicingOrders entity = new InvoicingOrders(); InvoicingOrders entity = new InvoicingOrders();
entity.setPoolId(invoicingOrdersEntity.getPoolId()); entity.setId(order.getId());
entity.setBizId(invoicingOrdersEntity.getBizId()); entity.setBizId(invoicingOrdersEntity.getBizId());
entity.setFinishTime(c.getTime()); entity.setFinishTime(c.getTime());
entity.setIzFinish("Y"); entity.setIzFinish("Y");
@ -338,7 +338,7 @@ public class InvoicingOrdersServiceImpl extends ServiceImpl<InvoicingOrdersMappe
entity.setBizType(invoicingOrdersEntity.getFlowCode()); entity.setBizType(invoicingOrdersEntity.getFlowCode());
entity.setTollPrice(DirectivePrice.getTollPrice()); entity.setTollPrice(DirectivePrice.getTollPrice());
entity.setComPrice(DirectivePrice.getComPrice()); entity.setComPrice(DirectivePrice.getComPrice());
baseMapper.updateOrder(entity); baseMapper.updateById(entity);
// }catch (Exception e){ // }catch (Exception e){
// e.printStackTrace(); // e.printStackTrace();
// return Result.error("完成失败:"+e.getMessage()); // return Result.error("完成失败:"+e.getMessage());