|
@@ -4,10 +4,8 @@ package com.sy.logic; |
|
@@ -4,10 +4,8 @@ package com.sy.logic; |
4
|
import com.alibaba.fastjson.JSON;
|
4
|
import com.alibaba.fastjson.JSON;
|
5
|
import com.alibaba.fastjson.JSONArray;
|
5
|
import com.alibaba.fastjson.JSONArray;
|
6
|
import com.sy.crossDomain.buildBarCode;
|
6
|
import com.sy.crossDomain.buildBarCode;
|
7
|
-import com.sy.model.GatherInfo;
|
|
|
8
|
-import com.sy.model.LandBusinessTypeList;
|
|
|
9
|
-import com.sy.model.LandRoadVe;
|
|
|
10
|
-import com.sy.model.RESMESSAGE;
|
7
|
+import com.sy.model.*;
|
|
|
8
|
+import com.sy.service.EnterCancelServer;
|
11
|
import com.sy.service.LandBusListService;
|
9
|
import com.sy.service.LandBusListService;
|
12
|
import com.sy.service.LandRoadVeService;
|
10
|
import com.sy.service.LandRoadVeService;
|
13
|
import com.sy.service.ResMessageService;
|
11
|
import com.sy.service.ResMessageService;
|
|
@@ -52,7 +50,10 @@ public class LogicOperation { |
|
@@ -52,7 +50,10 @@ public class LogicOperation { |
52
|
@Autowired
|
50
|
@Autowired
|
53
|
private ResMessageService resMessageService;
|
51
|
private ResMessageService resMessageService;
|
54
|
|
52
|
|
55
|
- private static LogicOperation logic;
|
53
|
+ @Autowired
|
|
|
54
|
+ private EnterCancelServer enterCancelServer;
|
|
|
55
|
+
|
|
|
56
|
+ private static LogicOperation logic = new LogicOperation();
|
56
|
|
57
|
|
57
|
//读取配置文件里的载重与称重的可控范围
|
58
|
//读取配置文件里的载重与称重的可控范围
|
58
|
private static String checkWt = FileTool.readProperties("grossWt");
|
59
|
private static String checkWt = FileTool.readProperties("grossWt");
|
|
@@ -64,8 +65,8 @@ public class LogicOperation { |
|
@@ -64,8 +65,8 @@ public class LogicOperation { |
64
|
private static String INPUTSTATION = "此车辆未做进站申请";
|
65
|
private static String INPUTSTATION = "此车辆未做进站申请";
|
65
|
private static String ENTERSTATION = "此车辆未做出站申请";
|
66
|
private static String ENTERSTATION = "此车辆未做出站申请";
|
66
|
private static String ISVALID = "二维码数据异常,请使用正确的二维码数据";
|
67
|
private static String ISVALID = "二维码数据异常,请使用正确的二维码数据";
|
67
|
- private static String ERRORWT="出起始场站的重量和进目的场站的重量不一致";
|
|
|
68
|
- private static String IEPORSE="无相对应进出场申请";
|
68
|
+ private static String ERRORWT = "出起始场站的重量和进目的场站的重量不一致";
|
|
|
69
|
+ private static String IEPORSE = "无相对应进出场申请";
|
69
|
|
70
|
|
70
|
@PostConstruct
|
71
|
@PostConstruct
|
71
|
public void init() {
|
72
|
public void init() {
|
|
@@ -73,6 +74,7 @@ public class LogicOperation { |
|
@@ -73,6 +74,7 @@ public class LogicOperation { |
73
|
logic.listService = this.listService;
|
74
|
logic.listService = this.listService;
|
74
|
logic.veService = this.veService;
|
75
|
logic.veService = this.veService;
|
75
|
logic.resMessageService = this.resMessageService;
|
76
|
logic.resMessageService = this.resMessageService;
|
|
|
77
|
+ logic.enterCancelServer = this.enterCancelServer;
|
76
|
}
|
78
|
}
|
77
|
|
79
|
|
78
|
/**
|
80
|
/**
|
|
@@ -96,7 +98,7 @@ public class LogicOperation { |
|
@@ -96,7 +98,7 @@ public class LogicOperation { |
96
|
}
|
98
|
}
|
97
|
LandBusinessTypeList list = logic.listService.selectForOne(info.getVename(), info.getBarcode(), info.getAreaid
|
99
|
LandBusinessTypeList list = logic.listService.selectForOne(info.getVename(), info.getBarcode(), info.getAreaid
|
98
|
(), info.getChnlno(), info.getIetype());
|
100
|
(), info.getChnlno(), info.getIetype());
|
99
|
- if(list == null) {
|
101
|
+ if (list == null) {
|
100
|
CommandClient.Client(info, IEPORSE);
|
102
|
CommandClient.Client(info, IEPORSE);
|
101
|
return result;
|
103
|
return result;
|
102
|
}
|
104
|
}
|
|
@@ -113,14 +115,13 @@ public class LogicOperation { |
|
@@ -113,14 +115,13 @@ public class LogicOperation { |
113
|
type = "E";
|
115
|
type = "E";
|
114
|
}
|
116
|
}
|
115
|
logger.info("=======================>>>>>>>>>>" + type + "<<<<<<<<<<========================");
|
117
|
logger.info("=======================>>>>>>>>>>" + type + "<<<<<<<<<<========================");
|
116
|
- goodsWt = GoodsWt(list.getMasterList(), type);
|
118
|
+ goodsWt = logic.GoodsWt(list.getMasterList(), type);
|
117
|
}
|
119
|
}
|
118
|
//车自重
|
120
|
//车自重
|
119
|
double selfWt = Double.parseDouble(ve.getSelfWt());
|
121
|
double selfWt = Double.parseDouble(ve.getSelfWt());
|
120
|
|
122
|
|
121
|
|
123
|
|
122
|
-
|
|
|
123
|
- if (!logic.checkFlag(growssWt, (selfWt+goodsWt))) {
|
124
|
+ if (!logic.checkFlag(growssWt, (selfWt + goodsWt))) {
|
124
|
List<LandBusinessTypeList> typeLists = logic.listService.selectMessageId(list.getMassageId());
|
125
|
List<LandBusinessTypeList> typeLists = logic.listService.selectMessageId(list.getMassageId());
|
125
|
for (int i = 0; i < typeLists.size(); i++) {
|
126
|
for (int i = 0; i < typeLists.size(); i++) {
|
126
|
|
127
|
|
|
@@ -133,14 +134,14 @@ public class LogicOperation { |
|
@@ -133,14 +134,14 @@ public class LogicOperation { |
133
|
}
|
134
|
}
|
134
|
}
|
135
|
}
|
135
|
|
136
|
|
136
|
- if ("出口送货".equals(list.getBusinesstype())){
|
137
|
+ if ("出口送货".equals(list.getBusinesstype())) {
|
137
|
if ("E".equals(list.getTurnoverflag())) {
|
138
|
if ("E".equals(list.getTurnoverflag())) {
|
138
|
if ("I".equals(typeLists.get(i).getTurnoverflag()) && typeLists.get(i).getContrastflag() != null) {
|
139
|
if ("I".equals(typeLists.get(i).getTurnoverflag()) && typeLists.get(i).getContrastflag() != null) {
|
139
|
- if("1".equals(list.getIsfull())){
|
|
|
140
|
- if(list.getMasterList().length()>0){
|
|
|
141
|
- selfWt = typeLists.get(i).getAislewt()-Double.parseDouble(typeLists.get(i).getRemark());
|
|
|
142
|
- }else {
|
|
|
143
|
- selfWt=growssWt;
|
140
|
+ if ("1".equals(list.getIsfull())) {
|
|
|
141
|
+ if (list.getMasterList().length() > 0) {
|
|
|
142
|
+ selfWt = typeLists.get(i).getAislewt() - Double.parseDouble(typeLists.get(i).getRemark());
|
|
|
143
|
+ } else {
|
|
|
144
|
+ selfWt = growssWt;
|
144
|
}
|
145
|
}
|
145
|
}
|
146
|
}
|
146
|
break;
|
147
|
break;
|
|
@@ -148,8 +149,8 @@ public class LogicOperation { |
|
@@ -148,8 +149,8 @@ public class LogicOperation { |
148
|
}
|
149
|
}
|
149
|
}
|
150
|
}
|
150
|
|
151
|
|
151
|
- if(list.getBusinesstype().endsWith("流转")){
|
|
|
152
|
- if(list.getMasterList().length()>0){
|
152
|
+ if (list.getBusinesstype().endsWith("业务")) {
|
|
|
153
|
+ if (list.getMasterList().length() > 0) {
|
153
|
if ("E".equals(list.getTurnoverflag())) {
|
154
|
if ("E".equals(list.getTurnoverflag())) {
|
154
|
if ("I".equals(typeLists.get(i).getTurnoverflag()) && typeLists.get(i).getContrastflag() != null) {
|
155
|
if ("I".equals(typeLists.get(i).getTurnoverflag()) && typeLists.get(i).getContrastflag() != null) {
|
155
|
selfWt = typeLists.get(i).getAislewt() > 1 ? typeLists.get(i).getAislewt() : selfWt;
|
156
|
selfWt = typeLists.get(i).getAislewt() > 1 ? typeLists.get(i).getAislewt() : selfWt;
|
|
@@ -158,7 +159,7 @@ public class LogicOperation { |
|
@@ -158,7 +159,7 @@ public class LogicOperation { |
158
|
}
|
159
|
}
|
159
|
if ("I".equals(list.getTurnoverflag())) {
|
160
|
if ("I".equals(list.getTurnoverflag())) {
|
160
|
if ("E".equals(typeLists.get(i).getTurnoverflag()) && typeLists.get(i).getContrastflag() != null) {
|
161
|
if ("E".equals(typeLists.get(i).getTurnoverflag()) && typeLists.get(i).getContrastflag() != null) {
|
161
|
- if(!logic.checkFlag(growssWt,typeLists.get(i).getAislewt())){
|
162
|
+ if (!logic.checkFlag(growssWt, typeLists.get(i).getAislewt())) {
|
162
|
logger.info("-------->>>>>>>>出起始场站的重量和进目的场站的总量不一致<<<<<<<<--------");
|
163
|
logger.info("-------->>>>>>>>出起始场站的重量和进目的场站的总量不一致<<<<<<<<--------");
|
163
|
CommandClient.Client(info, ERRORWT);
|
164
|
CommandClient.Client(info, ERRORWT);
|
164
|
return result;
|
165
|
return result;
|
|
@@ -167,11 +168,10 @@ public class LogicOperation { |
|
@@ -167,11 +168,10 @@ public class LogicOperation { |
167
|
}
|
168
|
}
|
168
|
}
|
169
|
}
|
169
|
}
|
170
|
}
|
170
|
-
|
|
|
171
|
}
|
171
|
}
|
172
|
}
|
172
|
}
|
173
|
|
173
|
|
174
|
- boolean check = checkResult(growssWt, selfWt, goodsWt);
|
174
|
+ boolean check = logic.checkResult(growssWt, selfWt, goodsWt);
|
175
|
boolean checkMainfest = logic.checkManifest(list.getMasterList());
|
175
|
boolean checkMainfest = logic.checkManifest(list.getMasterList());
|
176
|
boolean checkResult = false;
|
176
|
boolean checkResult = false;
|
177
|
|
177
|
|
|
@@ -187,25 +187,37 @@ public class LogicOperation { |
|
@@ -187,25 +187,37 @@ public class LogicOperation { |
187
|
checkResult = true;
|
187
|
checkResult = true;
|
188
|
}
|
188
|
}
|
189
|
}
|
189
|
}
|
190
|
- logger.info("重量校验结果:"+check+",运单校验结果:"+checkMainfest+",最终校验结果:"+checkResult);
|
190
|
+ logger.info("重量校验结果:" + check + ",运单校验结果:" + checkMainfest + ",最终校验结果:" + checkResult);
|
191
|
|
191
|
|
192
|
- if (sendBw(info, checkResult)) {
|
192
|
+ if (logic.sendBw(info, checkResult)) {
|
193
|
if ("I".equals(info.getIetype())) {
|
193
|
if ("I".equals(info.getIetype())) {
|
194
|
- System.out.println(info.getGrosswt().doubleValue());
|
194
|
+ // LandRoadVe veName = logic.veService.selectByFrameNo(vaName);
|
195
|
list.setAislewt(info.getGrosswt().doubleValue());
|
195
|
list.setAislewt(info.getGrosswt().doubleValue());
|
196
|
list.setUpdateDate(new Date());
|
196
|
list.setUpdateDate(new Date());
|
197
|
- list.setRemark(String.format("%.1f",goodsWt));
|
197
|
+ list.setRemark(String.format("%.1f", goodsWt));
|
|
|
198
|
+ list.setRemark2(ve.getSelfWt());
|
198
|
list.setContrastflag("已进站");
|
199
|
list.setContrastflag("已进站");
|
199
|
logic.checkData(list);
|
200
|
logic.checkData(list);
|
200
|
} else {
|
201
|
} else {
|
|
|
202
|
+ List<LandBusinessTypeList> typeLists = logic.listService.selectMessageId(list.getMassageId());
|
|
|
203
|
+ //进出相差重量
|
|
|
204
|
+ double diffVal = 0;
|
|
|
205
|
+ for (int i = 0; i < typeLists.size(); i++) {
|
|
|
206
|
+ if ("I".equals(typeLists.get(i).getTurnoverflag()) && typeLists.get(i).getEndstation().equals(list.getEndstation())) {
|
|
|
207
|
+ diffVal = typeLists.get(i).getAislewt() - growssWt;
|
|
|
208
|
+ break;
|
|
|
209
|
+ }
|
|
|
210
|
+ }
|
|
|
211
|
+ LandRoadVe veName = logic.veService.selectByFrameNo(vaName);
|
201
|
list.setAislewt(info.getGrosswt().doubleValue());
|
212
|
list.setAislewt(info.getGrosswt().doubleValue());
|
202
|
list.setUpdateDate(new Date());
|
213
|
list.setUpdateDate(new Date());
|
203
|
- list.setRemark(String.format("%.1f",goodsWt));
|
214
|
+ list.setRemark(String.format("%.1f", goodsWt));
|
|
|
215
|
+ list.setRemark1(String.format("%.1f", diffVal));
|
|
|
216
|
+ list.setRemark2(veName.getSelfWt());
|
204
|
list.setContrastflag("已出站");
|
217
|
list.setContrastflag("已出站");
|
205
|
logic.checkData(list);
|
218
|
logic.checkData(list);
|
206
|
}
|
219
|
}
|
207
|
int row = logic.listService.updateById(list);
|
220
|
int row = logic.listService.updateById(list);
|
208
|
- System.out.println(row);
|
|
|
209
|
List<LandBusinessTypeList> businessTypeLists = logic.listService.selectByBarcode(info.getBarcode());
|
221
|
List<LandBusinessTypeList> businessTypeLists = logic.listService.selectByBarcode(info.getBarcode());
|
210
|
int count = 0;
|
222
|
int count = 0;
|
211
|
for (int i = 0; i < businessTypeLists.size(); i++) {
|
223
|
for (int i = 0; i < businessTypeLists.size(); i++) {
|
|
@@ -215,6 +227,7 @@ public class LogicOperation { |
|
@@ -215,6 +227,7 @@ public class LogicOperation { |
215
|
}
|
227
|
}
|
216
|
}
|
228
|
}
|
217
|
if (list.getBusinesstype().indexOf("业务") > 0) {
|
229
|
if (list.getBusinesstype().indexOf("业务") > 0) {
|
|
|
230
|
+ logic.inOrUpEnterCancel(list);
|
218
|
if (count == 4) {
|
231
|
if (count == 4) {
|
219
|
buildBarCode.cancleBarCode(vaName);
|
232
|
buildBarCode.cancleBarCode(vaName);
|
220
|
logic.listService.updateByBarcode(info.getBarcode());
|
233
|
logic.listService.updateByBarcode(info.getBarcode());
|
|
@@ -255,7 +268,7 @@ public class LogicOperation { |
|
@@ -255,7 +268,7 @@ public class LogicOperation { |
255
|
* @Param goodsWt 货物总重
|
268
|
* @Param goodsWt 货物总重
|
256
|
* @Result 获取运单重量
|
269
|
* @Result 获取运单重量
|
257
|
*/
|
270
|
*/
|
258
|
- public static boolean checkResult(double grossWt, double wt, double goodsWt) {
|
271
|
+ public boolean checkResult(double grossWt, double wt, double goodsWt) {
|
259
|
DecimalFormat df = new DecimalFormat("0.00");
|
272
|
DecimalFormat df = new DecimalFormat("0.00");
|
260
|
boolean flag = false;
|
273
|
boolean flag = false;
|
261
|
double result = 0.0;
|
274
|
double result = 0.0;
|
|
@@ -275,90 +288,95 @@ public class LogicOperation { |
|
@@ -275,90 +288,95 @@ public class LogicOperation { |
275
|
* @Param ietype 进出标志
|
288
|
* @Param ietype 进出标志
|
276
|
* 获取货物总重
|
289
|
* 获取货物总重
|
277
|
*/
|
290
|
*/
|
278
|
- public static double GoodsWt(String mainifast, String ietype) {
|
291
|
+ public double GoodsWt(String mainifast, String ietype) {
|
279
|
Double sum = 0.0;
|
292
|
Double sum = 0.0;
|
280
|
if (mainifast.length() > 0) {
|
293
|
if (mainifast.length() > 0) {
|
281
|
String[] mainifastList = mainifast.split(",");
|
294
|
String[] mainifastList = mainifast.split(",");
|
282
|
for (String mainBill : mainifastList) {
|
295
|
for (String mainBill : mainifastList) {
|
283
|
- sum = sum += getGrossWt(mainBill, ietype);
|
296
|
+ sum += getGrossWt(mainBill, ietype);
|
284
|
}
|
297
|
}
|
285
|
}
|
298
|
}
|
286
|
return sum;
|
299
|
return sum;
|
287
|
}
|
300
|
}
|
288
|
|
301
|
|
289
|
/**
|
302
|
/**
|
290
|
- * 查询运单是否全部放行
|
|
|
291
|
- *
|
|
|
292
|
- * @param manifestList
|
|
|
293
|
- * @return
|
|
|
294
|
- */
|
|
|
295
|
- public boolean checkManifest(String manifestList) {
|
|
|
296
|
- if (manifestList.length() < 1) return false;
|
|
|
297
|
- manifestList = manifestList.replace("-", "");
|
|
|
298
|
- String[] maifest = manifestList.split(",");
|
|
|
299
|
- boolean flag = false;
|
|
|
300
|
- int count = 0;
|
|
|
301
|
- for (int i = 0; i < maifest.length; i++) {
|
|
|
302
|
- RESMESSAGE resmessage = logic.resMessageService.selectByManifest(maifest[i]);
|
|
|
303
|
- if(resmessage !=null){
|
|
|
304
|
- if ("11".equals(resmessage.getResponsecode())) {
|
|
|
305
|
- count++;
|
|
|
306
|
- }
|
|
|
307
|
- }
|
|
|
308
|
- }
|
|
|
309
|
- if (count == maifest.length) {
|
|
|
310
|
- flag = true;
|
|
|
311
|
- }
|
|
|
312
|
- return flag;
|
|
|
313
|
- }
|
|
|
314
|
-
|
|
|
315
|
- /**
|
|
|
316
|
* @Param waybill 主单号
|
303
|
* @Param waybill 主单号
|
317
|
* @Param imp 进出港标识
|
304
|
* @Param imp 进出港标识
|
318
|
* @Result 获取运单重量
|
305
|
* @Result 获取运单重量
|
319
|
*/
|
306
|
*/
|
320
|
- public static double getGrossWt(String waybill, String imp) {
|
|
|
321
|
- // logger.info("进入获取重量action");
|
307
|
+ public double getGrossWt(String waybill, String imp) {
|
|
|
308
|
+ logger.info("进入获取重量action");
|
|
|
309
|
+ if (!(waybill.indexOf("-") != -1)) {
|
|
|
310
|
+ waybill = waybill.substring(0, 3) + "-" + waybill.substring(3);
|
|
|
311
|
+ }
|
322
|
String url = "http://10.50.3.64:8080/tj/orig/orig?waybill=" + waybill + "&imp=" + imp;
|
312
|
String url = "http://10.50.3.64:8080/tj/orig/orig?waybill=" + waybill + "&imp=" + imp;
|
323
|
- // String url = "http://tjfx.15miaoo.com:8003/tj/orig/orig=" + waybill + "&imp=" + imp;
|
313
|
+ // String url = "http://tjfx.15miaoo.com:8003/tj/orig/orig?waybill=" + waybill + "&imp=" + imp;
|
324
|
StringBuilder json = new StringBuilder();
|
314
|
StringBuilder json = new StringBuilder();
|
325
|
Map map = null;
|
315
|
Map map = null;
|
326
|
double bg = 0;
|
316
|
double bg = 0;
|
327
|
try {
|
317
|
try {
|
328
|
URL Url = new URL(url);
|
318
|
URL Url = new URL(url);
|
329
|
URLConnection yc = Url.openConnection();
|
319
|
URLConnection yc = Url.openConnection();
|
330
|
- BufferedReader in = new BufferedReader(new InputStreamReader(yc.getInputStream()));
|
320
|
+ BufferedReader in = new BufferedReader(new InputStreamReader(yc.getInputStream(), "utf-8"));
|
331
|
String inputLine = null;
|
321
|
String inputLine = null;
|
332
|
while ((inputLine = in.readLine()) != null) {
|
322
|
while ((inputLine = in.readLine()) != null) {
|
333
|
json.append(inputLine);
|
323
|
json.append(inputLine);
|
334
|
}
|
324
|
}
|
335
|
- // logger.info("返回数据:" + json);
|
325
|
+ logger.info("返回数据:" + json);
|
336
|
JSONArray array = JSONArray.parseArray(json.toString());
|
326
|
JSONArray array = JSONArray.parseArray(json.toString());
|
337
|
for (int i = 0; i < array.size(); i++) {
|
327
|
for (int i = 0; i < array.size(); i++) {
|
338
|
map = JSON.parseObject(array.getString(i));
|
328
|
map = JSON.parseObject(array.getString(i));
|
339
|
- System.out.println(map);
|
|
|
340
|
- if(map.containsKey("receiptinformation")){
|
329
|
+ if (map.containsKey("receiptinformation")) {
|
341
|
if (map.get("receiptinformation").toString().startsWith("41301") || map.get("receiptinformation")
|
330
|
if (map.get("receiptinformation").toString().startsWith("41301") || map.get("receiptinformation")
|
342
|
.toString().startsWith("41106") || map.get("receiptinformation")
|
331
|
.toString().startsWith("41106") || map.get("receiptinformation")
|
343
|
.toString().startsWith("31301") || map.get("receiptinformation")
|
332
|
.toString().startsWith("31301") || map.get("receiptinformation")
|
344
|
.toString().startsWith("31106") || map.get("receiptinformation")
|
333
|
.toString().startsWith("31106") || map.get("receiptinformation")
|
345
|
- .toString().indexOf("提运单放行")!=-1) {
|
334
|
+ .toString().indexOf("提运单放行") != -1) {
|
|
|
335
|
+ logger.info(map);
|
346
|
bg = Double.parseDouble((String) map.get("totalweight"));
|
336
|
bg = Double.parseDouble((String) map.get("totalweight"));
|
347
|
logger.info("for循环取重量:" + bg);
|
337
|
logger.info("for循环取重量:" + bg);
|
348
|
return bg;
|
338
|
return bg;
|
349
|
}
|
339
|
}
|
350
|
}
|
340
|
}
|
351
|
}
|
341
|
}
|
352
|
- // logger.info("访问返回的数据重量:" + bg);
|
342
|
+ logger.info("访问返回的数据重量:" + bg);
|
353
|
in.close();
|
343
|
in.close();
|
354
|
} catch (MalformedURLException e) {
|
344
|
} catch (MalformedURLException e) {
|
355
|
- // logger.info(e.toString());
|
345
|
+ e.printStackTrace();
|
|
|
346
|
+ logger.error(e);
|
356
|
} catch (IOException e) {
|
347
|
} catch (IOException e) {
|
357
|
- // logger.info(e.toString());
|
348
|
+ e.printStackTrace();
|
|
|
349
|
+ logger.error(e);
|
358
|
}
|
350
|
}
|
359
|
return bg;
|
351
|
return bg;
|
360
|
}
|
352
|
}
|
361
|
|
353
|
|
|
|
354
|
+ /**
|
|
|
355
|
+ * 查询运单是否全部放行
|
|
|
356
|
+ *
|
|
|
357
|
+ * @param manifestList
|
|
|
358
|
+ * @return
|
|
|
359
|
+ */
|
|
|
360
|
+ public boolean checkManifest(String manifestList) {
|
|
|
361
|
+ if (manifestList.length() < 1) return false;
|
|
|
362
|
+ manifestList = manifestList.replace("-", "");
|
|
|
363
|
+ String[] maifest = manifestList.split(",");
|
|
|
364
|
+ boolean flag = false;
|
|
|
365
|
+ int count = 0;
|
|
|
366
|
+ for (int i = 0; i < maifest.length; i++) {
|
|
|
367
|
+ RESMESSAGE resmessage = logic.resMessageService.selectByManifest(maifest[i]);
|
|
|
368
|
+ if (resmessage != null) {
|
|
|
369
|
+ if ("11".equals(resmessage.getResponsecode())) {
|
|
|
370
|
+ count++;
|
|
|
371
|
+ }
|
|
|
372
|
+ }
|
|
|
373
|
+ }
|
|
|
374
|
+ if (count == maifest.length) {
|
|
|
375
|
+ flag = true;
|
|
|
376
|
+ }
|
|
|
377
|
+ return flag;
|
|
|
378
|
+ }
|
|
|
379
|
+
|
362
|
|
380
|
|
363
|
/**
|
381
|
/**
|
364
|
* 给码头发送卡口数据
|
382
|
* 给码头发送卡口数据
|
|
@@ -411,7 +429,7 @@ public class LogicOperation { |
|
@@ -411,7 +429,7 @@ public class LogicOperation { |
411
|
* 校验重量并发送报文
|
429
|
* 校验重量并发送报文
|
412
|
*/
|
430
|
*/
|
413
|
|
431
|
|
414
|
- public static boolean sendBw(GatherInfo info, boolean check) {
|
432
|
+ public boolean sendBw(GatherInfo info, boolean check) {
|
415
|
boolean flag = false;
|
433
|
boolean flag = false;
|
416
|
if (check) {
|
434
|
if (check) {
|
417
|
CommandClient.Client(info, PERMITTHOUGH);
|
435
|
CommandClient.Client(info, PERMITTHOUGH);
|
|
@@ -448,5 +466,55 @@ public class LogicOperation { |
|
@@ -448,5 +466,55 @@ public class LogicOperation { |
448
|
return flag;
|
466
|
return flag;
|
449
|
}
|
467
|
}
|
450
|
|
468
|
|
|
|
469
|
+ /**
|
|
|
470
|
+ * 生成或者更新货物冻结标识
|
|
|
471
|
+ *
|
|
|
472
|
+ * @param landBusinessTypeList
|
|
|
473
|
+ */
|
|
|
474
|
+ public void inOrUpEnterCancel(LandBusinessTypeList landBusinessTypeList) {
|
|
|
475
|
+ if (landBusinessTypeList.getMasterList().length() < 1) return;
|
|
|
476
|
+ String[] list = landBusinessTypeList.getMasterList().split(",");
|
|
|
477
|
+ String flag = null;
|
|
|
478
|
+ for (int i = 0; i < list.length; i++) {
|
|
|
479
|
+ if("调拨业务".equals(landBusinessTypeList.getBusinesstype())){
|
|
|
480
|
+ flag = "E";
|
|
|
481
|
+ }else {
|
|
|
482
|
+ flag = "I";
|
|
|
483
|
+ }
|
|
|
484
|
+ double wt = getGrossWt(list[i],flag);
|
|
|
485
|
+
|
|
|
486
|
+ ENTERCANCCEL entercanccel = logic.enterCancelServer.selectByManifest(list[i]);
|
|
|
487
|
+ if (entercanccel != null) {
|
|
|
488
|
+ if ("0".equals(entercanccel.getIsfreeze())) {
|
|
|
489
|
+ entercanccel.setIsfreeze("1");
|
|
|
490
|
+ entercanccel.setEndport(landBusinessTypeList.getEndstation());
|
|
|
491
|
+ entercanccel.setUpdateBy(landBusinessTypeList.getCreateBy());
|
|
|
492
|
+ entercanccel.setUpdateTime(new Date());
|
|
|
493
|
+ logic.enterCancelServer.updateByPermaryKey(entercanccel);
|
|
|
494
|
+ }
|
|
|
495
|
+ }else {
|
|
|
496
|
+ if("E".equals(landBusinessTypeList.getTurnoverflag())){
|
|
|
497
|
+ ENTERCANCCEL canccel = new ENTERCANCCEL();
|
|
|
498
|
+ canccel.setIsfreeze("0");
|
|
|
499
|
+ canccel.setVename(landBusinessTypeList.getTrailerFrameNo());
|
|
|
500
|
+ canccel.setId(String.valueOf(System.currentTimeMillis()));
|
|
|
501
|
+ canccel.setVeCompanyName(landBusinessTypeList.getAgentno());
|
|
|
502
|
+ canccel.setBusinesstype(landBusinessTypeList.getBusinesstype());
|
|
|
503
|
+ canccel.setManifest(list[i]);
|
|
|
504
|
+ canccel.setAgentname(landBusinessTypeList.getAgentname());
|
|
|
505
|
+ canccel.setStartport(landBusinessTypeList.getEndstation());
|
|
|
506
|
+ canccel.setGrosswt(landBusinessTypeList.getAislewt());
|
|
|
507
|
+ canccel.setCreateBy(landBusinessTypeList.getCreateBy());
|
|
|
508
|
+ canccel.setCreateTime(new Date());
|
|
|
509
|
+ canccel.setUpdateBy(landBusinessTypeList.getCreateBy());
|
|
|
510
|
+ canccel.setUpdateTime(new Date());
|
|
|
511
|
+ canccel.setWeight(wt);
|
|
|
512
|
+ logic.enterCancelServer.insertEntry(canccel);
|
|
|
513
|
+ }
|
|
|
514
|
+
|
|
|
515
|
+ }
|
|
|
516
|
+ }
|
|
|
517
|
+ }
|
|
|
518
|
+
|
451
|
|
519
|
|
452
|
} |
520
|
} |