|
@@ -1,10 +1,10 @@
|
|
|
package com.lantone.qc.kernel.catalogue.firstpagerecord;
|
|
|
|
|
|
import com.lantone.qc.kernel.catalogue.QCCatalogue;
|
|
|
-import com.lantone.qc.kernel.util.CatalogueUtil;
|
|
|
import com.lantone.qc.pub.Content;
|
|
|
import com.lantone.qc.pub.model.InputInfo;
|
|
|
import com.lantone.qc.pub.model.OutputInfo;
|
|
|
+import com.lantone.qc.pub.util.StringUtil;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
import java.util.Map;
|
|
@@ -18,14 +18,16 @@ import java.util.Map;
|
|
|
@Component
|
|
|
public class FIRP0213 extends QCCatalogue {
|
|
|
public void start(InputInfo inputInfo, OutputInfo outputInfo) {
|
|
|
+ /**
|
|
|
+ * 跟任燕青确认,/ 算是填写
|
|
|
+ */
|
|
|
status.set("0");
|
|
|
if (inputInfo.getFirstPageRecordDoc() != null && inputInfo.getFirstPageRecordDoc().getStructureMap() != null) {
|
|
|
Map<String, String> firstpageStructureMap = inputInfo.getFirstPageRecordDoc().getStructureMap();
|
|
|
String dischargeTime = firstpageStructureMap.get(Content.household_address_zipcode);
|
|
|
- if(CatalogueUtil.isEmpty(dischargeTime)){
|
|
|
+ if(StringUtil.isBlank(dischargeTime)){
|
|
|
status.set("-1");
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
}
|
|
|
}
|