修改实名客票导出

release
路明慧 2 years ago
parent b3a7616f00
commit 44dbf3bf3b
  1. 7
      dxhy-core/src/main/java/com/dxhy/core/thread/QypcsmkpExportThread.java

@ -125,6 +125,13 @@ public class QypcsmkpExportThread extends BaseThread {
String gfTaxNo = prams.getString("gfTaxNo"); String gfTaxNo = prams.getString("gfTaxNo");
String gfsh = prams.getString("gfsh"); String gfsh = prams.getString("gfsh");
prams.put("gfsh", gfsh); prams.put("gfsh", gfsh);
if (prams.get("accountPeriod") != null && !"".equals(prams.getString("accountPeriod"))) {
String accountPeriod = prams.getString("accountPeriod").substring(0,7);
prams.put("accountPeriod", accountPeriod);
log.info("accountPeriod:{}",accountPeriod);
}
List<String> gfshList = new ArrayList<>(); List<String> gfshList = new ArrayList<>();
if (!StringHelper.isBlank(gfsh)) { if (!StringHelper.isBlank(gfsh)) {
gfshList = StringHelper.stringToList(gfsh); gfshList = StringHelper.stringToList(gfsh);

Loading…
Cancel
Save