懒羊羊
2023-11-14 8286c62256f23bc2367a6729c0f46f84215e380b
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
package cn.stylefeng.guns.modular.bs.bomInfo.service.impl;
 
import cn.stylefeng.guns.base.pojo.page.LayuiPageFactory;
import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo;
import cn.stylefeng.guns.modular.bs.bomInfo.entity.BomInfo;
import cn.stylefeng.guns.modular.bs.bomInfo.mapper.BomInfoMapper;
import cn.stylefeng.guns.modular.bs.bomInfo.model.params.BomInfoParam;
import cn.stylefeng.guns.modular.bs.bomInfo.model.result.BomInfoResult;
import  cn.stylefeng.guns.modular.bs.bomInfo.service.BomInfoService;
import cn.stylefeng.guns.modular.dq.materialTraceability.entity.MaterialTraceability;
import cn.stylefeng.guns.modular.dq.materialTraceability.service.MaterialTraceabilityService;
import cn.stylefeng.guns.modular.om.productionOrderBatchInfo.entity.ProductionOrderBatchInfo;
import cn.stylefeng.guns.modular.om.productionOrderBatchInfo.service.ProductionOrderBatchInfoService;
import cn.stylefeng.roses.core.util.ToolUtil;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
import java.io.Serializable;
import java.util.List;
 
/**
 * <p>
 * bom信息 服务实现类
 * </p>
 *
 * @author 
 * @since 2022-10-24
 */
@Service
public class BomInfoServiceImpl extends ServiceImpl<BomInfoMapper, BomInfo> implements BomInfoService {
    @Autowired
    private ProductionOrderBatchInfoService batchInfoService;
 
    @Autowired
    private MaterialTraceabilityService materialTraceabilityService;
 
    @Autowired
    private BomInfoMapper bomInfoMapper;
 
    @Override
    public void add(BomInfoParam param){
        BomInfo entity = getEntity(param);
        this.save(entity);
    }
 
    @Override
    public void delete(BomInfoParam param){
        this.removeById(getKey(param));
    }
 
    @Override
    public void update(BomInfoParam param){
        BomInfo oldEntity = getOldEntity(param);
        BomInfo newEntity = getEntity(param);
        ToolUtil.copyProperties(newEntity, oldEntity);
        this.updateById(newEntity);
    }
 
    @Override
    public BomInfoResult findBySpec(BomInfoParam param){
        return null;
    }
 
    @Override
    public List<BomInfoResult> findListBySpec(BomInfoParam param){
        return this.baseMapper.customList(param);
    }
 
    @Override
    public LayuiPageInfo findPageBySpec(BomInfoParam param){
        Page pageContext = getPageContext();
        IPage page = this.baseMapper.customPageList(pageContext, param);
        return LayuiPageFactory.createPageInfo(page);
    }
 
    @Override
    public LayuiPageInfo kbListTable(BomInfoParam param) {
        Page pageContext = getPageContext();
        IPage page = bomInfoMapper.kbListTable(pageContext, param);
        return LayuiPageFactory.createPageInfo(page);
    }
 
    @Override
    public LayuiPageInfo viewList(BomInfoParam param) {
        Page pageContext = getPageContext();
        IPage page = this.baseMapper.customPageList(pageContext, param);
        List<BomInfoResult> bomInfoResults = page.getRecords();
        for (BomInfoResult bomInfoResult : bomInfoResults) {
            List<MaterialTraceability> list = materialTraceabilityService.list(new QueryWrapper<MaterialTraceability>()
                    .eq("product_code", param.getProductCode())
                    .eq("work_order_no", param.getWorkorderNo())
                    .eq("location_code", param.getLocationCode())
            );
            if (list.size()>0){
                for (MaterialTraceability materialTraceability : list) {
                    if(bomInfoResult.getMaterialCode().equals(materialTraceability.getMaterialCode())){
                        bomInfoResult.setState("是");
                        break;
                    }else {
                        bomInfoResult.setState("否");
                    }
                }
            }else {
                bomInfoResult.setState("否");
            }
        }
        return LayuiPageFactory.createPageInfo(page);
    }
 
    private Serializable getKey(BomInfoParam param){
        return param.getId();
    }
 
    private Page getPageContext() {
        return LayuiPageFactory.defaultPage();
    }
 
    private BomInfo getOldEntity(BomInfoParam param) {
        return this.getById(getKey(param));
    }
 
    private BomInfo getEntity(BomInfoParam param) {
        BomInfo entity = new BomInfo();
        ToolUtil.copyProperties(param, entity);
        return entity;
    }
 
}