ariesy 认证人为空的 需要统一为admin

release
yefei 2 years ago
parent da606f4743
commit e4b6913e0d
  1. 4
      dxhy-customs/src/main/java/com/dxhy/customs/service/impl/CustomsRecordDkrzServiceImpl.java
  2. 4
      dxhy-export-domestic/src/main/java/com/dxhy/domestic/service/ckzrz/impl/DomesticExportCustomsCkServiceImpl.java
  3. 5
      dxhy-export-domestic/src/main/java/com/dxhy/domestic/service/customsrefund/impl/DomesticCustomsRefundServiceImpl.java
  4. 4
      dxhy-export-domestic/src/main/java/com/dxhy/domestic/service/drawback/impl/DomesticInvoiceDrawbackServiceImpl.java

@ -1226,6 +1226,10 @@ public class CustomsRecordDkrzServiceImpl extends MpBaseServiceImpl<CustomsRecor
String cxrzStatus = (String)map.get("cxrzStatus");
String bdkStatus = (String)map.get("bdkStatus");
String rzhYesorno = (String)map.get("rzhYesorno");
String confirmUser = (String)map.get("confirmUser");
if(StringUtils.isEmpty(confirmUser)){
map.put("confirmUser","admin");
}
map.put("xh", String
.valueOf((((page.getCurrent() == 0 ? 1 : page.getCurrent()) - 1) * page.getSize()) + i + 1));

@ -558,6 +558,10 @@ public class DomesticExportCustomsCkServiceImpl extends ServiceImpl<DomesticExpo
String cxrzStatus = (String)map.get("cxrzStatus");
String bdkStatus = (String)map.get("bdkStatus");
String rzhYesorno = (String)map.get("rzhYesorno");
String confirmUser = (String)map.get("confirmUser");
if(StringUtils.isEmpty(confirmUser)){
map.put("confirmUser","admin");
}
map.put("xh",
String.valueOf((((page.getCurrent() == 0 ? 1 : page.getCurrent()) - 1) * page.getSize()) + i + 1));

@ -515,6 +515,11 @@ public class DomesticCustomsRefundServiceImpl extends MpBaseServiceImpl<Domestic
map.put("inAccountStatus","未入账");
}
String confirmUser = (String)map.get("confirmUser");
if(org.apache.commons.lang.StringUtils.isEmpty(confirmUser)){
map.put("confirmUser","admin");
}
if (map.get("fillInDate") != null) {
map.put("fillInDate", map.get("fillInDate"));
}

@ -373,6 +373,10 @@ public class DomesticInvoiceDrawbackServiceImpl implements DomesticInvoiceDrawba
}else {
result.setInAccountStatus("未入账");
}
String authenticationPerson = result.getAuthenticationPerson();
if(StringUtils.isEmpty(authenticationPerson)){
result.setAuthenticationPerson("admin");
}
});
if (dto.getCurrentPage() == 1) {
QuerySummaryDTO querySummaryDTO = domesticRecordInvoiceDao.selectTotalAmountByAuthenticationCheck(dto);

Loading…
Cancel
Save