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