Administrator
2025-07-21 726b8cc756ddb3c8fa4f94e09db2b107529c2e5e
src/main/java/cc/mrbird/febs/mall/service/impl/ApiClothesServiceImpl.java
@@ -92,6 +92,7 @@
            apiClothesTypeVo.setPatternState(clothesType.getPatternState());
            apiClothesTypeVo.setLocationState(clothesType.getLocationState());
            apiClothesTypeVo.setSizeState(clothesType.getSizeState());
            apiClothesTypeVo.setCarriageRuleId(10L);
        }
        return new FebsResponse().success().data(apiClothesTypeVo);
@@ -339,10 +340,9 @@
        Long statureId = ObjectUtil.defaultIfNull(dto.getStatureId(),0L);
        ClothesMemberStature clothesMemberStature = clothesMemberStatureMapper.selectById(statureId);
        if (ObjectUtil.isNull(clothesMemberStature)){
            throw new FebsException("请选择身材数据");
        if (ObjectUtil.isNotNull(clothesMemberStature)){
            clothesOrderDraft.setStatureId(clothesMemberStature.getId());
        }
        clothesOrderDraft.setStatureId(clothesMemberStature.getId());
        clothesOrderDraftMapper.insert(clothesOrderDraft);