admin
2024-07-01 0ca2540bbe77760f8a6d6da2f911b79318cd9df9
提交 | 用户 | 时间
0ca254 1 package com.jcdm.main.om.productionOrde.controller;
A 2
3 import java.util.ArrayList;
4 import java.util.Date;
5 import java.util.List;
6 import javax.servlet.http.HttpServletResponse;
7
8 import cn.hutool.json.JSONObject;
9 import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
10 import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
11 import com.jcdm.common.core.domain.entity.SysUser;
12 import com.jcdm.common.core.domain.model.LoginUser;
13 import com.jcdm.common.utils.ServletUtils;
14 import com.jcdm.common.utils.StringUtils;
15 import com.jcdm.main.om.productionOrde.domain.OmProductionOrdeInfo;
16 import com.jcdm.main.om.productionOrde.domain.OmProductionOrdeInfoExcelImport;
17 import com.jcdm.main.om.productionOrde.mapper.OmProductionOrdeInfoMapper;
18 import com.jcdm.main.om.productionOrde.service.IOmProductionOrdeInfoService;
19 import com.jcdm.main.restful.factoryMes.service.RestfulService;
20 import lombok.extern.slf4j.Slf4j;
21 import org.aspectj.weaver.loadtime.Aj;
22 import org.slf4j.Logger;
23 import org.slf4j.LoggerFactory;
24 import org.springframework.security.access.prepost.PreAuthorize;
25 import org.springframework.beans.factory.annotation.Autowired;
26 import org.springframework.web.bind.annotation.GetMapping;
27 import org.springframework.web.bind.annotation.PostMapping;
28 import org.springframework.web.bind.annotation.PutMapping;
29 import org.springframework.web.bind.annotation.DeleteMapping;
30 import org.springframework.web.bind.annotation.PathVariable;
31 import org.springframework.web.bind.annotation.RequestBody;
32 import org.springframework.web.bind.annotation.RequestMapping;
33 import org.springframework.web.bind.annotation.RestController;
34 import com.jcdm.common.annotation.Log;
35 import com.jcdm.common.core.controller.BaseController;
36 import com.jcdm.common.core.domain.AjaxResult;
37 import com.jcdm.common.enums.BusinessType;
38 import com.jcdm.common.utils.poi.ExcelUtil;
39 import com.jcdm.common.core.page.TableDataInfo;
40 import org.springframework.web.multipart.MultipartFile;
41
42 /**
43  * 生产工单Controller
44  * 
45  * @author ruimin
46  * @date 2023-12-11
47  */
48 @Slf4j
49 @RestController
50 @RequestMapping("/om/productionOrde")
51 public class OmProductionOrdeInfoController extends BaseController
52 {
53     private static final Logger logger = LoggerFactory.getLogger("sys-user");
54
55     @Autowired
56     private IOmProductionOrdeInfoService omProductionOrdeInfoService;
57
58     /**
59      * 查询生产工单列表
60      */
61     @PreAuthorize("@ss.hasPermi('om:productionOrde:list')")
62     @GetMapping("/list")
63     public TableDataInfo list(OmProductionOrdeInfo omProductionOrdeInfo)
64     {
65         startPage();
66 //        List<OmProductionOrdeInfo> list = omProductionOrdeInfoService.list(new LambdaQueryWrapper<OmProductionOrdeInfo>().eq(OmProductionOrdeInfo::getWorkOrderNo, "W_202403120001"));
67         List<OmProductionOrdeInfo> list = omProductionOrdeInfoService.selectOmProductionOrdeInfoList(omProductionOrdeInfo);
68         return getDataTable(list);
69     }
70
71     @GetMapping("/checkCarCode")
72     public AjaxResult checkCarCode(OmProductionOrdeInfo omProductionOrdeInfo)
73     {
74         Integer i = 0;
75         List<OmProductionOrdeInfo> list = omProductionOrdeInfoService.list(new LambdaQueryWrapper<OmProductionOrdeInfo>().eq(OmProductionOrdeInfo::getProductNum, omProductionOrdeInfo.getProductNum()));
76         if(StringUtils.isNotBlank(list.get(0).getTrolleyYard())){
77             i = 1;
78         }
79         return AjaxResult.success(i);
80     }
81
82     @GetMapping("/checkYzSfcCode")
83     public AjaxResult checkYzSfcCode(OmProductionOrdeInfo omProductionOrdeInfo)
84     {
85         Integer i = 0;
86         List<OmProductionOrdeInfo> list = omProductionOrdeInfoService.list(new LambdaQueryWrapper<OmProductionOrdeInfo>().eq(OmProductionOrdeInfo::getProductNum, omProductionOrdeInfo.getProductNum()));
87         if(StringUtils.isNotBlank(list.get(0).getSpareField2())){
88             i = 1;
89         }
90         return AjaxResult.success(i);
91     }
92
93     @GetMapping("/bindYzSfcFlag")
94     public AjaxResult bindYzSfcFlag(OmProductionOrdeInfo omProductionOrdeInfo)
95     {
96         List<OmProductionOrdeInfo> list = omProductionOrdeInfoService.list(new LambdaQueryWrapper<OmProductionOrdeInfo>().eq(OmProductionOrdeInfo::getProductNum, omProductionOrdeInfo.getProductNum()));
97         list.get(0).setSpareField2("1");
98         omProductionOrdeInfoService.saveOrUpdate(list.get(0));
99         return AjaxResult.success(null);
100     }
101
102     /**
103      * 导出生产工单列表
104      */
105     @PreAuthorize("@ss.hasPermi('om:productionOrde:export')")
106     @Log(title = "生产工单", businessType = BusinessType.EXPORT)
107     @PostMapping("/export")
108     public void export(HttpServletResponse response, OmProductionOrdeInfo omProductionOrdeInfo)
109     {
110         List<OmProductionOrdeInfo> list = omProductionOrdeInfoService.selectOmProductionOrdeInfoList(omProductionOrdeInfo);
111         ExcelUtil<OmProductionOrdeInfo> util = new ExcelUtil<OmProductionOrdeInfo>(OmProductionOrdeInfo.class);
112         util.exportExcel(response, list, "生产工单数据");
113     }
114
115     @GetMapping("/receivingWorkOrders")
116     public AjaxResult receivingWorkOrders()
117     {
118         String paramProductNum = "";
119         // 查询最新的工单信息
120         List<OmProductionOrdeInfo> list = omProductionOrdeInfoService.list(new LambdaQueryWrapper<OmProductionOrdeInfo>().orderByAsc(OmProductionOrdeInfo::getCreateTime));
121         if(list.size() > 0){
122             paramProductNum = list.get(list.size()-1).getProductNum();
123         }
124         String orderJsonString = RestfulService.getProductionWorkOrderRequest(paramProductNum, "OP230");
125         JSONObject jsonObject = new JSONObject(orderJsonString);
126         // 从JSONObject中获取data对象
127         JSONObject dataObject = jsonObject.getJSONObject("data");
128         String code = jsonObject.getStr("code");
129         // 判断接单是否成功
130         if(code.equals("success")){
131             logger.info("请求工厂MES工单:入参pack{}出参pack:{}",paramProductNum,dataObject.getStr("productNum"));
132             List<OmProductionOrdeInfo> check = omProductionOrdeInfoService.list(new LambdaQueryWrapper<OmProductionOrdeInfo>().eq(OmProductionOrdeInfo::getProductNum,dataObject.getStr("productNum")));
133             if(check.size() == 0){
134                 OmProductionOrdeInfo omProductionOrdeInfo = new OmProductionOrdeInfo();
135                 omProductionOrdeInfo.setWorkOrderNo(dataObject.getStr("productionOrderNum"));
136                 omProductionOrdeInfo.setProductNum(dataObject.getStr("productNum"));
137                 omProductionOrdeInfo.setStationCode(dataObject.getStr("stationCode"));
138                 omProductionOrdeInfo.setMaterialCode(dataObject.getStr("materialCode"));
139                 omProductionOrdeInfo.setOnlineCompletionMark("0");
140                 omProductionOrdeInfo.setSfResult("0");
141                 if(dataObject.getStr("model").equals("PE01A")){
142                     omProductionOrdeInfo.setProductCode("1P102S");
143                 }else {
144                     omProductionOrdeInfo.setProductCode(dataObject.getStr("model"));
145                 }
146                 omProductionOrdeInfo.setCreateTime(new Date());
147                 omProductionOrdeInfo.setCreateUser("工厂MES");
148                 omProductionOrdeInfoService.save(omProductionOrdeInfo);
149             }
150         }else {
151             return AjaxResult.error("接单失败,请联系管理员");
152         }
153         return AjaxResult.success(dataObject.getStr("productNum"));
154     }
155
156     @GetMapping(value = "/jieBang/{id}")
157     public AjaxResult jieBang(@PathVariable("id") Long id)
158     {
159         OmProductionOrdeInfo byId = omProductionOrdeInfoService.getById(id);
160         byId.setTrolleyYard("");
161         return success(omProductionOrdeInfoService.saveOrUpdate(byId));
162     }
163
164     /**
165      * 获取生产工单详细信息
166      */
167     @PreAuthorize("@ss.hasPermi('om:productionOrde:query')")
168     @GetMapping(value = "/{id}")
169     public AjaxResult getInfo(@PathVariable("id") Long id)
170     {
171         return success(omProductionOrdeInfoService.selectOmProductionOrdeInfoById(id));
172     }
173
174     /**
175      * 新增生产工单
176      */
177     @PreAuthorize("@ss.hasPermi('om:productionOrde:add')")
178     @Log(title = "生产工单", businessType = BusinessType.INSERT)
179     @PostMapping
180     public AjaxResult add(@RequestBody OmProductionOrdeInfo omProductionOrdeInfo)
181     {
182         return toAjax(omProductionOrdeInfoService.insertOmProductionOrdeInfo(omProductionOrdeInfo));
183     }
184
185     /**
186      * 修改生产工单
187      */
188     @PreAuthorize("@ss.hasPermi('om:productionOrde:edit')")
189     @Log(title = "生产工单", businessType = BusinessType.UPDATE)
190     @PutMapping
191     public AjaxResult edit(@RequestBody OmProductionOrdeInfo omProductionOrdeInfo)
192     {
193         return toAjax(omProductionOrdeInfoService.updateOmProductionOrdeInfo(omProductionOrdeInfo));
194     }
195
196     /**
197      * 删除生产工单
198      */
199     @PreAuthorize("@ss.hasPermi('om:productionOrde:remove')")
200     @Log(title = "生产工单", businessType = BusinessType.DELETE)
201     @DeleteMapping("/{ids}")
202     public AjaxResult remove(@PathVariable Long[] ids)
203     {
204         return toAjax(omProductionOrdeInfoService.deleteOmProductionOrdeInfoByIds(ids));
205     }
206
207     /**
208      * table列上移下移
209      */
210     @Log(title = "生产工单", businessType = BusinessType.DELETE)
211     @GetMapping("/upDownMove")
212     public AjaxResult upDownMove(OmProductionOrdeInfo omProductionOrdeInfo)
213     {
214         return omProductionOrdeInfoService.upDownMove(omProductionOrdeInfo);
215     }
216
217     @PostMapping("/importData")
218     public AjaxResult importData(MultipartFile file, boolean updateSupport) throws Exception
219     {
220         ExcelUtil<OmProductionOrdeInfo> util = new ExcelUtil<OmProductionOrdeInfo>(OmProductionOrdeInfo.class);
221         List<OmProductionOrdeInfo> ordeInfo = util.importExcel(file.getInputStream());
222         for (OmProductionOrdeInfo omProductionOrdeInfo : ordeInfo) {
223             omProductionOrdeInfo.setCreateTime(new Date());
224             omProductionOrdeInfo.setCreateBy("工厂MES");
225         }
226         omProductionOrdeInfoService.overrideSaveBatch(ordeInfo);
227         return AjaxResult.success();
228     }
229
230     @PostMapping("/importTemplate")
231     public void importTemplate(HttpServletResponse response)
232     {
233         ExcelUtil<OmProductionOrdeInfoExcelImport> util = new ExcelUtil<OmProductionOrdeInfoExcelImport>(OmProductionOrdeInfoExcelImport.class);
234         util.importTemplateExcel(response, "订单数据");
235     }
236
237     @PostMapping("/trolleyYardBinDing")
238     public AjaxResult trolleyYardBinDing(@RequestBody OmProductionOrdeInfo omProductionOrdeInfo)
239     {
240         return omProductionOrdeInfoService.trolleyYardBinDing(omProductionOrdeInfo);
241     }
242
243     @PostMapping("/getCarCodeSize")
244     public AjaxResult getCarCodeSize(@RequestBody OmProductionOrdeInfo omProductionOrdeInfo)
245     {
246         return omProductionOrdeInfoService.getCarCodeSize(omProductionOrdeInfo);
247     }
248
249     @PostMapping("/findBytrolleyYardGetOne")
250     public AjaxResult findBytrolleyYardGetOne(@RequestBody OmProductionOrdeInfo omProductionOrdeInfo)
251     {
252         return omProductionOrdeInfoService.findBytrolleyYardGetOne(omProductionOrdeInfo);
253     }
254
255     @GetMapping("/workReportingByStation/{id}/{stationCode}")
256     public AjaxResult workReportingByStation(@PathVariable("id") Long id, @PathVariable("stationCode") String stationCode)
257     {
258         OmProductionOrdeInfo omProductionOrdeInfo = new OmProductionOrdeInfo();
259         omProductionOrdeInfo.setId(id);
260         omProductionOrdeInfo.setStationCode(stationCode);
261         return omProductionOrdeInfoService.workReportingByStation(omProductionOrdeInfo);
262     }
263 }