SRMDetailController.java
11.6 KB
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
package com.huaheng.pc.srm.controller;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.huaheng.common.utils.StringUtils;
import com.huaheng.common.utils.Wrappers;
import com.huaheng.common.utils.file.FileUploadUtils;
import com.huaheng.common.utils.security.ShiroUtils;
import com.huaheng.framework.aspectj.lang.annotation.Log;
import com.huaheng.framework.aspectj.lang.constant.BusinessType;
import com.huaheng.framework.config.HuaHengConfig;
import com.huaheng.framework.config.ServerIpConfig;
import com.huaheng.framework.web.controller.BaseController;
import com.huaheng.framework.web.domain.AjaxResult;
import com.huaheng.framework.web.page.TableDataInfo;
import com.huaheng.pc.config.warehouse.domain.WarehouseU8;
import com.huaheng.pc.config.warehouse.service.WarehouseU8Service;
import com.huaheng.pc.manager.apkinfo.domain.Apkinfo;
import com.huaheng.pc.manager.apkinfo.domain.MD5Util;
import com.huaheng.pc.srm.domain.SrmDetail;
import com.huaheng.pc.srm.service.SrmDetailService;
import net.dongliu.apk.parser.ApkFile;
import net.dongliu.apk.parser.bean.ApkMeta;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
import javax.annotation.Resource;
import java.io.File;
import java.net.InetAddress;
import java.util.Date;
import java.util.List;
@Controller
@RequestMapping("/srm/srmDetail")
public class SRMDetailController extends BaseController {
private String prefix = "srm/srmDetail";
@RequiresPermissions("srm:srmDetail:view")
@GetMapping("/{headerId}")
public String srmDetail(@PathVariable("headerId") String headerId, ModelMap mmap)
{
mmap.put("headerId", headerId);
return prefix + "/srmDetail";
}
@GetMapping("/checkSrmDetail")
public String srmDetail()
{
return prefix + "/checkSrmDetail";
}
@Resource
private SrmDetailService srmDetailService;
@Resource
private WarehouseU8Service warehouseU8Service;
/**
* 查询已到送货单明细
*/
//@RequiresPermissions("srm:srmDetail:list")
@Log(title = "送货单-送货单", operating="查看送货单明细", action = BusinessType.GRANT)
@PostMapping("/list")
@ResponseBody
public TableDataInfo list(SrmDetail srmDetail)
{
srmDetail.setEnable(1);
startPage();
List<SrmDetail> list = srmDetailService.selectList(srmDetail) ;
for (SrmDetail detail : list) {
WarehouseU8 warehouseWu = new WarehouseU8();
warehouseWu.setWarehouseCode(srmDetail.getWarehouseCode());
warehouseWu.setUCompanyCode(detail.getCompanyCode());
warehouseWu.setUWarehouseCode(detail.getUWarehouseCode());
List<WarehouseU8> warehouseWulist = warehouseU8Service.getByDomain(warehouseWu);
if(warehouseWulist != null&&warehouseWulist.size()>0){
warehouseWu=warehouseWulist.get(0);
detail.setUWarehouseName(warehouseWu.getUWarehouseName());
}
}
return getDataTable(list);
}
@Log(title = "已到待检", operating="已到待检明细", action = BusinessType.GRANT)
@PostMapping("/yiDaoDaiJianlist")
@ResponseBody
public TableDataInfo yiDaoDaiJianlist(SrmDetail srmDetail)
{
srmDetail.setEnable(1);
startPage();
LambdaQueryWrapper<SrmDetail> lambdaQueryWrapper= Wrappers.lambdaQuery();
lambdaQueryWrapper.eq(SrmDetail::getHeaderId,srmDetail.getHeaderId());
lambdaQueryWrapper.eq(SrmDetail::getCheckCode,0);
List<SrmDetail> list = srmDetailService.list(lambdaQueryWrapper) ;
for (SrmDetail detail : list) {
WarehouseU8 warehouseWu = new WarehouseU8();
warehouseWu.setWarehouseCode(srmDetail.getWarehouseCode());
warehouseWu.setUCompanyCode(detail.getCompanyCode());
warehouseWu.setUWarehouseCode(detail.getUWarehouseCode());
List<WarehouseU8> warehouseWulist = warehouseU8Service.getByDomain(warehouseWu);
if(warehouseWulist != null&&warehouseWulist.size()>0){
warehouseWu=warehouseWulist.get(0);
detail.setUWarehouseName(warehouseWu.getUWarehouseName());
}
}
return getDataTable(list);
}
@Log(title = "已到合格", operating="已到合格明细", action = BusinessType.GRANT)
@PostMapping("/yiDaoHeGelist")
@ResponseBody
public TableDataInfo yiDaoHeGelist(SrmDetail srmDetail)
{
srmDetail.setEnable(1);
startPage();
LambdaQueryWrapper<SrmDetail> lambdaQueryWrapper= Wrappers.lambdaQuery();
lambdaQueryWrapper.eq(SrmDetail::getHeaderId,srmDetail.getHeaderId());
lambdaQueryWrapper.gt(SrmDetail::getQualifiedQty,0);
List<SrmDetail> list = srmDetailService.list(lambdaQueryWrapper) ;
for (SrmDetail detail : list) {
WarehouseU8 warehouseWu = new WarehouseU8();
warehouseWu.setWarehouseCode(srmDetail.getWarehouseCode());
warehouseWu.setUCompanyCode(detail.getCompanyCode());
warehouseWu.setUWarehouseCode(detail.getUWarehouseCode());
List<WarehouseU8> warehouseWulist = warehouseU8Service.getByDomain(warehouseWu);
if(warehouseWulist != null&&warehouseWulist.size()>0){
warehouseWu=warehouseWulist.get(0);
detail.setUWarehouseName(warehouseWu.getUWarehouseName());
}
}
return getDataTable(list);
}
@Log(title = "已到不合格", operating="已到不合格明细", action = BusinessType.GRANT)
@PostMapping("/yiDaoBuHeGelist")
@ResponseBody
public TableDataInfo yiDaoBuHeGelist(SrmDetail srmDetail)
{
srmDetail.setEnable(1);
startPage();
LambdaQueryWrapper<SrmDetail> lambdaQueryWrapper= Wrappers.lambdaQuery();
lambdaQueryWrapper.eq(SrmDetail::getHeaderId,srmDetail.getHeaderId());
lambdaQueryWrapper.gt(SrmDetail::getUnqualifiedQty,0);
List<SrmDetail> list = srmDetailService.list(lambdaQueryWrapper) ;
for (SrmDetail detail : list) {
WarehouseU8 warehouseWu = new WarehouseU8();
warehouseWu.setWarehouseCode(srmDetail.getWarehouseCode());
warehouseWu.setUCompanyCode(detail.getCompanyCode());
warehouseWu.setUWarehouseCode(detail.getUWarehouseCode());
List<WarehouseU8> warehouseWulist = warehouseU8Service.getByDomain(warehouseWu);
if(warehouseWulist != null&&warehouseWulist.size()>0){
warehouseWu=warehouseWulist.get(0);
detail.setUWarehouseName(warehouseWu.getUWarehouseName());
}
}
return getDataTable(list);
}
/**
* 检测
*/
@GetMapping("/edit/{id}")
public String edit(@PathVariable("id") Integer id, ModelMap mmap) {
SrmDetail srmDetail = new SrmDetail();
srmDetail.setId(id);
srmDetail =srmDetailService.selectFirstModel(srmDetail);
mmap.put("srmDetail", srmDetail);
return prefix + "/edit";
}
/**
* 修改
*/
@RequiresPermissions("srm:srmDetail:edit")
@Log(title = "送货单-送货单", operating="修改送货单明细", action = BusinessType.GRANT)
@PostMapping("/edit")
@ResponseBody
public AjaxResult edit(SrmDetail srmDetail)
{
srmDetail.setLastUpdateBy(ShiroUtils.getLoginName());
srmDetail.setLastUpdate(new Date());
srmDetail.setUploadStatus1(0);
srmDetailService.updateById(srmDetail);
return AjaxResult.success("成功");
}
/**
* 删除送货单明细
*/
@RequiresPermissions("srm:srmDetail:edit")
@Log(title = "送货单-送货单", operating= "删除送货单明细", action = BusinessType.DELETE)
@PostMapping( "/remove")
@ResponseBody
public AjaxResult remove(String ids) {
if (StringUtils.isEmpty(ids)){
return AjaxResult.error("id不能为空");
}
String[] idss = ids.split(",");
for(String id:idss) {
Boolean number = srmDetailService.removeById(Integer.valueOf(id));
if(!number){
return AjaxResult.error("删除失败");
}
}
return AjaxResult.success("删除成功");
}
/**
* 检测
*/
@GetMapping("/check/{id}")
public String check(@PathVariable("id") Integer id, ModelMap mmap) {
SrmDetail srmDetail = new SrmDetail();
srmDetail.setId(id);
srmDetail =srmDetailService.selectFirstModel(srmDetail);
mmap.put("srmDetail", srmDetail);
return prefix + "/check";
}
/**
* 检测
*/
@RequiresPermissions("srm:srmDetail:check")
@Log(title = "送货单-送货单", operating="检测送货单明细", action = BusinessType.GRANT)
@PostMapping("/checkDetail")
@ResponseBody
public AjaxResult check(SrmDetail srmDetail)
{
return srmDetailService.checkDetail(srmDetail);
}
/**
* 检测
*/
@RequiresPermissions("srm:srmDetail:check")
@Log(title = "送货单-送货单", operating="检测送货单明细", action = BusinessType.GRANT)
@PostMapping("/checkBatchHege")
@ResponseBody
public AjaxResult checkBatchHege(String ids)
{
AjaxResult ajaxResult = handleMultiProcessV1("checkBatchHege", new MultiProcessListener() {
@Override
public AjaxResult doProcess() {
AjaxResult ajaxResult = srmDetailService.checkBatchHege(ids);
return ajaxResult;
}
});
return ajaxResult;
}
/**
* 检验数据报表
*/
@Log(title = "检验数据报表-检验数据报表", operating="检验数据报表", action = BusinessType.GRANT)
@PostMapping("/checkSrmDetailList")
@ResponseBody
public TableDataInfo checkSrmDetailList(SrmDetail srmDetail)
{
startPage();
List list = srmDetailService.checkSrmDetailList(srmDetail);
return getDataTable(list);
}
/**
* 上传应用
*/
@GetMapping("/upload")
public String upload(ModelMap mmap) {
return prefix + "/upload";
}
@PostMapping("/upload/uploadFile")
@ResponseBody
public AjaxResult updateApk(@RequestParam("myfile") MultipartFile file, Model model)
{
try
{
if (!file.isEmpty())
{
String apk = FileUploadUtils.upload(HuaHengConfig.getProfile()+"srmfile/", file, 1);
String md5 = MD5Util.md5(new File(HuaHengConfig.getApkpath() + apk));
// ApkFile apkFile = new ApkFile(HuaHengConfig.getApkpath() + apk);
// ApkMeta apkMeta = apkFile.getApkMeta();
// Apkinfo apkinfo = new Apkinfo();
// apkinfo.setUrl("http://" + ShiroUtils.getIp() + ":" + ServerIpConfig.getPort() + "/wms/apk/" + apk);
// apkinfo.setPkgName(apkMeta.getPackageName());
// apkinfo.setVersionCode(apkMeta.getVersionCode());
// apkinfo.setVersionName(apkMeta.getVersionName());
// apkinfo.setMd5(md5);
// addSave(apkinfo);
InetAddress address = InetAddress.getLocalHost();
String ip = address.getHostAddress();
String url="http://" + ip+ ":" + ServerIpConfig.getPort() + "/wms/srmfile/" + apk;
return success(url);
}
return success("上传成功");
}
catch (Exception e)
{
return error("上传失败,已经有这个文件了");
}
}
}