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

This commit is contained in:
xiaofajia 2024-11-07 10:49:52 +08:00
parent 6cf53afc9c
commit cf4cf9e246

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());