...
|
...
|
@@ -3,31 +3,11 @@ |
|
|
*/
|
|
|
package com.thinkgem.jeesite.modules.land.web;
|
|
|
|
|
|
import java.text.SimpleDateFormat;
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
import java.util.Random;
|
|
|
|
|
|
import javax.annotation.PostConstruct;
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
|
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
import org.springframework.ui.Model;
|
|
|
import org.springframework.web.bind.annotation.ModelAttribute;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
|
|
|
|
|
|
import com.thinkgem.jeesite.common.barCode.buildBarCode;
|
|
|
import com.thinkgem.jeesite.common.config.Global;
|
|
|
import com.thinkgem.jeesite.common.persistence.Page;
|
|
|
import com.thinkgem.jeesite.common.web.BaseController;
|
|
|
import com.thinkgem.jeesite.common.utils.StringUtils;
|
|
|
import com.thinkgem.jeesite.common.web.BaseController;
|
|
|
import com.thinkgem.jeesite.modules.land.entity.LandBusinesstypeList;
|
|
|
import com.thinkgem.jeesite.modules.land.entity.LandRoadVeRecord;
|
|
|
import com.thinkgem.jeesite.modules.land.entity.VehicleMainifist;
|
...
|
...
|
@@ -45,10 +25,25 @@ import com.thinkgem.jeesite.modules.yard.entity.Bayonet; |
|
|
import com.thinkgem.jeesite.modules.yard.entity.Yard;
|
|
|
import com.thinkgem.jeesite.modules.yard.service.BayonetService;
|
|
|
import com.thinkgem.jeesite.modules.yard.service.YardService;
|
|
|
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
import org.springframework.ui.Model;
|
|
|
import org.springframework.web.bind.annotation.ModelAttribute;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
|
|
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
import java.text.ParseException;
|
|
|
import java.text.SimpleDateFormat;
|
|
|
import java.util.*;
|
|
|
|
|
|
/**
|
|
|
* 货物流转类型Controller
|
|
|
*
|
|
|
*
|
|
|
* @author zhangfan
|
|
|
* @version 2018-10-08
|
|
|
*/
|
...
|
...
|
@@ -73,7 +68,7 @@ public class LandBusinesstypeListController extends BaseController { |
|
|
|
|
|
@Autowired
|
|
|
private SystemService systemService;
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
private OfficeService officeService;
|
|
|
|
...
|
...
|
@@ -101,27 +96,31 @@ public class LandBusinesstypeListController extends BaseController { |
|
|
Principal principal = UserUtils.getPrincipal();
|
|
|
String loginName = principal.getLoginName();
|
|
|
User user = systemService.getUserByLoginName(loginName);
|
|
|
if (user == null) {
|
|
|
return "redirect:" + Global.getAdminPath() + "/land/landBusinesstypeList/?repage";
|
|
|
}
|
|
|
Yard yard = new Yard();
|
|
|
List<Yard> yardList = yardService.findList(yard);
|
|
|
List<LandBusinesstypeList> lists = new ArrayList<LandBusinesstypeList>();
|
|
|
Page<LandBusinesstypeList> page = null;
|
|
|
if ("2".equals(user.getUserType())) {
|
|
|
Office office = officeService.get(user.getOffice());
|
|
|
List<User> u = systemService.findByOfficeId(office.getId());
|
|
|
List<User> u = systemService.findByOfficeId(office.getId());
|
|
|
for (int i = 0; i < u.size(); i++) {
|
|
|
landBusinesstypeList.setCreateBy(u.get(i));
|
|
|
page = landBusinesstypeListService
|
|
|
.findPage(new Page<LandBusinesstypeList>(request, response), landBusinesstypeList);
|
|
|
page = landBusinesstypeListService.findPage(new Page<LandBusinesstypeList>(request, response),
|
|
|
landBusinesstypeList);
|
|
|
lists.addAll(page.getList());
|
|
|
}
|
|
|
} else {
|
|
|
Role role = systemService.getByUserId(user.getId());
|
|
|
if("admin".equals(role.getEnname())||"leader".equals(role.getEnname())) {
|
|
|
if ("admin".equals(role.getEnname()) || "leader".equals(role.getEnname())) {
|
|
|
landBusinesstypeList.setCreateBy(systemService.getUserByLoginName("admin"));
|
|
|
}else {
|
|
|
} else {
|
|
|
landBusinesstypeList.setCreateBy(user);
|
|
|
}
|
|
|
page = landBusinesstypeListService.findPage(new Page<LandBusinesstypeList>(request, response), landBusinesstypeList);
|
|
|
page = landBusinesstypeListService.findPage(new Page<LandBusinesstypeList>(request, response),
|
|
|
landBusinesstypeList);
|
|
|
lists.addAll(page.getList());
|
|
|
}
|
|
|
page.setList(lists);
|
...
|
...
|
@@ -205,6 +204,9 @@ public class LandBusinesstypeListController extends BaseController { |
|
|
List<Yard> yardList = yardService.findList(yard);
|
|
|
LandRoadVeRecord ve = new LandRoadVeRecord();
|
|
|
User user = systemService.getUserByLoginName("admin");
|
|
|
if (user == null) {
|
|
|
return "redirect:" + Global.getAdminPath() + "/land/landBusinesstypeList/?repage";
|
|
|
}
|
|
|
ve.setCreateBy(user);
|
|
|
|
|
|
List<LandRoadVeRecord> veList = roadVeService.findList(ve);
|
...
|
...
|
@@ -225,9 +227,16 @@ public class LandBusinesstypeListController extends BaseController { |
|
|
if (!beanValidator(model, landBusinesstypeList)) {
|
|
|
return form(landBusinesstypeList, model);
|
|
|
}
|
|
|
if(!(landBusinesstypeList.getIsvalid()!=null)) {
|
|
|
List<LandBusinesstypeList> lists = landBusinesstypeListService.findByIsValid(landBusinesstypeList.getTrailerFrameNo(), "0");
|
|
|
if(lists.size()>0) {
|
|
|
Principal principal = UserUtils.getPrincipal();
|
|
|
String loginName = principal.getLoginName();
|
|
|
User user = systemService.getUserByLoginName(loginName);
|
|
|
if (user == null) {
|
|
|
return "redirect:" + Global.getAdminPath() + "/land/landBusinesstypeList/?repage";
|
|
|
}
|
|
|
if (!(landBusinesstypeList.getIsvalid() != null)) {
|
|
|
List<LandBusinesstypeList> lists = landBusinesstypeListService
|
|
|
.findByIsValid(landBusinesstypeList.getTrailerFrameNo(), "0");
|
|
|
if (lists.size() > 0) {
|
|
|
addMessage(redirectAttributes, "当前车辆已做出入申请,请重新录入");
|
|
|
return "redirect:" + Global.getAdminPath() + "/land/landBusinesstypeList/?repage";
|
|
|
}
|
...
|
...
|
@@ -285,54 +294,72 @@ public class LandBusinesstypeListController extends BaseController { |
|
|
public String delete(LandBusinesstypeList landBusinesstypeList, RedirectAttributes redirectAttributes)
|
|
|
throws Exception {
|
|
|
boolean flag = false;
|
|
|
List<LandBusinesstypeList> list = landBusinesstypeListService.findByBarcode(landBusinesstypeList.getBarcode());
|
|
|
for (int i = 0; i < list.size(); i++) {
|
|
|
String flag1 = list.get(i).getContrastflag();
|
|
|
if (flag1 != null) {
|
|
|
flag = true;
|
|
|
break;
|
|
|
if (landBusinesstypeList.getBarcode() != null && landBusinesstypeList.getBarcode().length()>0) {
|
|
|
List<LandBusinesstypeList> list = landBusinesstypeListService
|
|
|
.findByBarcode(landBusinesstypeList.getBarcode());
|
|
|
for (int i = 0; i < list.size(); i++) {
|
|
|
String flag1 = list.get(i).getContrastflag();
|
|
|
if (flag1 != null) {
|
|
|
flag = true;
|
|
|
break;
|
|
|
}
|
|
|
}
|
|
|
if (!flag) {
|
|
|
landBusinesstypeListService.deleteByBarcode(landBusinesstypeList.getBarcode());
|
|
|
veMainService.deleteById(landBusinesstypeList.getMassageId());
|
|
|
buildBarCode.cancleBarCode(landBusinesstypeList.getTrailerFrameNo());
|
|
|
addMessage(redirectAttributes, "删除申请单成功");
|
|
|
} else {
|
|
|
addMessage(redirectAttributes, "删除失败,已有业务已进出站");
|
|
|
}
|
|
|
}
|
|
|
if (!flag) {
|
|
|
landBusinesstypeListService.deleteByBarcode(landBusinesstypeList.getBarcode());
|
|
|
veMainService.deleteById(landBusinesstypeList.getMassageId());
|
|
|
buildBarCode.cancleBarCode(landBusinesstypeList.getTrailerFrameNo());
|
|
|
addMessage(redirectAttributes, "删除申请单成功");
|
|
|
} else {
|
|
|
addMessage(redirectAttributes, "删除失败,已有业务已进出站");
|
|
|
landBusinesstypeListService.deleteByPrimaryKey(landBusinesstypeList.getId());
|
|
|
addMessage(redirectAttributes, "删除申请单成功");
|
|
|
}
|
|
|
|
|
|
return "redirect:" + Global.getAdminPath() + "/land/landBusinesstypeList/?repage";
|
|
|
}
|
|
|
|
|
|
|
|
|
@RequiresPermissions("land:landBusinesstypeList:edit")
|
|
|
@RequestMapping(value = "update")
|
|
|
@RequestMapping(value = "updateError")
|
|
|
public String update(LandBusinesstypeList landBusinesstypeList, RedirectAttributes redirectAttributes)
|
|
|
throws Exception {
|
|
|
if ("E".equals(landBusinesstypeList.getTurnoverflag())) {
|
|
|
landBusinesstypeList.setContrastflag("非正常出站");
|
|
|
}
|
|
|
if ("I".equals(landBusinesstypeList.getTurnoverflag())) {
|
|
|
landBusinesstypeList.setContrastflag("非正常进站");
|
|
|
}
|
|
|
landBusinesstypeListService.updateEntry(landBusinesstypeList);
|
|
|
|
|
|
List<LandBusinesstypeList> list = landBusinesstypeListService.findByBarcode(landBusinesstypeList.getBarcode());
|
|
|
for (int i = 0; i < list.size(); i++) {
|
|
|
list.get(i).setIsvalid("1");
|
|
|
if("E".equals(list.get(i).getTurnoverflag())) {
|
|
|
list.get(i).setContrastflag("非正常出站");
|
|
|
}
|
|
|
landBusinesstypeListService.updateEntry(list.get(i));
|
|
|
}
|
|
|
buildBarCode.cancleBarCode(landBusinesstypeList.getTrailerFrameNo());
|
|
|
addMessage(redirectAttributes, "异常处理成功");
|
|
|
return "redirect:" + Global.getAdminPath() + "/land/landBusinesstypeList/?repage";
|
|
|
}
|
|
|
|
|
|
|
|
|
public boolean insertType1(LandBusinesstypeList landBusinesstypeList) {
|
|
|
boolean flag = false;
|
|
|
|
|
|
try {
|
|
|
String messageId = dateTimeFormat();
|
|
|
|
|
|
String barCode = buildBarCode.CreateBarCode(landBusinesstypeList.getTrailerFrameNo(), messageId);
|
|
|
if (barCode.length() < 1 | barCode == null) {
|
|
|
buildBarCode.cancleBarCode(landBusinesstypeList.getTrailerFrameNo());
|
|
|
return false;
|
|
|
}
|
|
|
// first entry in
|
|
|
String messageId = LandBusinesstypeListController.dateTimeFormat();
|
|
|
String mainfistList = landBusinesstypeList.getMasterList();
|
|
|
String startport = landBusinesstypeList.getStartport();
|
|
|
String endport = landBusinesstypeList.getEndport();
|
|
|
String startStation = landBusinesstypeList.getStartsatation();
|
|
|
String endStation = landBusinesstypeList.getEndstation();
|
|
|
String isfull = landBusinesstypeList.getIsfull();
|
|
|
|
|
|
landBusinesstypeList.setMassageId(messageId);
|
|
|
landBusinesstypeList.setStartport("");
|
|
|
landBusinesstypeList.setStartsatation("");
|
...
|
...
|
@@ -340,6 +367,7 @@ public class LandBusinesstypeListController extends BaseController { |
|
|
landBusinesstypeList.setEndstation(startStation);
|
|
|
landBusinesstypeList.setMasterList("");
|
|
|
landBusinesstypeList.setProdectTime(new Date());
|
|
|
landBusinesstypeList.setBarcode(barCode);
|
|
|
landBusinesstypeList.setAisle(bayService.findByYardAndName(startStation, "1号卡口-进").getChannel());
|
|
|
landBusinesstypeListService.save(landBusinesstypeList);
|
|
|
insertVm(landBusinesstypeList.getMassageId(), landBusinesstypeList.getTrailerFrameNo(), mainfistList);
|
...
|
...
|
@@ -348,6 +376,7 @@ public class LandBusinesstypeListController extends BaseController { |
|
|
LandBusinesstypeList list = new LandBusinesstypeList();
|
|
|
list.setAgentname(landBusinesstypeList.getAgentname());
|
|
|
list.setAgentno(landBusinesstypeList.getAgentno());
|
|
|
list.setCocode(landBusinesstypeList.getCocode());
|
|
|
list.setIsDelete("0");
|
|
|
list.setIsvalid("0");
|
|
|
list.setIsfull(isfull);
|
...
|
...
|
@@ -364,12 +393,14 @@ public class LandBusinesstypeListController extends BaseController { |
|
|
list.setAisle(bayService.findByYardAndName(startStation, "1号卡口-出").getChannel());
|
|
|
list.setTurnoverflag("E");
|
|
|
list.setMassageId(messageId);
|
|
|
list.setBarcode(barCode);
|
|
|
landBusinesstypeListService.save(list);
|
|
|
|
|
|
// third
|
|
|
LandBusinesstypeList list1 = new LandBusinesstypeList();
|
|
|
list1.setAgentname(landBusinesstypeList.getAgentname());
|
|
|
list1.setAgentno(landBusinesstypeList.getAgentno());
|
|
|
list1.setCocode(landBusinesstypeList.getCocode());
|
|
|
list1.setIsDelete("0");
|
|
|
list1.setIsvalid("0");
|
|
|
list1.setIsfull(isfull);
|
...
|
...
|
@@ -388,12 +419,14 @@ public class LandBusinesstypeListController extends BaseController { |
|
|
list1.setAisle(bayService.findByYardAndName(endStation, "1号卡口-进").getChannel());
|
|
|
list1.setTurnoverflag("I");
|
|
|
list1.setMassageId(messageId);
|
|
|
list1.setBarcode(barCode);
|
|
|
landBusinesstypeListService.save(list1);
|
|
|
|
|
|
// four
|
|
|
LandBusinesstypeList list2 = new LandBusinesstypeList();
|
|
|
list2.setAgentname(landBusinesstypeList.getAgentname());
|
|
|
list2.setAgentno(landBusinesstypeList.getAgentno());
|
|
|
list2.setCocode(landBusinesstypeList.getCocode());
|
|
|
list2.setIsDelete("0");
|
|
|
list2.setIsvalid("0");
|
|
|
list2.setIsfull(isfull);
|
...
|
...
|
@@ -414,55 +447,41 @@ public class LandBusinesstypeListController extends BaseController { |
|
|
list2.setAisle(bayService.findByYardAndName(endStation, "1号卡口-出").getChannel());
|
|
|
list2.setTurnoverflag("E");
|
|
|
list2.setMassageId(messageId);
|
|
|
list2.setBarcode(barCode);
|
|
|
landBusinesstypeListService.save(list2);
|
|
|
|
|
|
String barCode = buildBarCode.CreateBarCode(landBusinesstypeList.getTrailerFrameNo(), messageId);
|
|
|
List<LandBusinesstypeList> typeList = landBusinesstypeListService.findByMessageId(messageId);
|
|
|
int count = 0;
|
|
|
for (int i = 0; i < typeList.size(); i++) {
|
|
|
typeList.get(i).setBarcode(barCode);
|
|
|
landBusinesstypeListService.updateEntry(typeList.get(i));
|
|
|
count++;
|
|
|
if (count == typeList.size()) {
|
|
|
flag = true;
|
|
|
}
|
|
|
}
|
|
|
int countType = 0;
|
|
|
if (barCode == null) {
|
|
|
List<LandBusinesstypeList> typeList1 = landBusinesstypeListService.findByMessageId(messageId);
|
|
|
for (int i = 0; i < typeList1.size(); i++) {
|
|
|
landBusinesstypeListService.deleteByMessageId(typeList1.get(i));
|
|
|
countType++;
|
|
|
if (countType == typeList1.size()) {
|
|
|
flag = false;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
} catch (Exception e) {
|
|
|
e.printStackTrace();
|
|
|
}
|
|
|
return flag;
|
|
|
return true;
|
|
|
|
|
|
}
|
|
|
|
|
|
public boolean insertType2(LandBusinesstypeList landBusinesstypeList) {
|
|
|
|
|
|
boolean flag = false;
|
|
|
try {
|
|
|
String messageId = LandBusinesstypeListController.dateTimeFormat();
|
|
|
|
|
|
String barCode = buildBarCode.CreateBarCode(landBusinesstypeList.getTrailerFrameNo(), messageId);
|
|
|
if (barCode.length() < 1 | barCode == null) {
|
|
|
buildBarCode.cancleBarCode(landBusinesstypeList.getTrailerFrameNo());
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
// first entry
|
|
|
String messageId = dateTimeFormat();
|
|
|
String mainfistList = landBusinesstypeList.getMasterList();
|
|
|
String isfull = landBusinesstypeList.getIsfull();
|
|
|
landBusinesstypeList.setMassageId(messageId);
|
|
|
landBusinesstypeList.setMasterList("");
|
|
|
landBusinesstypeList.setProdectTime(new Date());
|
|
|
landBusinesstypeList.setBarcode(barCode);
|
|
|
landBusinesstypeListService.save(landBusinesstypeList);
|
|
|
insertVm(landBusinesstypeList.getMassageId(), landBusinesstypeList.getTrailerFrameNo(), mainfistList);
|
|
|
// second
|
|
|
LandBusinesstypeList list = new LandBusinesstypeList();
|
|
|
list.setAgentname(landBusinesstypeList.getAgentname());
|
|
|
list.setAgentno(landBusinesstypeList.getAgentno());
|
|
|
list.setCocode(landBusinesstypeList.getCocode());
|
|
|
list.setIsDelete("0");
|
|
|
list.setIsvalid("0");
|
|
|
list.setIsfull(isfull);
|
...
|
...
|
@@ -481,51 +500,38 @@ public class LandBusinesstypeListController extends BaseController { |
|
|
list.setAisle(bayService.findByYardAndName(landBusinesstypeList.getEndstation(), "1号卡口-出").getChannel());
|
|
|
list.setTurnoverflag("E");
|
|
|
list.setMassageId(messageId);
|
|
|
list.setBarcode(barCode);
|
|
|
landBusinesstypeListService.save(list);
|
|
|
String barCode = buildBarCode.CreateBarCode(landBusinesstypeList.getTrailerFrameNo(), messageId);
|
|
|
List<LandBusinesstypeList> typeList = landBusinesstypeListService.findByMessageId(messageId);
|
|
|
int count = 0;
|
|
|
for (int i = 0; i < typeList.size(); i++) {
|
|
|
typeList.get(i).setBarcode(barCode);
|
|
|
landBusinesstypeListService.updateEntry(typeList.get(i));
|
|
|
count++;
|
|
|
if (count == typeList.size()) {
|
|
|
flag = true;
|
|
|
}
|
|
|
}
|
|
|
int countType = 0;
|
|
|
if (barCode == null) {
|
|
|
List<LandBusinesstypeList> typeList1 = landBusinesstypeListService.findByMessageId(messageId);
|
|
|
for (int i = 0; i < typeList1.size(); i++) {
|
|
|
landBusinesstypeListService.deleteByMessageId(typeList1.get(i));
|
|
|
countType++;
|
|
|
if (countType == typeList.size()) {
|
|
|
flag = false;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
} catch (Exception e) {
|
|
|
e.printStackTrace();
|
|
|
}
|
|
|
return flag;
|
|
|
return true;
|
|
|
}
|
|
|
|
|
|
public boolean insertType3(LandBusinesstypeList landBusinesstypeList) {
|
|
|
|
|
|
boolean flag = false;
|
|
|
try {
|
|
|
|
|
|
String messageId = LandBusinesstypeListController.dateTimeFormat();
|
|
|
|
|
|
String barCode = buildBarCode.CreateBarCode(landBusinesstypeList.getTrailerFrameNo(), messageId);
|
|
|
if (barCode.length() < 1 | barCode == null) {
|
|
|
buildBarCode.cancleBarCode(landBusinesstypeList.getTrailerFrameNo());
|
|
|
return false;
|
|
|
}
|
|
|
// first entry
|
|
|
String messageId = dateTimeFormat();
|
|
|
landBusinesstypeList.setMassageId(messageId);
|
|
|
String mainfistList = landBusinesstypeList.getMasterList();
|
|
|
String isfull = landBusinesstypeList.getIsfull();
|
|
|
landBusinesstypeList.setProdectTime(new Date());
|
|
|
landBusinesstypeList.setBarcode(barCode);
|
|
|
landBusinesstypeListService.save(landBusinesstypeList);
|
|
|
insertVm(landBusinesstypeList.getMassageId(), landBusinesstypeList.getTrailerFrameNo(), mainfistList);
|
|
|
// second
|
|
|
LandBusinesstypeList list = new LandBusinesstypeList();
|
|
|
list.setAgentname(landBusinesstypeList.getAgentname());
|
|
|
list.setAgentno(landBusinesstypeList.getAgentno());
|
|
|
list.setCocode(landBusinesstypeList.getCocode());
|
|
|
list.setIsDelete("0");
|
|
|
list.setIsvalid("0");
|
|
|
list.setIsfull(isfull);
|
...
|
...
|
@@ -544,34 +550,13 @@ public class LandBusinesstypeListController extends BaseController { |
|
|
list.setAisle(bayService.findByYardAndName(landBusinesstypeList.getEndstation(), "1号卡口-出").getChannel());
|
|
|
list.setTurnoverflag("E");
|
|
|
list.setMassageId(messageId);
|
|
|
list.setBarcode(barCode);
|
|
|
landBusinesstypeListService.save(list);
|
|
|
|
|
|
String barCode = buildBarCode.CreateBarCode(landBusinesstypeList.getTrailerFrameNo(), messageId);
|
|
|
List<LandBusinesstypeList> typeList = landBusinesstypeListService.findByMessageId(messageId);
|
|
|
int count = 0;
|
|
|
for (int i = 0; i < typeList.size(); i++) {
|
|
|
typeList.get(i).setBarcode(barCode);
|
|
|
landBusinesstypeListService.updateEntry(typeList.get(i));
|
|
|
count++;
|
|
|
if (count == typeList.size()) {
|
|
|
flag = true;
|
|
|
}
|
|
|
}
|
|
|
int countType = 0;
|
|
|
if (barCode == null) {
|
|
|
List<LandBusinesstypeList> typeList1 = landBusinesstypeListService.findByMessageId(messageId);
|
|
|
for (int i = 0; i < typeList1.size(); i++) {
|
|
|
landBusinesstypeListService.deleteByMessageId(typeList1.get(i));
|
|
|
countType++;
|
|
|
if (countType == typeList.size()) {
|
|
|
flag = false;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
} catch (Exception e) {
|
|
|
e.printStackTrace();
|
|
|
}
|
|
|
return flag;
|
|
|
return true;
|
|
|
}
|
|
|
|
|
|
/*
|
...
|
...
|
@@ -597,7 +582,7 @@ public class LandBusinesstypeListController extends BaseController { |
|
|
* landBusinesstypeListService.save(landBusinesstypeList);
|
|
|
* insertVm(landBusinesstypeList.getMassageId(),landBusinesstypeList.
|
|
|
* getTrailerFrameNo(),mainfistList);
|
|
|
*
|
|
|
*
|
|
|
* //second out LandBusinesstypeList list = new LandBusinesstypeList();
|
|
|
* list.setAgentname(landBusinesstypeList.getAgentname());
|
|
|
* list.setAgentno(landBusinesstypeList.getAgentno()); list.setBarcode(barCode);
|
...
|
...
|
@@ -612,7 +597,7 @@ public class LandBusinesstypeListController extends BaseController { |
|
|
* list.setAisle(bayService.findByYardAndName(startStation,
|
|
|
* "1号卡口-出").getChannel()); list.setTurnoverflag("E");
|
|
|
* list.setMassageId(messageId); landBusinesstypeListService.save(list);
|
|
|
*
|
|
|
*
|
|
|
* //third LandBusinesstypeList list1 = new LandBusinesstypeList();
|
|
|
* list1.setAgentname(landBusinesstypeList.getAgentname());
|
|
|
* list1.setAgentno(landBusinesstypeList.getAgentno()); list1.setIsDelete("0");
|
...
|
...
|
@@ -628,7 +613,7 @@ public class LandBusinesstypeListController extends BaseController { |
|
|
* list1.setAisle(bayService.findByYardAndName(endStation,
|
|
|
* "1号卡口-进").getChannel()); list1.setTurnoverflag("I");
|
|
|
* list1.setMassageId(messageId); landBusinesstypeListService.save(list1);
|
|
|
*
|
|
|
*
|
|
|
* //four LandBusinesstypeList list2 = new LandBusinesstypeList();
|
|
|
* list2.setAgentname(landBusinesstypeList.getAgentname());
|
|
|
* list2.setAgentno(landBusinesstypeList.getAgentno());
|
...
|
...
|
@@ -646,7 +631,7 @@ public class LandBusinesstypeListController extends BaseController { |
|
|
* list2.setAisle(bayService.findByYardAndName(endStation,
|
|
|
* "1号卡口-出").getChannel()); list2.setTurnoverflag("E");
|
|
|
* list2.setMassageId(messageId); landBusinesstypeListService.save(list2);
|
|
|
*
|
|
|
*
|
|
|
* }
|
|
|
*/
|
|
|
public static String dateTimeFormat() {
|
...
|
...
|
@@ -733,4 +718,40 @@ public class LandBusinesstypeListController extends BaseController { |
|
|
}
|
|
|
}
|
|
|
}
|
|
|
} |
|
|
\ No newline at end of file |
|
|
|
|
|
// @RequiresPermissions("land:landBusinesstypeList:view")
|
|
|
@RequestMapping(value = "tongji")
|
|
|
@ResponseBody
|
|
|
public void tongji() throws ParseException {
|
|
|
Map<String, Integer> map = new HashMap<>();
|
|
|
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
|
|
for (int i = 1; i < 31; i++) {
|
|
|
String date = null;
|
|
|
if (i < 10) {
|
|
|
date = "2019-06-0" + i + " ";
|
|
|
} else {
|
|
|
date = "2019-06-" + i + " ";
|
|
|
}
|
|
|
for (int j = 0; j < 25; j++) {
|
|
|
String time = null;
|
|
|
String time2 = null;
|
|
|
if (j < 10) {
|
|
|
time = "0" + j + ":00:00";
|
|
|
} else {
|
|
|
time = j + ":00:00";
|
|
|
}
|
|
|
if (j + 1 < 10) {
|
|
|
time2 = "0" + (j + 1) + ":00:00";
|
|
|
} else {
|
|
|
time2 = (j + 1) + ":00:00";
|
|
|
}
|
|
|
|
|
|
List<LandBusinesstypeList> list = landBusinesstypeListService.findBytime(format.parse(date + time),
|
|
|
format.parse(date + time2));
|
|
|
map.put(date + time, list.size());
|
|
|
}
|
|
|
|
|
|
}
|
|
|
System.out.println(map);
|
|
|
}
|
|
|
} |
...
|
...
|
|