懒羊羊
2024-01-11 be26d5065b4a07123638c220c0792e9250a458e6
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
package cn.stylefeng.guns.modular.om.productionOrderBatchInfo.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.service.BomInfoService;
import cn.stylefeng.guns.modular.om.productionOrderBatchInfo.entity.ProductionOrderBatchInfo;
import cn.stylefeng.guns.modular.om.productionOrderBatchInfo.mapper.ProductionOrderBatchInfoMapper;
import cn.stylefeng.guns.modular.om.productionOrderBatchInfo.model.params.ProductionOrderBatchInfoParam;
import cn.stylefeng.guns.modular.om.productionOrderBatchInfo.model.result.ProductionOrderBatchInfoResult;
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>
 * 工单批次上料信息 服务实现类
 * </p>
 *
 * @author ruimin
 * @since 2023-02-24
 */
@Service
public class ProductionOrderBatchInfoServiceImpl extends ServiceImpl<ProductionOrderBatchInfoMapper, ProductionOrderBatchInfo> implements ProductionOrderBatchInfoService {
 
    @Autowired
    private BomInfoService bomInfoService;
 
    @Autowired
    private ProductionOrderBatchInfoService infoService;
 
    @Override
    public void add(ProductionOrderBatchInfoParam param){
        ProductionOrderBatchInfo entity = getEntity(param);
        this.save(entity);
    }
 
    @Override
    public void delete(ProductionOrderBatchInfoParam param){
        this.removeById(getKey(param));
    }
 
    @Override
    public void update(ProductionOrderBatchInfoParam param){
        ProductionOrderBatchInfo oldEntity = getOldEntity(param);
        ProductionOrderBatchInfo newEntity = getEntity(param);
        ToolUtil.copyProperties(newEntity, oldEntity);
        this.updateById(newEntity);
    }
 
    @Override
    public ProductionOrderBatchInfoResult findBySpec(ProductionOrderBatchInfoParam param){
        return null;
    }
 
    @Override
    public List<ProductionOrderBatchInfoResult> findListBySpec(ProductionOrderBatchInfoParam param){
        return this.baseMapper.customList(param);
    }
 
    @Override
    public LayuiPageInfo findPageBySpec(ProductionOrderBatchInfoParam param){
        Page pageContext = getPageContext();
        IPage page = this.baseMapper.customPageList(pageContext, param);
        return LayuiPageFactory.createPageInfo(page);
    }
 
    @Override
    public int barCodeCheck(ProductionOrderBatchInfoParam productionOrderBatchInfoParam) {
        int i =  infoService.count(new QueryWrapper<ProductionOrderBatchInfo>()
                .eq("work_order_no", productionOrderBatchInfoParam.getWorkOrderNo())
                .eq("material_code", productionOrderBatchInfoParam.getMaterialCode())
                .eq("state","是")
        );
        return i;
    }
 
    @Override
    public void updateState(ProductionOrderBatchInfoParam productionOrderBatchInfoParam) {
        ProductionOrderBatchInfo one = infoService.getOne(new QueryWrapper<ProductionOrderBatchInfo>()
                .eq("work_order_no", productionOrderBatchInfoParam.getWorkOrderNo())
                .eq("material_code", productionOrderBatchInfoParam.getMaterialCode())
        );
        one.setStatus("是");
        infoService.saveOrUpdate(one);
    }
 
    private Serializable getKey(ProductionOrderBatchInfoParam param){
        return param.getId();
    }
 
    private Page getPageContext() {
        return LayuiPageFactory.defaultPage();
    }
 
    private ProductionOrderBatchInfo getOldEntity(ProductionOrderBatchInfoParam param) {
        return this.getById(getKey(param));
    }
 
    private ProductionOrderBatchInfo getEntity(ProductionOrderBatchInfoParam param) {
        ProductionOrderBatchInfo entity = new ProductionOrderBatchInfo();
        ToolUtil.copyProperties(param, entity);
        return entity;
    }
 
}