Administrator
1 days ago db43ef4bc6d068cdbcf3052871dd18c57dc4fcb7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
package cc.mrbird.febs.mall.service.impl;
 
import cc.mrbird.febs.common.entity.FebsResponse;
import cc.mrbird.febs.common.enumerates.ClothesEnum;
import cc.mrbird.febs.common.enumerates.SocialPatternLocationTypeEnum;
import cc.mrbird.febs.common.enumerates.StateUpDownEnum;
import cc.mrbird.febs.common.exception.FebsException;
import cc.mrbird.febs.common.utils.LoginUserUtil;
import cc.mrbird.febs.mall.dto.clothes.*;
import cc.mrbird.febs.mall.entity.*;
import cc.mrbird.febs.mall.mapper.*;
import cc.mrbird.febs.mall.service.ApiClothesService;
import cc.mrbird.febs.mall.vo.ApiActivityInfoVo;
import cc.mrbird.febs.mall.vo.clothes.*;
import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.util.ObjectUtil;
import cn.hutool.core.util.StrUtil;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
 
import java.util.*;
import java.util.stream.Collectors;
 
@Slf4j
@Service
@RequiredArgsConstructor
public class ApiClothesServiceImpl extends ServiceImpl<ClothesTypeMapper, ClothesType> implements ApiClothesService {
 
    private final ClothesTypeMapper clothesTypeMapper;
    private final ClothesTypeClothMapper clothesTypeClothMapper;
    private final ClothesTypePatternMapper clothesTypePatternMapper;
    private final ClothesTypeSizeMapper clothesTypeSizeMapper;
    private final ClothesSizeMapper clothesSizeMapper;
    private final ClothesPatternMapper clothesPatternMapper;
    private final ClothesLocationMapper clothesLocationMapper;
    private final ClothesClothMapper clothesClothMapper;
    private final ClothesArtMapper clothesArtMapper;
    private final ClothesTypeLocationMapper clothesTypeLocationMapper;
    private final ClothesTypeArtMapper clothesTypeArtMapper;
    private final ClothesMemberStatureMapper clothesMemberStatureMapper;
    private final ClothesOrderDraftMapper clothesOrderDraftMapper;
    private final ClothesPatternRemarkMapper clothesPatternRemarkMapper;
    private final ClothesLocationRemarkMapper clothesLocationRemarkMapper;
 
    @Override
    public FebsResponse clothesType() {
        List<ApiClothesTypeListVo> vos = new ArrayList<>();
 
        List<ClothesType> clothesTypes = clothesTypeMapper.selectList(
                Wrappers.lambdaQuery(ClothesType.class)
                        .eq(ClothesType::getState, ClothesEnum.UP.getCode())
                        .orderByAsc(ClothesType::getOrderNum)
        );
        if (CollUtil.isNotEmpty(clothesTypes)){
            for (ClothesType clothesType : clothesTypes){
                ApiClothesTypeListVo vo = new ApiClothesTypeListVo();
                vo.setId(clothesType.getId());
                vo.setName(clothesType.getName());
                vo.setImage(clothesType.getImage());
                vo.setContent(clothesType.getContent());
                vo.setOrderNum(clothesType.getOrderNum());
                vos.add( vo);
            }
        }
 
        return new FebsResponse().success().data(vos);
    }
 
    @Override
    public FebsResponse typeInfo(ApiTypeInfoDto dto) {
        ApiClothesTypeVo apiClothesTypeVo = new ApiClothesTypeVo();
 
        Long id = dto.getId();
        ClothesType clothesType = clothesTypeMapper.selectById(id);
        if (ObjectUtil.isNotEmpty(clothesType)){
            apiClothesTypeVo.setId(clothesType.getId());
            apiClothesTypeVo.setName(clothesType.getName());
            apiClothesTypeVo.setImage(clothesType.getImage());
            apiClothesTypeVo.setImageFront(clothesType.getImageFront());
            apiClothesTypeVo.setImageBack(clothesType.getImageBack());
            apiClothesTypeVo.setContent(clothesType.getContent());
            apiClothesTypeVo.setClothState(clothesType.getClothState());
            apiClothesTypeVo.setArtState(clothesType.getArtState());
            apiClothesTypeVo.setPatternState(clothesType.getPatternState());
            apiClothesTypeVo.setLocationState(clothesType.getLocationState());
            apiClothesTypeVo.setSizeState(clothesType.getSizeState());
            apiClothesTypeVo.setCarriageRuleId(10L);
        }
 
        return new FebsResponse().success().data(apiClothesTypeVo);
    }
 
    @Override
    public FebsResponse clothList(ApiClothesClothPageDto dto) {
        // 创建分页对象,传入当前页和每页大小
        Page<ApiClothesClothVo> page = new Page<>(dto.getPageNow(), dto.getPageSize());
        // 调用Mapper方法获取活动分页数据
        Page<ApiClothesClothVo> voPage = clothesTypeClothMapper.selectPageInCloth(page, dto);
 
        return new FebsResponse().success().data(voPage);
    }
 
    @Override
    public FebsResponse patternList(ApiClothesPatternPageDto dto) {
        // 创建分页对象,传入当前页和每页大小
        Page<ApiClothesPatternVo> page = new Page<>(dto.getPageNow(), dto.getPageSize());
        // 调用Mapper方法获取活动分页数据
        Page<ApiClothesPatternVo> voPage = clothesTypePatternMapper.selectPageInPattern(page, dto);
 
        return new FebsResponse().success().data(voPage);
    }
 
    @Override
    public FebsResponse sizeList(ApiClothesSizeDto dto) {
        List<ApiClothesSizeVo> vos = new ArrayList<>();
 
        Long typeId = dto.getTypeId();
        List<ClothesTypeSize> clothesTypeSizes = clothesTypeSizeMapper.selectList(
                Wrappers.lambdaQuery(ClothesTypeSize.class)
                        .eq(ClothesTypeSize::getTypeId, typeId)
        );
        if (CollUtil.isNotEmpty(clothesTypeSizes)){
 
            Set<Long> collect = clothesTypeSizes.stream().map(ClothesTypeSize::getSizeId).collect(Collectors.toSet());
            List<ClothesSize> clothesSizes = clothesSizeMapper.selectList(
                    Wrappers.lambdaQuery(ClothesSize.class)
                            .in(ClothesSize::getId, collect)
                    .orderByAsc(ClothesSize::getOrderNum)
 
            );
 
            if (CollUtil.isNotEmpty(clothesSizes)){
                for (ClothesSize clothesSize : clothesSizes){
                    ApiClothesSizeVo vo = new ApiClothesSizeVo();
                    vo.setId(clothesSize.getId());
                    vo.setCode(clothesSize.getCode());
                    vo.setName(clothesSize.getName());
                    vo.setImage(clothesSize.getImage());
                    vo.setContent(clothesSize.getContent());
                    vo.setPrice(clothesSize.getPrice());
                    vo.setType(clothesSize.getType());
                    vos.add(vo);
                }
            }
        }
 
        return new FebsResponse().success().data(vos);
    }
 
    @Override
    public FebsResponse locationList(ApiClothesLocationPageDto dto) {
        // 创建分页对象,传入当前页和每页大小
        Page<ApiClothesLocationVo> page = new Page<>(dto.getPageNow(), dto.getPageSize());
        // 调用Mapper方法获取活动分页数据
        Page<ApiClothesLocationVo> voPage = clothesTypeLocationMapper.selectPageInLocation(page, dto);
 
        return new FebsResponse().success().data(voPage);
    }
 
    @Override
    public FebsResponse artList(ApiClothesArtPageDto dto) {
        // 创建分页对象,传入当前页和每页大小
        Page<ApiClothesArtVo> page = new Page<>(dto.getPageNow(), dto.getPageSize());
        // 调用Mapper方法获取活动分页数据
        Page<ApiClothesArtVo> voPage = clothesTypeArtMapper.selectPageInArt(page, dto);
 
        return new FebsResponse().success().data(voPage);
    }
 
    @Override
    public FebsResponse statureList(ApiClothesMemberStatureDto dto) {
 
        Long memberId = LoginUserUtil.getLoginUser().getId();
        dto.setMemberId(memberId);
        // 创建分页对象,传入当前页和每页大小
        Page<ApiClothesMemberStatureVo> page = new Page<>(dto.getPageNow(), dto.getPageSize());
        // 调用Mapper方法获取活动分页数据
        Page<ApiClothesMemberStatureVo> voPage = clothesMemberStatureMapper.selectPageInMemberStature(page, dto);
 
        return new FebsResponse().success().data(voPage);
    }
 
    @Override
    public FebsResponse statureAdd(ApiClothesMemberStatureAddDto dto) {
 
        Long memberId = LoginUserUtil.getLoginUser().getId();
        ClothesMemberStature clothesMemberStature = new ClothesMemberStature();
        clothesMemberStature.setMemberId(memberId);
        clothesMemberStature.setName(dto.getName());
        clothesMemberStature.setHeightLine(dto.getHeightLine());
        clothesMemberStature.setBustLine(dto.getBustLine());
        clothesMemberStature.setWaistLine(dto.getWaistLine());
        clothesMemberStature.setWideLine(dto.getWideLine());
        clothesMemberStature.setHipLine(dto.getHipLine());
        clothesMemberStature.setState(dto.getState());
        clothesMemberStatureMapper.insert(clothesMemberStature);
 
        if(ClothesEnum.UP.getCode() == dto.getState()){
            clothesMemberStatureMapper.update(null,
                        Wrappers.lambdaUpdate(ClothesMemberStature.class)
                    .set(ClothesMemberStature::getState, ClothesEnum.DOWN.getCode())
                    .eq(ClothesMemberStature::getMemberId, memberId)
                    .ne(ClothesMemberStature::getId, clothesMemberStature.getId())
                    .eq(ClothesMemberStature::getDelFlag, ClothesEnum.DOWN.getCode())
                    );
        }
 
        return new FebsResponse().success().message("操作成功");
    }
 
    @Override
    public FebsResponse statureInfo(ApiClothesMemberStatureInfoDto dto) {
        Long memberId = LoginUserUtil.getLoginUser().getId();
 
        ApiClothesMemberStatureVo apiClothesMemberStatureVo = new ApiClothesMemberStatureVo();
        ClothesMemberStature clothesMemberStature = clothesMemberStatureMapper.selectById(dto.getId());
        if (ObjectUtil.isNotEmpty(clothesMemberStature)){
            apiClothesMemberStatureVo.setId(clothesMemberStature.getId());
            apiClothesMemberStatureVo.setName(clothesMemberStature.getName());
            apiClothesMemberStatureVo.setHeightLine(clothesMemberStature.getHeightLine());
            apiClothesMemberStatureVo.setBustLine(clothesMemberStature.getBustLine());
            apiClothesMemberStatureVo.setWaistLine(clothesMemberStature.getWaistLine());
            apiClothesMemberStatureVo.setWideLine(clothesMemberStature.getWideLine());
            apiClothesMemberStatureVo.setHipLine(clothesMemberStature.getHipLine());
            apiClothesMemberStatureVo.setState(clothesMemberStature.getState());
        }
 
        return new FebsResponse().success().data(apiClothesMemberStatureVo);
    }
 
    @Override
    public FebsResponse statureUpdate(ApiClothesMemberStatureUpdateDto dto) {
 
        Long memberId = LoginUserUtil.getLoginUser().getId();
        ClothesMemberStature clothesMemberStature = clothesMemberStatureMapper.selectById(dto.getId());
        if (ObjectUtil.isNotEmpty(clothesMemberStature)){
            clothesMemberStature.setName(dto.getName());
            clothesMemberStature.setHeightLine(dto.getHeightLine());
            clothesMemberStature.setBustLine(dto.getBustLine());
            clothesMemberStature.setWaistLine(dto.getWaistLine());
            clothesMemberStature.setWideLine(dto.getWideLine());
            clothesMemberStature.setHipLine(dto.getHipLine());
            clothesMemberStature.setState(dto.getState());
            clothesMemberStatureMapper.updateById(clothesMemberStature);
 
            if(ClothesEnum.UP.getCode() == dto.getState()){
                clothesMemberStatureMapper.update(null,
                        Wrappers.lambdaUpdate(ClothesMemberStature.class)
                                .set(ClothesMemberStature::getState, ClothesEnum.DOWN.getCode())
                                .eq(ClothesMemberStature::getMemberId, memberId)
                                .ne(ClothesMemberStature::getId, clothesMemberStature.getId())
                                .eq(ClothesMemberStature::getDelFlag, ClothesEnum.DOWN.getCode())
                );
            }
        }
 
        return new FebsResponse().success().message("操作成功");
    }
 
    @Override
    public FebsResponse statureUpdateState(ApiClothesMemberStatureUpdateStateDto dto) {
        Long memberId = LoginUserUtil.getLoginUser().getId();
        ClothesMemberStature clothesMemberStature = clothesMemberStatureMapper.selectById(dto.getId());
        if (ObjectUtil.isNotEmpty(clothesMemberStature)){
            clothesMemberStature.setState(dto.getState());
            clothesMemberStatureMapper.updateById(clothesMemberStature);
 
            if(ClothesEnum.UP.getCode() == dto.getState()){
                clothesMemberStatureMapper.update(null,
                        Wrappers.lambdaUpdate(ClothesMemberStature.class)
                                .set(ClothesMemberStature::getState, ClothesEnum.DOWN.getCode())
                                .eq(ClothesMemberStature::getMemberId, memberId)
                                .ne(ClothesMemberStature::getId, clothesMemberStature.getId())
                                .eq(ClothesMemberStature::getDelFlag, ClothesEnum.DOWN.getCode())
                );
            }
        }
 
        return new FebsResponse().success().message("操作成功");
    }
 
    @Override
    public FebsResponse statureDel(ApiClothesMemberStatureInfoDto dto) {
        Long memberId = LoginUserUtil.getLoginUser().getId();
        clothesMemberStatureMapper.update(null,
                Wrappers.lambdaUpdate(ClothesMemberStature.class)
                        .set(ClothesMemberStature::getDelFlag, ClothesEnum.UP.getCode())
                        .eq(ClothesMemberStature::getId, dto.getId())
                        .eq(ClothesMemberStature::getMemberId, memberId)
        );
 
        return new FebsResponse().success().message("操作成功");
    }
 
    @Override
    @Transactional
    public FebsResponse draftSave(ApiMyDraftSaveDto dto) {
        Long memberId = LoginUserUtil.getLoginUser().getId();
 
        ClothesOrderDraft clothesOrderDraft = new ClothesOrderDraft();
        clothesOrderDraft.setMemberId(memberId);
 
        Long typeId = ObjectUtil.defaultIfNull(dto.getTypeId(),0L);
        ClothesType clothesType = clothesTypeMapper.selectById(typeId);
        if (ObjectUtil.isNull(clothesType)){
            throw new FebsException("请选择商品");
        }
        if (ClothesEnum.UP.getCode() != clothesType.getState()){
            throw new FebsException("商品已下架");
        }
        clothesOrderDraft.setTypeId(typeId);
 
        Long sizeId = ObjectUtil.defaultIfNull(dto.getSizeId(),0L);
        ClothesSize clothesSize = clothesSizeMapper.selectById(sizeId);
        if (ObjectUtil.isNull(clothesSize)){
            throw new FebsException("请选择尺码");
        }
        clothesOrderDraft.setSizeId(sizeId);
 
        Long clothId = ObjectUtil.defaultIfNull(dto.getClothId(),0L);
        ClothesCloth clothesCloth = clothesClothMapper.selectById(clothId);
        if (ObjectUtil.isNull(clothesCloth)){
            throw new FebsException("请选择布料");
        }
        clothesOrderDraft.setClothId(clothId);
 
        Long artId = ObjectUtil.defaultIfNull(dto.getArtId(),0L);
        ClothesArt clothesArt = clothesArtMapper.selectById(artId);
        if (ObjectUtil.isNull(clothesArt)){
            throw new FebsException("请选择工艺");
        }
        clothesOrderDraft.setArtId(artId);
 
        Long statureId = ObjectUtil.defaultIfNull(dto.getStatureId(),0L);
        ClothesMemberStature clothesMemberStature = clothesMemberStatureMapper.selectById(statureId);
        if (ObjectUtil.isNotNull(clothesMemberStature)){
            clothesOrderDraft.setStatureId(clothesMemberStature.getId());
        }
 
        clothesOrderDraftMapper.insert(clothesOrderDraft);
 
        List<ApiPatternAddDto> patternList = dto.getPatternList();
        if (CollUtil.isNotEmpty(patternList)){
            for (ApiPatternAddDto patternAddDto : patternList){
                Long patternId = patternAddDto.getPatternId();
                String patternRemark = patternAddDto.getPatternRemark();
 
                ClothesPatternRemark clothesPatternRemark = new ClothesPatternRemark();
                clothesPatternRemark.setMemberId(memberId);
                clothesPatternRemark.setType(SocialPatternLocationTypeEnum.DRAFT.getValue());
                clothesPatternRemark.setSourceId(clothesOrderDraft.getId());
                clothesPatternRemark.setPatternId(patternId);
                clothesPatternRemark.setRemark(patternRemark);
                clothesPatternRemarkMapper.insert(clothesPatternRemark);
            }
        }
 
        List<ApiLocationAddDto> locationList = dto.getLocationList();
        if (CollUtil.isNotEmpty(locationList)){
            for (ApiLocationAddDto locationAddDto : locationList){
                Long locationId = locationAddDto.getLocationId();
                String patternRemark = locationAddDto.getPatternRemark();
 
                ClothesLocationRemark clothesLocationRemark = new ClothesLocationRemark();
                clothesLocationRemark.setMemberId(memberId);
                clothesLocationRemark.setType(SocialPatternLocationTypeEnum.DRAFT.getValue());
                clothesLocationRemark.setSourceId(clothesOrderDraft.getId());
                clothesLocationRemark.setLocationId(locationId);
                clothesLocationRemark.setRemark(patternRemark);
                clothesLocationRemarkMapper.insert(clothesLocationRemark);
            }
        }
 
        return new FebsResponse().success().message("操作成功");
    }
 
    @Override
    public FebsResponse findDraftCnt() {
        Long memberId = LoginUserUtil.getLoginUser().getId();
        Integer integer = clothesOrderDraftMapper.selectCount(
                Wrappers.lambdaQuery(ClothesOrderDraft.class)
                        .eq(ClothesOrderDraft::getMemberId, memberId)
                        .eq(ClothesOrderDraft::getDelFlag, ClothesEnum.DOWN.getCode())
        );
        Map<String, Object> objectObjectHashMap = new HashMap<>();
        objectObjectHashMap.put("draftCnt", integer);
 
        return new FebsResponse().success().data(objectObjectHashMap);
    }
}