懒羊羊
2023-09-19 a2805ec01e3a639713a418544dc65cb38a555fdd
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
package cn.stylefeng.guns.modular.om.productionOrdeInfo.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.productionOrdeInfo.entity.ProductionOrdeInfo;
import cn.stylefeng.guns.modular.om.productionOrdeInfo.mapper.ProductionOrdeInfoMapper;
import cn.stylefeng.guns.modular.om.productionOrdeInfo.model.params.ProductionOrdeInfoParam;
import cn.stylefeng.guns.modular.om.productionOrdeInfo.model.result.ProductionOrdeInfoResult;
import  cn.stylefeng.guns.modular.om.productionOrdeInfo.service.ProductionOrdeInfoService;
import cn.stylefeng.guns.modular.om.productionOrderBatchInfo.entity.ProductionOrderBatchInfo;
import cn.stylefeng.guns.modular.om.productionOrderBatchInfo.model.params.ProductionOrderBatchInfoParam;
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.text.SimpleDateFormat;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
/**
 * <p>
 * 生产工单 服务实现类
 * </p>
 *
 * @author cl
 * @since 2022-10-25
 */
@Service
public class ProductionOrdeInfoServiceImpl extends ServiceImpl<ProductionOrdeInfoMapper, ProductionOrdeInfo> implements ProductionOrdeInfoService {
  /*  private static SimpleDateFormat format = new SimpleDateFormat("yyyyMMdd");
    private static String date = format.format(new Date());
    private static String orderDate = "M"+date;*/
    @Autowired
    private ProductionOrdeInfoService productionOrdeInfoService;
 
    @Autowired
    private ProductionOrderBatchInfoService orderBatchInfoService;
 
    @Autowired
    private BomInfoService bomInfoService;
 
    @Override
    public void add(ProductionOrdeInfoParam param){
        SimpleDateFormat format = new SimpleDateFormat("yyyyMMdd");
        String date = format.format(new Date());
        String orderDate = "M"+date;
 
        List<ProductionOrdeInfo> workOrderNo = productionOrdeInfoService.list(new QueryWrapper<ProductionOrdeInfo>().like("work_order_no", date));
        if(workOrderNo.size() == 0){
            param.setWorkOrderNo(orderDate+"0001");
        }else {
            param.setWorkOrderNo(orderDate+String.format("%04d", workOrderNo.size()+1));
        }
        ProductionOrdeInfo one = productionOrdeInfoService.getOne(new QueryWrapper<ProductionOrdeInfo>()
                .select("MAX(serial_number) as serial_number")
        );
        if(one!=null){
            param.setSerialNumber(one.getSerialNumber()+1);
        }else {
            param.setSerialNumber(new Long("1"));
        }
        ProductionOrdeInfo entity = getEntity(param);
        this.save(entity);
    }
 
    @Override
    public void delete(ProductionOrdeInfoParam param){
        this.removeById(getKey(param));
    }
 
    @Override
    public void update(ProductionOrdeInfoParam param){
        //点击开始按钮 更新实际开始时间
//        if(param.getFlag()!=null){
//            param.setActualStartTime(new Date());
//        }
        ProductionOrdeInfo oldEntity = getOldEntity(param);
        ProductionOrdeInfo newEntity = getEntity(param);
        ToolUtil.copyProperties(newEntity, oldEntity);
        this.updateById(newEntity);
    }
 
    @Override
    public ProductionOrdeInfoResult findBySpec(ProductionOrdeInfoParam param){
        return null;
    }
 
    @Override
    public List<ProductionOrdeInfoResult> findListBySpec(ProductionOrdeInfoParam param){
        return this.baseMapper.customList(param);
    }
 
    @Override
    public LayuiPageInfo findPageBySpec(ProductionOrdeInfoParam param){
        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
        Page pageContext = getPageContext();
        IPage page = this.baseMapper.customPageList(pageContext, param);
        List<ProductionOrdeInfoResult> results =  page.getRecords();
        for (ProductionOrdeInfoResult result : results) {
            try{
                result.setPlanEndTimeString(format.format(result.getPlanEndTime()));
                result.setPlanStartTimeString(format.format(result.getPlanStartTime()));
            }catch (Exception e){
 
            }
        }
        return LayuiPageFactory.createPageInfo(page);
    }
 
    @Override
    public List lineFinishQty() {
        return this.baseMapper.lineFinishQty();
    }
 
    @Override
    public void saveOrderBatchInfo(ProductionOrdeInfoParam productionOrdeInfoParam) {
        List<BomInfo> productCode = bomInfoService.list(new QueryWrapper<BomInfo>().eq("product_code", productionOrdeInfoParam.getMaterialCode()));
        List<ProductionOrderBatchInfo> workOrderNo = orderBatchInfoService.list(new QueryWrapper<ProductionOrderBatchInfo>().eq("work_order_no", productionOrdeInfoParam.getWorkOrderNo()));
        if(workOrderNo.size()==0){
            for (BomInfo bomInfo : productCode) {
                ProductionOrderBatchInfo param = new ProductionOrderBatchInfo();
                param.setWorkOrderNo(productionOrdeInfoParam.getWorkOrderNo());
                param.setProductionLine(productionOrdeInfoParam.getProductionLine());
                param.setLocationCode(bomInfo.getLocationCode());
                param.setLoadingCode(bomInfo.getLoadingCode());
                param.setMaterialCode(bomInfo.getMaterialCode());
                param.setState("否");
                param.setCreateTime(new Date());
                orderBatchInfoService.save(param);
            }
        }
    }
 
    @Override
    public HashMap getOrderWeek() {
        return baseMapper.getOrderWeek();
    }
 
    @Override
    public Integer getPlanQtyByDate(String str) {
        return baseMapper.getPlanQtyByDate(str);
    }
 
    @Override
    public Integer getActualQtyByDate(String str) {
        return baseMapper.getActualQtyByDate(str);
    }
 
    @Override
    public List<ProductionOrdeInfoResult> getListMonth() {
        return baseMapper.getListMonth();
    }
 
    @Override
    public List<ProductionOrdeInfoResult> getColumnarDate() {
        return baseMapper.getColumnarDate();
    }
 
    private Serializable getKey(ProductionOrdeInfoParam param){
        return param.getId();
    }
 
    private Page getPageContext() {
        return LayuiPageFactory.defaultPage();
    }
 
    private ProductionOrdeInfo getOldEntity(ProductionOrdeInfoParam param) {
        return this.getById(getKey(param));
    }
 
    private ProductionOrdeInfo getEntity(ProductionOrdeInfoParam param) {
        ProductionOrdeInfo entity = new ProductionOrdeInfo();
        ToolUtil.copyProperties(param, entity);
        return entity;
    }
 
}