Merge branch 'master' into master_merge
This commit is contained in:
@@ -26,7 +26,12 @@ public class AsyncLuceneAppender extends AspectLogbackAsyncAppender {
|
||||
mdcPropertyMap.put("traceId", traceId);
|
||||
}
|
||||
}
|
||||
super.append(event);
|
||||
try {
|
||||
super.append(event);
|
||||
} catch (Exception e) {
|
||||
System.out.println(e.getMessage());
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -207,7 +207,7 @@ public class InbillServiceImpl {
|
||||
WQLObject.getWQLObject("ST_IVT_IOStorInv").update(mst_jo);
|
||||
|
||||
//回传MES
|
||||
if (StrUtil.equals(mst_jo.getString("bill_type"), "0001")) {
|
||||
if (StrUtil.equals(mst_jo.getString("bill_type"), "0001") || StrUtil.equals(mst_jo.getString("bill_type"), "0007")) {
|
||||
InAndOutRetrunServiceImpl bean = SpringContextHolder.getBean(InAndOutRetrunServiceImpl.class);
|
||||
|
||||
JSONObject param = new JSONObject();
|
||||
|
||||
@@ -173,7 +173,7 @@ public class InAndOutRetrunServiceImpl implements InAndOutReturnService {
|
||||
String lgort = stor_jo.getString("ext_id");
|
||||
String is_productstore = stor_jo.getString("is_productstore");
|
||||
//生产入库
|
||||
if (StrUtil.equals(bill_type, "0001")) {
|
||||
if (StrUtil.equals(bill_type, "0001") || StrUtil.equals(bill_type, "0007")) {
|
||||
//1.回传MES
|
||||
|
||||
//查询该入库单下的所有箱子回传
|
||||
@@ -1014,7 +1014,7 @@ public class InAndOutRetrunServiceImpl implements InAndOutReturnService {
|
||||
String lgort = stor_jo.getString("ext_id");
|
||||
String is_productstore = stor_jo.getString("is_productstore");
|
||||
//生产入库
|
||||
if (StrUtil.equals(bill_type, "0001")) {
|
||||
if (StrUtil.equals(bill_type, "0001") || StrUtil.equals(bill_type, "0007")) {
|
||||
//1.回传MES
|
||||
|
||||
//查询该入库单下的所有箱子回传
|
||||
|
||||
Reference in New Issue
Block a user