|
@@ -22,6 +22,10 @@ public class FIRP0205 extends QCCatalogue {
|
|
|
if (inputInfo.getFirstPageRecordDoc() != null && inputInfo.getFirstPageRecordDoc().getStructureMap() != null) {
|
|
|
Map<String, String> firstpageStructureMap = inputInfo.getFirstPageRecordDoc().getStructureMap();
|
|
|
String dischargeTime = firstpageStructureMap.get(Content.nation);
|
|
|
+ //要把外国人的逻辑更新上去,如果不是中国国籍就不触发此规则
|
|
|
+ if (!firstpageStructureMap.get("国籍").equals("中国")){
|
|
|
+ return;
|
|
|
+ }
|
|
|
if (CatalogueUtil.isEmpty(dischargeTime)) {
|
|
|
status.set("-1");
|
|
|
Map<String, Object> structureExtMap = inputInfo.getFirstPageRecordDoc().getStructureExtMap();
|