|
@@ -1455,7 +1455,7 @@ public class OrderBaseInstallCjOrWgServiceImpl implements orderBaseInstallCjOrWg
|
|
|
|
|
|
|
|
|
public Boolean getDetailCodeCj(OrderBase orderBase, OrderInstallDetail detail,
|
|
|
- String mainName, String taskno, Long synReqId) {
|
|
|
+ String mainName, String taskno, Long synReqId) throws Exception {
|
|
|
// 获取条码采集明细id
|
|
|
InstalDetailCode instalDetailCode = new InstalDetailCode();
|
|
|
instalDetailCode.setOrderNo(detail.getOrderBaseId());
|
|
@@ -1469,8 +1469,9 @@ public class OrderBaseInstallCjOrWgServiceImpl implements orderBaseInstallCjOrWg
|
|
|
continue;
|
|
|
}
|
|
|
if (StringUtils.isEmpty(code.getPath())){
|
|
|
- publicService.updateUploadTaskListInfo(synReqId,"order_install_detail_code.path未准备上传被忽略");
|
|
|
- return Boolean.FALSE;
|
|
|
+ // publicService.updateUploadTaskListInfo(synReqId,"order_install_detail_code.path未准备上传被忽略");
|
|
|
+ throw new Exception("order_install_detail_code.path未准备上传被忽略");
|
|
|
+ // return Boolean.FALSE;
|
|
|
}
|
|
|
/*// 条码上传
|
|
|
if (StringUtils.isEmpty(code.getGreeImageId())){
|