修改默认的维修类别为维修

This commit is contained in:
xiaofajia 2024-11-07 10:53:08 +08:00
parent cf4cf9e246
commit 83fd022dfc

View File

@ -270,7 +270,7 @@ public class DlRepairTicketsServiceImpl extends ServiceImpl<DlRepairTicketsMappe
if (ObjectUtil.isNotEmpty(repairType)) { if (ObjectUtil.isNotEmpty(repairType)) {
repairOrderInfo.setGoodsTitle(repairType.getLabel()); repairOrderInfo.setGoodsTitle(repairType.getLabel());
} else { } else {
repairOrderInfo.setGoodsTitle("维修保养"); repairOrderInfo.setGoodsTitle("维修");
} }
repairOrderInfo.setGoodsType("2"); repairOrderInfo.setGoodsType("2");
CustomerMainRespVO customerById = customerMainService.getCustomerById(ticketsRespVO.getUserId()); CustomerMainRespVO customerById = customerMainService.getCustomerById(ticketsRespVO.getUserId());