...
|
...
|
@@ -66,7 +66,7 @@ public class CarController extends AbsController { |
|
|
Map<String, Object> maps = new HashMap<String, Object>();
|
|
|
maps.put("carNo", carNo);
|
|
|
maps.put("stationArea", stationArea);
|
|
|
AirPortCar car = AirPortCar.dao.searchFirst(maps);
|
|
|
AirPortCar car = AirPortCar.dao.searchFirst1(maps);
|
|
|
AirPort port = AirPort.dao.free(car.getStationArea(), car.getIsPickup());
|
|
|
if (port == null) {
|
|
|
return false;
|
...
|
...
|
@@ -92,7 +92,8 @@ public class CarController extends AbsController { |
|
|
Map<String, Object> maps = new HashMap<String, Object>();
|
|
|
maps.put("carNo", carNo);
|
|
|
maps.put("stationArea", stationArea);
|
|
|
AirPortCar car = AirPortCar.dao.searchFirst(maps);
|
|
|
AirPortCar.dao.update(carNo);
|
|
|
AirPortCar car = AirPortCar.dao.searchFirst1(maps);
|
|
|
car.setStatus(AirPortCarStatus.LEFT.ordinal());
|
|
|
car.setLeaveTime(new Date());
|
|
|
if (car.update()) {
|
...
|
...
|
@@ -107,22 +108,22 @@ public class CarController extends AbsController { |
|
|
String gateTypeCode = getPara("stationCode");
|
|
|
StationGateType gateType = new StationGateType(gateTypeCode);
|
|
|
Log.getLog(getClass()).error("gateType-->" + gateType.toString());
|
|
|
|
|
|
String stationArea = gateType.getAreaCode();// 货站区域代码
|
|
|
String carNo = getPara("carNo");// 车牌号
|
|
|
|
|
|
Boolean isPickup = getParaToBoolean("isPickup");
|
|
|
System.out.println(isPickup);
|
|
|
if (StrKit.notBlank(carNo)) {
|
|
|
carNo = carNo.toUpperCase();
|
|
|
}
|
|
|
|
|
|
GateType type = gateType.getType();// 0 进场;1 出场;
|
|
|
|
|
|
Response ret = new Response(CODE_FAILURE);
|
|
|
if (!StrKit.isBlank(stationArea)) {
|
|
|
if (!StrKit.isBlank(carNo)) {
|
|
|
if (type != GateType.ERROR) {
|
|
|
ret = dealCar(stationArea, carNo, type);
|
|
|
ret = dealCar(stationArea, carNo, type, isPickup);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
ret.setMsg("无法判断进出场类型");
|
|
|
}
|
|
|
} else {
|
...
|
...
|
@@ -137,55 +138,88 @@ public class CarController extends AbsController { |
|
|
/**
|
|
|
* 处理卡口数据
|
|
|
*
|
|
|
* @param stationArea
|
|
|
* 货站区域代码
|
|
|
* @param carNo
|
|
|
* 车牌号
|
|
|
* @param type
|
|
|
* 进出场类型 {@link GateType}
|
|
|
* @param stationArea 货站区域代码
|
|
|
* @param carNo 车牌号
|
|
|
* @param type 进出场类型 {@link GateType}
|
|
|
*/
|
|
|
private Response dealCar(String stationArea, String carNo, GateType type) {
|
|
|
private Response dealCar(String stationArea, String carNo, GateType type, boolean isPickup) {
|
|
|
Response ret = new Response(CODE_FAILURE);
|
|
|
Map<String, Object> maps = new HashMap<String, Object>();
|
|
|
maps.put("carNo", carNo);
|
|
|
maps.put("stationArea", stationArea);
|
|
|
AirPortCar old = AirPortCar.dao.searchFirst(maps);
|
|
|
AirPortCar old = AirPortCar.dao.searchFirst1(maps);
|
|
|
System.out.println(old);
|
|
|
if (old != null) {
|
|
|
AirPortCarStatus status = AirPortCarStatus.valueOf(old.getStatus());
|
|
|
if (AirPortCarStatus.APPLY == status && type == GateType.JIN) {
|
|
|
// 待进场状态,可进场
|
|
|
old.setStatus(AirPortCarStatus.ENTER.ordinal());
|
|
|
if (enter(carNo, stationArea)) {
|
|
|
// 进场成功
|
|
|
ret = new Response(CODE_SUCCESS);
|
|
|
ret.setMsg("进场成功");
|
|
|
old = AirPortCar.dao.searchFirst(maps);
|
|
|
LedKit.sendBigLedScreen(LedKit.bigLedText(old.getPortNo(), old.getIsPickup(), carNo, stationArea),
|
|
|
stationArea);
|
|
|
LedKit.nextCar(stationArea, old.getPortNo(), old.getIsPickup());
|
|
|
} else {
|
|
|
ret.setMsg("进场失败");
|
|
|
}
|
|
|
} else if (AirPortCarStatus.ENTER == status && type == GateType.CHU) {
|
|
|
// 已进场状态,可出场
|
|
|
if (exit(carNo, stationArea)) {
|
|
|
// 成功出场
|
|
|
ret = new Response(CODE_SUCCESS);
|
|
|
ret.setMsg("出场成功");
|
|
|
LedKit.nextCar(stationArea, old.getPortNo(), old.getIsPickup());
|
|
|
// 查询最近一条数据状态如果是进场状态
|
|
|
if (AirPortCarStatus.ENTER == status && type == GateType.JIN) {
|
|
|
ret.setMsg("无法重复进场");
|
|
|
//查询最近插入的数据离场出去判断离场
|
|
|
}else if(AirPortCarStatus.LEFT == status && type == GateType.CHU){
|
|
|
ret.setMsg("无法重复出场");
|
|
|
}else{
|
|
|
//如果已经来过车辆 重新输入
|
|
|
//如果是进场插入最新的数据 并改变数值
|
|
|
if (AirPortCarStatus.LEFT == status && type == GateType.JIN) {
|
|
|
AirPortCar model = new AirPortCar();
|
|
|
System.out.println(isPickup);
|
|
|
model.setIsPickup(isPickup);
|
|
|
model.setCarNo(carNo);
|
|
|
model.setStationArea(stationArea);
|
|
|
if (model.save()) {
|
|
|
} else {
|
|
|
ret.setMsg("数据录入错误");
|
|
|
}
|
|
|
}
|
|
|
//重新赋值新的的值
|
|
|
old = AirPortCar.dao.searchFirst1(maps);
|
|
|
status = AirPortCarStatus.valueOf(old.getStatus());
|
|
|
if (AirPortCarStatus.APPLY == status && type == GateType.JIN) {
|
|
|
// 待进场状态,可进场
|
|
|
old.setStatus(AirPortCarStatus.ENTER.ordinal());
|
|
|
if (enter(carNo, stationArea)) {
|
|
|
// 进场成功
|
|
|
ret = new Response(CODE_SUCCESS);
|
|
|
ret.setMsg("进场成功");
|
|
|
old = AirPortCar.dao.searchFirst1(maps);
|
|
|
LedKit.sendBigLedScreen(
|
|
|
LedKit.bigLedText(old.getPortNo(), old.getIsPickup(), carNo, stationArea), stationArea);
|
|
|
LedKit.nextCar(stationArea, old.getPortNo(), old.getIsPickup());
|
|
|
} else {
|
|
|
ret.setMsg("进场失败");
|
|
|
}
|
|
|
} else if (AirPortCarStatus.ENTER == status && type == GateType.CHU) {
|
|
|
// 已进场状态,可出场
|
|
|
if (exit(carNo, stationArea)) {
|
|
|
// 成功出场
|
|
|
ret = new Response(CODE_SUCCESS);
|
|
|
ret.setMsg("出场成功");
|
|
|
LedKit.nextCar(stationArea, old.getPortNo(), old.getIsPickup());
|
|
|
} else {
|
|
|
// 出场失败
|
|
|
ret.setMsg("出场失败");
|
|
|
}
|
|
|
}
|
|
|
LedKit.recovery();
|
|
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
//如果为空插入数据
|
|
|
if (type == GateType.JIN) {
|
|
|
AirPortCar model = new AirPortCar();
|
|
|
System.out.println(isPickup);
|
|
|
model.setIsPickup(isPickup);
|
|
|
model.setCarNo(carNo);
|
|
|
model.setStationArea(stationArea);
|
|
|
if (model.save()) {
|
|
|
ret = dealCar(stationArea, carNo, type, isPickup);
|
|
|
} else {
|
|
|
// 出场失败
|
|
|
ret.setMsg("出场失败");
|
|
|
ret.setMsg("数据录入错误");
|
|
|
}
|
|
|
} else {
|
|
|
ret.setMsg("无法重复出场或者进场");
|
|
|
}else {
|
|
|
ret.setMsg("本车未曾进站");
|
|
|
}
|
|
|
|
|
|
LedKit.recovery();
|
|
|
|
|
|
} else {
|
|
|
// 货代没有提前录入进场数据,无法分配码头
|
|
|
ret.setMsg("货代没有提前录入进场数据,无法分配码头");
|
|
|
}
|
|
|
|
|
|
return ret;
|
...
|
...
|
|