|
|
|
@ -1,22 +1,27 @@
|
|
|
|
|
package com.ruoyi.api.controller;
|
|
|
|
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
|
|
import com.ruoyi.api.domain.CheckTaskInfo;
|
|
|
|
|
import com.ruoyi.api.domain.InStoreDto;
|
|
|
|
|
import com.ruoyi.api.domain.OutStoreDto;
|
|
|
|
|
import com.ruoyi.api.domain.StockDto;
|
|
|
|
|
import com.ruoyi.api.service.impl.ApiService;
|
|
|
|
|
import com.ruoyi.common.config.RuoYiConfig;
|
|
|
|
|
import com.ruoyi.common.core.domain.AjaxResult;
|
|
|
|
|
|
|
|
|
|
import static com.ruoyi.common.core.domain.AjaxResult.*;
|
|
|
|
|
|
|
|
|
|
import com.ruoyi.common.utils.DateUtils;
|
|
|
|
|
import com.ruoyi.common.utils.file.FileUploadUtils;
|
|
|
|
|
import com.ruoyi.manage.domain.*;
|
|
|
|
|
import com.ruoyi.manage.service.*;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
import org.springframework.util.unit.DataUnit;
|
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
import java.util.*;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -55,7 +60,7 @@ public class ApiController {
|
|
|
|
|
public AjaxResult instoreSubmit(@RequestBody InStoreDto inStore) {
|
|
|
|
|
List<String> epcList = inStore.getEpcList();
|
|
|
|
|
int size = epcList.size();
|
|
|
|
|
System.out.println("数据条数:"+size);
|
|
|
|
|
System.out.println("数据条数:" + size);
|
|
|
|
|
Iterator<String> iterator = epcList.iterator();
|
|
|
|
|
while (iterator.hasNext()) {
|
|
|
|
|
String epc = iterator.next();
|
|
|
|
@ -66,13 +71,13 @@ public class ApiController {
|
|
|
|
|
}
|
|
|
|
|
int size1 = epcList.size();
|
|
|
|
|
int i = size - size1;
|
|
|
|
|
if (size1>0){
|
|
|
|
|
if (size1 > 0) {
|
|
|
|
|
apiService.submintInsertRecordIn(inStore);
|
|
|
|
|
apiService.submintInsertLedger(inStore);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return success("本次入库成功:" + size1 +"条,屏蔽重复入库:"+ i +"条");
|
|
|
|
|
return success("本次入库成功:" + size1 + "条,屏蔽重复入库:" + i + "条");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -88,13 +93,13 @@ public class ApiController {
|
|
|
|
|
@PostMapping("/outStore/submit")
|
|
|
|
|
public AjaxResult outStoreSubmit(@RequestBody OutStoreDto outStoreDto) {
|
|
|
|
|
try {
|
|
|
|
|
List<String> epcList = outStoreDto.getEpcList();
|
|
|
|
|
//int i=0;
|
|
|
|
|
for (String epc:epcList ) {
|
|
|
|
|
List<String> epcList = outStoreDto.getEpcList();
|
|
|
|
|
//int i=0;
|
|
|
|
|
for (String epc : epcList) {
|
|
|
|
|
String tag = apiService.selectLedgerbyEpcForOutStore(epc);
|
|
|
|
|
if (tag!=null){
|
|
|
|
|
apiService.submitInsertRecordOut(outStoreDto,epc);
|
|
|
|
|
apiService.updataLedgerFoyOut(outStoreDto,epc);
|
|
|
|
|
if (tag != null) {
|
|
|
|
|
apiService.submitInsertRecordOut(outStoreDto, epc);
|
|
|
|
|
apiService.updataLedgerFoyOut(outStoreDto, epc);
|
|
|
|
|
//i++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -118,7 +123,7 @@ public class ApiController {
|
|
|
|
|
}*/
|
|
|
|
|
|
|
|
|
|
return success();
|
|
|
|
|
}catch (Exception e){
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
return error();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -180,16 +185,9 @@ public class ApiController {
|
|
|
|
|
return success();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@PostMapping("/xj/select")
|
|
|
|
|
public AjaxResult xjSelect(String user) {
|
|
|
|
|
List<StockDto> list = apiService.xjSelect(user);
|
|
|
|
|
if (list == null) {
|
|
|
|
|
return error("没有维护巡检区域");
|
|
|
|
|
}
|
|
|
|
|
return success(list);
|
|
|
|
|
}
|
|
|
|
|
@PostMapping("/xj/selectLite")
|
|
|
|
|
public String xjSelectLite(String user) {
|
|
|
|
|
|
|
|
|
|
@PostMapping("/xj/selectLite")
|
|
|
|
|
public String xjSelectLite(String user) {
|
|
|
|
|
List<StockDto> list = apiService.xjSelect(user);
|
|
|
|
|
if (list == null) {
|
|
|
|
|
return "null";
|
|
|
|
@ -201,15 +199,81 @@ public class ApiController {
|
|
|
|
|
private IRecordInspectionService inspectionService;
|
|
|
|
|
|
|
|
|
|
@PostMapping("/xj/submit")
|
|
|
|
|
public AjaxResult inspectionSubmit(String json, String user) {
|
|
|
|
|
public AjaxResult inspectionSubmit(long tableId, String json, long inspectionId, List<MultipartFile> files) {
|
|
|
|
|
//插入 info 表
|
|
|
|
|
List<StockDto> list = JSONObject.parseArray(json, StockDto.class);
|
|
|
|
|
apiService.insertInspectionInfo(list, inspectionId);
|
|
|
|
|
//修改task状态
|
|
|
|
|
apiService.updataInspectionTaskByObjid(tableId);
|
|
|
|
|
|
|
|
|
|
//存储图片,插库
|
|
|
|
|
String filePath = RuoYiConfig.getUploadPath() + "/inspection";
|
|
|
|
|
Date date = new Date();
|
|
|
|
|
|
|
|
|
|
if (files != null && files.size() > 0) {
|
|
|
|
|
for (MultipartFile multipartFile : files) {
|
|
|
|
|
String pathName = null;
|
|
|
|
|
try {
|
|
|
|
|
pathName = FileUploadUtils.upload(filePath, multipartFile);
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
}
|
|
|
|
|
System.out.println("上传图片路径:" + pathName);
|
|
|
|
|
//apiService.confirmSubment(inspectionId, tableId, pathName);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return success();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询巡检机位
|
|
|
|
|
*
|
|
|
|
|
* @param user
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@PostMapping("/inspection/selectTask")
|
|
|
|
|
public AjaxResult inspectionSelectTask(String user) {
|
|
|
|
|
List<CheckTaskInfo> list = apiService.inspectionSelectTask(user);
|
|
|
|
|
if (list == null || list.isEmpty()) {
|
|
|
|
|
return error("需要创建");
|
|
|
|
|
}
|
|
|
|
|
return success(list);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 根据机位查询轮挡
|
|
|
|
|
*
|
|
|
|
|
* @param
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@PostMapping("/inspection/select")
|
|
|
|
|
public AjaxResult inspectionSelect(String code) {
|
|
|
|
|
List<StockDto> list = apiService.inspectionSelectLocation(code);
|
|
|
|
|
if (list == null) {
|
|
|
|
|
return error("没有领用轮挡");
|
|
|
|
|
}
|
|
|
|
|
return success(list);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 创建巡检机位列表和巡检任务
|
|
|
|
|
*
|
|
|
|
|
* @param user
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@PostMapping("/xj/createTask")
|
|
|
|
|
public AjaxResult inspectionCreateTask(String user) {
|
|
|
|
|
List<CheckTaskInfo> list = apiService.selectLocationByAreaUser(user);
|
|
|
|
|
if (list == null || list.isEmpty()) {
|
|
|
|
|
return error("没有维护巡检区域");
|
|
|
|
|
}
|
|
|
|
|
RecordInspection recordInspection = new RecordInspection();
|
|
|
|
|
recordInspection.setInspectionUser(user);
|
|
|
|
|
int insertNumber = inspectionService.insertRecordInspection(recordInspection);
|
|
|
|
|
if (insertNumber == 1) {
|
|
|
|
|
List<StockDto> list = JSONObject.parseArray(json, StockDto.class);
|
|
|
|
|
apiService.insertInspectionInfo(list,recordInspection.getInspectionId());
|
|
|
|
|
}
|
|
|
|
|
return success();
|
|
|
|
|
apiService.insertCheckTask(Math.toIntExact(recordInspection.getInspectionId()), list);
|
|
|
|
|
return success("创建成功", insertNumber);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -233,6 +297,7 @@ public class ApiController {
|
|
|
|
|
apiService.updataLedgerIn(epc, subCode);
|
|
|
|
|
return success();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@PostMapping("/fpout/select")
|
|
|
|
|
public AjaxResult fpOutSelect() {
|
|
|
|
|
List<StockDto> list = apiService.fpOutSelect();
|
|
|
|
@ -246,10 +311,10 @@ public class ApiController {
|
|
|
|
|
public AjaxResult fpoutSubmit(String json, String user) {
|
|
|
|
|
try {
|
|
|
|
|
List<StockDto> list = JSONObject.parseArray(json, StockDto.class);
|
|
|
|
|
apiService.insertWasreOutRecord(list,user);
|
|
|
|
|
apiService.updataLedgerForWasreOut(list,user);
|
|
|
|
|
apiService.insertWasreOutRecord(list, user);
|
|
|
|
|
apiService.updataLedgerForWasreOut(list, user);
|
|
|
|
|
return success();
|
|
|
|
|
}catch (Exception e){
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
return error();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|