修改工单完成位置
This commit is contained in:
parent
5da4a45e7d
commit
9bb6c0b201
@ -29,7 +29,8 @@ public class TicketsServiceImpl extends ServiceImpl<TicketsMapper, Tickets> impl
|
|||||||
baseMapper.update(new LambdaUpdateWrapper<Tickets>()
|
baseMapper.update(new LambdaUpdateWrapper<Tickets>()
|
||||||
.in(Tickets::getId, ticketIds)
|
.in(Tickets::getId, ticketIds)
|
||||||
.set(Tickets::getTicketsStatus, "02")
|
.set(Tickets::getTicketsStatus, "02")
|
||||||
.set(Tickets::getIsFinish, "1")
|
// 不在这儿结束
|
||||||
|
// .set(Tickets::getIsFinish, "1")
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -447,7 +447,8 @@ public class DlRepairTicketsServiceImpl extends ServiceImpl<DlRepairTicketsMappe
|
|||||||
// 更新工单
|
// 更新工单
|
||||||
// 在这里把工单的状态更新为已完成---需要判断,如果是线上支付,需要在支付回调更新
|
// 在这里把工单的状态更新为已完成---需要判断,如果是线上支付,需要在支付回调更新
|
||||||
if (!repairTicketsRespVO.getPayType().equals("01")) {
|
if (!repairTicketsRespVO.getPayType().equals("01")) {
|
||||||
repairTicketsRespVO.setIsFinish("1");
|
// 不在这儿结束
|
||||||
|
// repairTicketsRespVO.setIsFinish("1");
|
||||||
baseMapper.updateById(repairTicketsRespVO);
|
baseMapper.updateById(repairTicketsRespVO);
|
||||||
} else {
|
} else {
|
||||||
// 线下结账和签单挂账,直接算已支付
|
// 线下结账和签单挂账,直接算已支付
|
||||||
|
Loading…
Reference in New Issue
Block a user