Commit a119ea02 authored by 刘林's avatar 刘林

fix(jg):西安数据导入接口修改

parent 00baf6a4
...@@ -308,7 +308,9 @@ public class XiAnDataDockServiceImpl { ...@@ -308,7 +308,9 @@ public class XiAnDataDockServiceImpl {
// rowError.append("设备代码不能包含特殊字符;"); // rowError.append("设备代码不能包含特殊字符;");
//} //}
if (equCodeList.contains(data.getEquCode())) { if (equCodeList.contains(data.getEquCode())) {
rowError.append("设备代码不能重复;"); data.setOriginalEquCode(data.getEquCode());
data.setEquCodeType("2");
data.setEquCode("");
} }
if (this.checkEquCodeUniqueness(data.getEquCode())){ if (this.checkEquCodeUniqueness(data.getEquCode())){
data.setOriginalEquCode(data.getEquCode()); data.setOriginalEquCode(data.getEquCode());
......
...@@ -182,6 +182,6 @@ public class ESEquipmentCategoryDto { ...@@ -182,6 +182,6 @@ public class ESEquipmentCategoryDto {
/** /**
* 资料是否齐全(0齐全, 1不齐全)-西安数据导入 * 资料是否齐全(0齐全, 1不齐全)-西安数据导入
*/ */
@Field(type = FieldType.Keyword, name = "IS_COMPLETE_XA") @Field(type = FieldType.Boolean, name = "IS_COMPLETE_XA")
private String IS_COMPLETE_XA; private Boolean IS_COMPLETE_XA;
} }
...@@ -342,15 +342,6 @@ ...@@ -342,15 +342,6 @@
select select
equ_id as record equ_id as record
from from
tzs_jg_maintenance_contract a,
tzs_jg_maintenance_contract_eq b
where
a.sequence_nbr = b.equip_transfer_id
and (a.status <![CDATA[ <> ]]> '已作废' and a.status <![CDATA[ <> ]]> '维保单位已驳回' and a.status <![CDATA[ <> ]]> '使用单位已撤回' and a.status <![CDATA[ <> ]]> '使用单位待提交')
UNION
select
equ_id as record
from
tzs_jg_reform_notice a, tzs_jg_reform_notice a,
tzs_jg_reform_notice_eq b tzs_jg_reform_notice_eq b
where where
...@@ -374,24 +365,6 @@ ...@@ -374,24 +365,6 @@
where where
a.sequence_nbr = b.equip_transfer_id a.sequence_nbr = b.equip_transfer_id
and (a.notice_status <![CDATA[ <> ]]> '6614' and a.notice_status <![CDATA[ <> ]]> '6615' and a.notice_status <![CDATA[ <> ]]> '6610' and a.notice_status <![CDATA[ <> ]]> '6617') and (a.notice_status <![CDATA[ <> ]]> '6614' and a.notice_status <![CDATA[ <> ]]> '6615' and a.notice_status <![CDATA[ <> ]]> '6610' and a.notice_status <![CDATA[ <> ]]> '6617')
UNION
select
equ_id as record
from
tzs_jg_vehicle_information a,
tzs_jg_vehicle_information_eq b
where
a.sequence_nbr = b.vehicle_id
and (a.status <![CDATA[ <> ]]> '使用单位待提交' and a.status <![CDATA[ <> ]]> '一级受理已驳回' and a.status <![CDATA[ <> ]]> '使用单位已撤回' and a.status <![CDATA[ <> ]]> '已作废')
UNION
select
equ_id as record
from
tzs_jg_change_vehicle_registration_unit a,
tzs_jg_change_vehicle_registration_unit_eq b
where
a.sequence_nbr = b.unit_change_id
and (a.status <![CDATA[ <> ]]> '使用单位待提交' and a.status <![CDATA[ <> ]]> '一级受理已驳回' and a.status <![CDATA[ <> ]]> '使用单位已撤回' and a.status <![CDATA[ <> ]]> '已作废')
) temp ) temp
) a ON ibjui.record = a.record ) a ON ibjui.record = a.record
WHERE WHERE
......
...@@ -603,7 +603,7 @@ public class DataDockServiceImpl { ...@@ -603,7 +603,7 @@ public class DataDockServiceImpl {
if (!ObjectUtils.isEmpty(equipmentCategoryDto)) { if (!ObjectUtils.isEmpty(equipmentCategoryDto)) {
long time = Timestamp.valueOf(map.get("REC_DATE").toString().substring(0, 19)).getTime(); long time = Timestamp.valueOf(map.get("REC_DATE").toString().substring(0, 19)).getTime();
equipmentCategoryDto.setREC_DATE(time); equipmentCategoryDto.setREC_DATE(time);
equipmentCategoryDto.setIS_COMPLETE_XA(isCompleteXa); equipmentCategoryDto.setIS_COMPLETE_XA(Objects.equals("0", isCompleteXa));
esEquipmentCategory.save(equipmentCategoryDto); esEquipmentCategory.save(equipmentCategoryDto);
} }
} }
......
...@@ -1109,7 +1109,7 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg ...@@ -1109,7 +1109,7 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg
* @author wangguo * @author wangguo
* @date 2024/7/18 11:00 * @date 2024/7/18 11:00
**/ **/
@GlobalTransactional(rollbackFor = Exception.class) @GlobalTransactional(rollbackFor = Exception.class, timeoutMills = 6000000)
public void accept(JgChangeRegistrationUnitDto dto, String op, ReginParams reginParams) { public void accept(JgChangeRegistrationUnitDto dto, String op, ReginParams reginParams) {
String lockKey = CommonServiceImpl.buildJgExecuteLockKey(dto.getInstanceId()); String lockKey = CommonServiceImpl.buildJgExecuteLockKey(dto.getInstanceId());
RLock lock = redissonClient.getLock(lockKey); RLock lock = redissonClient.getLock(lockKey);
...@@ -1172,6 +1172,8 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg ...@@ -1172,6 +1172,8 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg
LambdaQueryWrapper<JgChangeRegistrationUnitEq> queryWrapper = new LambdaQueryWrapper<>(); LambdaQueryWrapper<JgChangeRegistrationUnitEq> queryWrapper = new LambdaQueryWrapper<>();
queryWrapper.eq(JgChangeRegistrationUnitEq::getUnitChangeRegistrationId, dto.getSequenceNbr()); queryWrapper.eq(JgChangeRegistrationUnitEq::getUnitChangeRegistrationId, dto.getSequenceNbr());
List<JgChangeRegistrationUnitEq> jgChangeRegistrationUnitEqs = JgChangeRegistrationUnitEqMapper.selectList(queryWrapper); List<JgChangeRegistrationUnitEq> jgChangeRegistrationUnitEqs = JgChangeRegistrationUnitEqMapper.selectList(queryWrapper);
//修改ES中使用单位信息和使用单位代码
Map<String, Map<String, Object>> resultMap = new HashMap<>();
for (JgChangeRegistrationUnitEq jgChangeRegistrationUnitEq : jgChangeRegistrationUnitEqs) { for (JgChangeRegistrationUnitEq jgChangeRegistrationUnitEq : jgChangeRegistrationUnitEqs) {
String equipId = jgChangeRegistrationUnitEq.getEquId(); String equipId = jgChangeRegistrationUnitEq.getEquId();
LambdaQueryWrapper<OtherInfo> queryWrapper1 = new LambdaQueryWrapper<>(); LambdaQueryWrapper<OtherInfo> queryWrapper1 = new LambdaQueryWrapper<>();
...@@ -1186,18 +1188,16 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg ...@@ -1186,18 +1188,16 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg
useInfo.setUseUnitCreditCode(registration.getNewUseUnitCreditCode()); useInfo.setUseUnitCreditCode(registration.getNewUseUnitCreditCode());
useInfoMapper.updateById(useInfo); useInfoMapper.updateById(useInfo);
} }
//修改ES中使用单位信息和使用单位代码
Map<String, Map<String, Object>> resultMap = new HashMap<>();
Map<String, Object> map1 = new HashMap<>(); Map<String, Object> map1 = new HashMap<>();
String[] companyCode = registration.getNewUseUnitCreditCode().split("_"); String[] companyCode = registration.getNewUseUnitCreditCode().split("_");
map1.put("USE_UNIT_CREDIT_CODE", companyCode.length > 1 ? companyCode[1] : registration.getNewUseUnitCreditCode()); map1.put("USE_UNIT_CREDIT_CODE", companyCode.length > 1 ? companyCode[1] : registration.getNewUseUnitCreditCode());
map1.put("USE_UNIT_NAME", registration.getNewUseUnitName()); map1.put("USE_UNIT_NAME", registration.getNewUseUnitName());
map1.put("REC_DATE", new Date());// 更新时间,设备筛选时排在前面 bug-21476 map1.put("REC_DATE", new Date());// 更新时间,设备筛选时排在前面 bug-21476
resultMap.put(equipId, map1); resultMap.put(equipId, map1);
tzsServiceFeignClient.commonUpdateEsDataByIds(resultMap);
//修改各类告知列表,置为废弃 //修改各类告知列表,置为废弃
this.updataInvalidStatusByHistory(equipId, registration.getApplyNo()); this.updataInvalidStatusByHistory(equipId, registration.getApplyNo());
} }
tzsServiceFeignClient.commonUpdateEsDataByIds(resultMap);
} }
registration.setNextTaskId(nextTaskId); registration.setNextTaskId(nextTaskId);
updateTaskModel(registration, op); updateTaskModel(registration, op);
...@@ -1393,6 +1393,7 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg ...@@ -1393,6 +1393,7 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg
.eq(JgChangeRegistrationUnitEq::getIsDelete,false); .eq(JgChangeRegistrationUnitEq::getIsDelete,false);
List<JgChangeRegistrationUnitEq> changeRegistrationUnitEqs = registrationUnitEqService.list(); List<JgChangeRegistrationUnitEq> changeRegistrationUnitEqs = registrationUnitEqService.list();
if(!CollectionUtils.isEmpty(changeRegistrationUnitEqs)){ if(!CollectionUtils.isEmpty(changeRegistrationUnitEqs)){
Map<String, Map<String, Object>> resultMap = new HashMap<>();
for (JgChangeRegistrationUnitEq jgChangeRegistrationUnitEq : changeRegistrationUnitEqs) { for (JgChangeRegistrationUnitEq jgChangeRegistrationUnitEq : changeRegistrationUnitEqs) {
String equipId = jgChangeRegistrationUnitEq.getEquId(); String equipId = jgChangeRegistrationUnitEq.getEquId();
LambdaQueryWrapper<OtherInfo> queryWrapper1 = new LambdaQueryWrapper<>(); LambdaQueryWrapper<OtherInfo> queryWrapper1 = new LambdaQueryWrapper<>();
...@@ -1408,7 +1409,6 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg ...@@ -1408,7 +1409,6 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg
useInfoMapper.updateById(useInfo); useInfoMapper.updateById(useInfo);
} }
//修改ES中使用单位信息和使用单位代码 //修改ES中使用单位信息和使用单位代码
Map<String, Map<String, Object>> resultMap = new HashMap<>();
Map<String, Object> map1 = new HashMap<>(); Map<String, Object> map1 = new HashMap<>();
String[] companyCode = registration.getNewUseUnitCreditCode().split("_"); String[] companyCode = registration.getNewUseUnitCreditCode().split("_");
map1.put("USE_UNIT_CREDIT_CODE", companyCode.length > 1 ? companyCode[1] : registration.getNewUseUnitCreditCode()); map1.put("USE_UNIT_CREDIT_CODE", companyCode.length > 1 ? companyCode[1] : registration.getNewUseUnitCreditCode());
...@@ -1418,10 +1418,10 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg ...@@ -1418,10 +1418,10 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg
map1.put("USE_ORG_CODE", useOrgCode); map1.put("USE_ORG_CODE", useOrgCode);
} }
resultMap.put(equipId, map1); resultMap.put(equipId, map1);
tzsServiceFeignClient.commonUpdateEsDataByIds(resultMap);
//修改各类告知列表,置为废弃 //修改各类告知列表,置为废弃
this.updataInvalidStatusByHistory(equipId, registration.getApplyNo()); this.updataInvalidStatusByHistory(equipId, registration.getApplyNo());
} }
tzsServiceFeignClient.commonUpdateEsDataByIds(resultMap);
} }
} }
} }
......
...@@ -11,22 +11,22 @@ ...@@ -11,22 +11,22 @@
<o:Author>Admin</o:Author> <o:Author>Admin</o:Author>
<o:LastAuthor>mly</o:LastAuthor> <o:LastAuthor>mly</o:LastAuthor>
<o:Created>2025-02-11T02:12:00Z</o:Created> <o:Created>2025-02-11T02:12:00Z</o:Created>
<o:LastSaved>2025-03-03T10:02:32Z</o:LastSaved> <o:LastSaved>2025-03-14T13:12:45Z</o:LastSaved>
<o:TotalTime>2880</o:TotalTime> <o:TotalTime>5760</o:TotalTime>
<o:Pages>1</o:Pages> <o:Pages>1</o:Pages>
<o:Words>284</o:Words> <o:Words>284</o:Words>
<o:Characters>579</o:Characters> <o:Characters>579</o:Characters>
<o:Lines>0</o:Lines> <o:Lines>0</o:Lines>
<o:Paragraphs>0</o:Paragraphs> <o:Paragraphs>0</o:Paragraphs>
<o:CharactersWithSpaces>641</o:CharactersWithSpaces> <o:CharactersWithSpaces>585</o:CharactersWithSpaces>
<o:Version>14</o:Version> <o:Version>14</o:Version>
</o:DocumentProperties> </o:DocumentProperties>
<o:CustomDocumentProperties> <o:CustomDocumentProperties>
<o:KSOTemplateDocerSaveRecord dt:dt="string"> <o:KSOTemplateDocerSaveRecord dt:dt="string">&#10;
eyJoZGlkIjoiNTRkYjJiYWQwMzVkYWEwZGNmODdlMzhmYWExNTZhZjEiLCJ1c2VySWQiOiI5MjI2NjY0ODIifQ== eyJoZGlkIjoiNTRkYjJiYWQwMzVkYWEwZGNmODdlMzhmYWExNTZhZjEiLCJ1c2VySWQiOiI5MjI2NjY0ODIifQ==&#10;
</o:KSOTemplateDocerSaveRecord> </o:KSOTemplateDocerSaveRecord>
<o:KSOProductBuildVer dt:dt="string">2052-12.1.0.18543</o:KSOProductBuildVer> <o:KSOProductBuildVer dt:dt="string">2052-12.1.0.18543</o:KSOProductBuildVer>
<o:ICV dt:dt="string">C97ACE8DD1724BBA88F0940962A6C6D0_12</o:ICV> <o:ICV dt:dt="string">4721AD01F5C54FAFBCD5672F46A148D5_12</o:ICV>
</o:CustomDocumentProperties> </o:CustomDocumentProperties>
<w:fonts> <w:fonts>
<w:defaultFonts w:ascii="Calibri" w:fareast="宋体" w:h-ansi="Calibri" w:cs="Times New Roman"/> <w:defaultFonts w:ascii="Calibri" w:fareast="宋体" w:h-ansi="Calibri" w:cs="Times New Roman"/>
...@@ -507,8 +507,8 @@ ...@@ -507,8 +507,8 @@
<w:jc w:val="center"/> <w:jc w:val="center"/>
<w:outlineLvl w:val="0"/> <w:outlineLvl w:val="0"/>
<w:rPr> <w:rPr>
<w:sz w:val="32"/> <w:rFonts w:ascii="Arial" w:hint="default"/>
<w:sz-cs w:val="32"/> <w:sz w:val="21"/>
</w:rPr> </w:rPr>
</w:pPr> </w:pPr>
<w:r> <w:r>
...@@ -522,15 +522,6 @@ ...@@ -522,15 +522,6 @@
</w:p> </w:p>
<w:p> <w:p>
<w:pPr> <w:pPr>
<w:spacing w:line="426" w:line-rule="auto"/>
<w:rPr>
<w:rFonts w:ascii="Arial" w:hint="default"/>
<w:sz w:val="21"/>
</w:rPr>
</w:pPr>
</w:p>
<w:p>
<w:pPr>
<w:spacing w:before="78" w:line="211" w:line-rule="auto"/> <w:spacing w:before="78" w:line="211" w:line-rule="auto"/>
<w:ind w:left="1918"/> <w:ind w:left="1918"/>
<w:rPr> <w:rPr>
...@@ -569,8 +560,8 @@ ...@@ -569,8 +560,8 @@
<w:tbl> <w:tbl>
<w:tblPr> <w:tblPr>
<w:tblStyle w:val="a5"/> <w:tblStyle w:val="a5"/>
<w:tblW w:w="9230" w:type="dxa"/> <w:tblW w:w="9855" w:type="dxa"/>
<w:tblInd w:w="1265" w:type="dxa"/> <w:tblInd w:w="1070" w:type="dxa"/>
<w:tblBorders> <w:tblBorders>
<w:top w:val="single" w:sz="2" wx:bdrwidth="5" w:space="0" w:color="000000"/> <w:top w:val="single" w:sz="2" wx:bdrwidth="5" w:space="0" w:color="000000"/>
<w:left w:val="single" w:sz="2" wx:bdrwidth="5" w:space="0" w:color="000000"/> <w:left w:val="single" w:sz="2" wx:bdrwidth="5" w:space="0" w:color="000000"/>
...@@ -588,11 +579,11 @@ ...@@ -588,11 +579,11 @@
</w:tblCellMar> </w:tblCellMar>
</w:tblPr> </w:tblPr>
<w:tblGrid> <w:tblGrid>
<w:gridCol w:w="900"/> <w:gridCol w:w="885"/>
<w:gridCol w:w="2205"/> <w:gridCol w:w="2340"/>
<w:gridCol w:w="2115"/> <w:gridCol w:w="2340"/>
<w:gridCol w:w="1770"/> <w:gridCol w:w="1650"/>
<w:gridCol w:w="2240"/> <w:gridCol w:w="2640"/>
</w:tblGrid> </w:tblGrid>
<w:tr> <w:tr>
<w:tblPrEx> <w:tblPrEx>
...@@ -616,7 +607,7 @@ ...@@ -616,7 +607,7 @@
</w:trPr> </w:trPr>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="900" w:type="dxa"/> <w:tcW w:w="885" w:type="dxa"/>
<w:vmerge w:val="restart"/> <w:vmerge w:val="restart"/>
<w:tcBorders> <w:tcBorders>
<w:top w:val="single" w:sz="6" wx:bdrwidth="15" w:space="0" w:color="000000"/> <w:top w:val="single" w:sz="6" wx:bdrwidth="15" w:space="0" w:color="000000"/>
...@@ -682,7 +673,7 @@ ...@@ -682,7 +673,7 @@
</w:tc> </w:tc>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="2205" w:type="dxa"/> <w:tcW w:w="2340" w:type="dxa"/>
<w:tcBorders> <w:tcBorders>
<w:top w:val="single" w:sz="6" wx:bdrwidth="15" w:space="0" w:color="000000"/> <w:top w:val="single" w:sz="6" wx:bdrwidth="15" w:space="0" w:color="000000"/>
</w:tcBorders> </w:tcBorders>
...@@ -721,7 +712,7 @@ ...@@ -721,7 +712,7 @@
</w:tc> </w:tc>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="2115" w:type="dxa"/> <w:tcW w:w="2340" w:type="dxa"/>
<w:tcBorders> <w:tcBorders>
<w:top w:val="single" w:sz="6" wx:bdrwidth="15" w:space="0" w:color="000000"/> <w:top w:val="single" w:sz="6" wx:bdrwidth="15" w:space="0" w:color="000000"/>
</w:tcBorders> </w:tcBorders>
...@@ -750,7 +741,7 @@ ...@@ -750,7 +741,7 @@
</w:tc> </w:tc>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="1770" w:type="dxa"/> <w:tcW w:w="1650" w:type="dxa"/>
<w:tcBorders> <w:tcBorders>
<w:top w:val="single" w:sz="6" wx:bdrwidth="15" w:space="0" w:color="000000"/> <w:top w:val="single" w:sz="6" wx:bdrwidth="15" w:space="0" w:color="000000"/>
</w:tcBorders> </w:tcBorders>
...@@ -786,7 +777,7 @@ ...@@ -786,7 +777,7 @@
</w:tc> </w:tc>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="2240" w:type="dxa"/> <w:tcW w:w="2640" w:type="dxa"/>
<w:tcBorders> <w:tcBorders>
<w:top w:val="single" w:sz="6" wx:bdrwidth="15" w:space="0" w:color="000000"/> <w:top w:val="single" w:sz="6" wx:bdrwidth="15" w:space="0" w:color="000000"/>
<w:right w:val="single" w:sz="6" wx:bdrwidth="15" w:space="0" w:color="000000"/> <w:right w:val="single" w:sz="6" wx:bdrwidth="15" w:space="0" w:color="000000"/>
...@@ -838,7 +829,7 @@ ...@@ -838,7 +829,7 @@
</w:trPr> </w:trPr>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="900" w:type="dxa"/> <w:tcW w:w="885" w:type="dxa"/>
<w:vmerge w:val="continue"/> <w:vmerge w:val="continue"/>
<w:tcBorders> <w:tcBorders>
<w:top w:val="nil"/> <w:top w:val="nil"/>
...@@ -866,7 +857,7 @@ ...@@ -866,7 +857,7 @@
</w:tc> </w:tc>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="2205" w:type="dxa"/> <w:tcW w:w="2340" w:type="dxa"/>
<w:shd w:val="clear" w:color="auto" w:fill="auto"/> <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
<w:vAlign w:val="top"/> <w:vAlign w:val="top"/>
</w:tcPr> </w:tcPr>
...@@ -902,7 +893,7 @@ ...@@ -902,7 +893,7 @@
</w:tc> </w:tc>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="2115" w:type="dxa"/> <w:tcW w:w="2340" w:type="dxa"/>
<w:shd w:val="clear" w:color="auto" w:fill="auto"/> <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
<w:vAlign w:val="center"/> <w:vAlign w:val="center"/>
</w:tcPr> </w:tcPr>
...@@ -927,7 +918,7 @@ ...@@ -927,7 +918,7 @@
</w:tc> </w:tc>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="1770" w:type="dxa"/> <w:tcW w:w="1650" w:type="dxa"/>
<w:shd w:val="clear" w:color="auto" w:fill="auto"/> <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
<w:vAlign w:val="top"/> <w:vAlign w:val="top"/>
</w:tcPr> </w:tcPr>
...@@ -960,7 +951,7 @@ ...@@ -960,7 +951,7 @@
</w:tc> </w:tc>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="2240" w:type="dxa"/> <w:tcW w:w="2640" w:type="dxa"/>
<w:tcBorders> <w:tcBorders>
<w:right w:val="single" w:sz="6" wx:bdrwidth="15" w:space="0" w:color="000000"/> <w:right w:val="single" w:sz="6" wx:bdrwidth="15" w:space="0" w:color="000000"/>
</w:tcBorders> </w:tcBorders>
...@@ -1009,7 +1000,7 @@ ...@@ -1009,7 +1000,7 @@
</w:trPr> </w:trPr>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="900" w:type="dxa"/> <w:tcW w:w="885" w:type="dxa"/>
<w:vmerge w:val="restart"/> <w:vmerge w:val="restart"/>
<w:tcBorders> <w:tcBorders>
<w:left w:val="single" w:sz="6" wx:bdrwidth="15" w:space="0" w:color="000000"/> <w:left w:val="single" w:sz="6" wx:bdrwidth="15" w:space="0" w:color="000000"/>
...@@ -1084,7 +1075,7 @@ ...@@ -1084,7 +1075,7 @@
</w:tc> </w:tc>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="2205" w:type="dxa"/> <w:tcW w:w="2340" w:type="dxa"/>
<w:shd w:val="clear" w:color="auto" w:fill="auto"/> <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
<w:vAlign w:val="top"/> <w:vAlign w:val="top"/>
</w:tcPr> </w:tcPr>
...@@ -1105,7 +1096,7 @@ ...@@ -1105,7 +1096,7 @@
</w:tc> </w:tc>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="6125" w:type="dxa"/> <w:tcW w:w="6630" w:type="dxa"/>
<w:gridSpan w:val="3"/> <w:gridSpan w:val="3"/>
<w:tcBorders> <w:tcBorders>
<w:right w:val="single" w:sz="6" wx:bdrwidth="15" w:space="0" w:color="000000"/> <w:right w:val="single" w:sz="6" wx:bdrwidth="15" w:space="0" w:color="000000"/>
...@@ -1156,7 +1147,7 @@ ...@@ -1156,7 +1147,7 @@
</w:trPr> </w:trPr>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="900" w:type="dxa"/> <w:tcW w:w="885" w:type="dxa"/>
<w:vmerge w:val="continue"/> <w:vmerge w:val="continue"/>
<w:tcBorders> <w:tcBorders>
<w:top w:val="nil"/> <w:top w:val="nil"/>
...@@ -1185,7 +1176,7 @@ ...@@ -1185,7 +1176,7 @@
</w:tc> </w:tc>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="2205" w:type="dxa"/> <w:tcW w:w="2340" w:type="dxa"/>
<w:shd w:val="clear" w:color="auto" w:fill="auto"/> <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
<w:vAlign w:val="top"/> <w:vAlign w:val="top"/>
</w:tcPr> </w:tcPr>
...@@ -1207,7 +1198,7 @@ ...@@ -1207,7 +1198,7 @@
</w:tc> </w:tc>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="6125" w:type="dxa"/> <w:tcW w:w="6630" w:type="dxa"/>
<w:gridSpan w:val="3"/> <w:gridSpan w:val="3"/>
<w:tcBorders> <w:tcBorders>
<w:right w:val="single" w:sz="6" wx:bdrwidth="15" w:space="0" w:color="000000"/> <w:right w:val="single" w:sz="6" wx:bdrwidth="15" w:space="0" w:color="000000"/>
...@@ -1259,7 +1250,7 @@ ...@@ -1259,7 +1250,7 @@
</w:trPr> </w:trPr>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="900" w:type="dxa"/> <w:tcW w:w="885" w:type="dxa"/>
<w:vmerge w:val="continue"/> <w:vmerge w:val="continue"/>
<w:tcBorders> <w:tcBorders>
<w:top w:val="nil"/> <w:top w:val="nil"/>
...@@ -1288,7 +1279,7 @@ ...@@ -1288,7 +1279,7 @@
</w:tc> </w:tc>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="2205" w:type="dxa"/> <w:tcW w:w="2340" w:type="dxa"/>
<w:shd w:val="clear" w:color="auto" w:fill="auto"/> <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
<w:vAlign w:val="top"/> <w:vAlign w:val="top"/>
</w:tcPr> </w:tcPr>
...@@ -1309,7 +1300,7 @@ ...@@ -1309,7 +1300,7 @@
</w:tc> </w:tc>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="2115" w:type="dxa"/> <w:tcW w:w="2340" w:type="dxa"/>
<w:shd w:val="clear" w:color="auto" w:fill="auto"/> <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
<w:vAlign w:val="center"/> <w:vAlign w:val="center"/>
</w:tcPr> </w:tcPr>
...@@ -1336,7 +1327,7 @@ ...@@ -1336,7 +1327,7 @@
</w:tc> </w:tc>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="1770" w:type="dxa"/> <w:tcW w:w="1650" w:type="dxa"/>
<w:shd w:val="clear" w:color="auto" w:fill="auto"/> <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
<w:vAlign w:val="top"/> <w:vAlign w:val="top"/>
</w:tcPr> </w:tcPr>
...@@ -1359,7 +1350,7 @@ ...@@ -1359,7 +1350,7 @@
</w:tc> </w:tc>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="2240" w:type="dxa"/> <w:tcW w:w="2640" w:type="dxa"/>
<w:tcBorders> <w:tcBorders>
<w:right w:val="single" w:sz="6" wx:bdrwidth="15" w:space="0" w:color="000000"/> <w:right w:val="single" w:sz="6" wx:bdrwidth="15" w:space="0" w:color="000000"/>
</w:tcBorders> </w:tcBorders>
...@@ -1408,7 +1399,7 @@ ...@@ -1408,7 +1399,7 @@
</w:trPr> </w:trPr>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="900" w:type="dxa"/> <w:tcW w:w="885" w:type="dxa"/>
<w:vmerge w:val="continue"/> <w:vmerge w:val="continue"/>
<w:tcBorders> <w:tcBorders>
<w:top w:val="nil"/> <w:top w:val="nil"/>
...@@ -1437,7 +1428,7 @@ ...@@ -1437,7 +1428,7 @@
</w:tc> </w:tc>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="2205" w:type="dxa"/> <w:tcW w:w="2340" w:type="dxa"/>
<w:shd w:val="clear" w:color="auto" w:fill="auto"/> <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
<w:vAlign w:val="top"/> <w:vAlign w:val="top"/>
</w:tcPr> </w:tcPr>
...@@ -1463,7 +1454,7 @@ ...@@ -1463,7 +1454,7 @@
</w:tc> </w:tc>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="2115" w:type="dxa"/> <w:tcW w:w="2340" w:type="dxa"/>
<w:shd w:val="clear" w:color="auto" w:fill="auto"/> <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
<w:vAlign w:val="center"/> <w:vAlign w:val="center"/>
</w:tcPr> </w:tcPr>
...@@ -1488,7 +1479,7 @@ ...@@ -1488,7 +1479,7 @@
</w:tc> </w:tc>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="1770" w:type="dxa"/> <w:tcW w:w="1650" w:type="dxa"/>
<w:shd w:val="clear" w:color="auto" w:fill="auto"/> <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
<w:vAlign w:val="top"/> <w:vAlign w:val="top"/>
</w:tcPr> </w:tcPr>
...@@ -1511,7 +1502,7 @@ ...@@ -1511,7 +1502,7 @@
</w:tc> </w:tc>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="2240" w:type="dxa"/> <w:tcW w:w="2640" w:type="dxa"/>
<w:tcBorders> <w:tcBorders>
<w:right w:val="single" w:sz="6" wx:bdrwidth="15" w:space="0" w:color="000000"/> <w:right w:val="single" w:sz="6" wx:bdrwidth="15" w:space="0" w:color="000000"/>
</w:tcBorders> </w:tcBorders>
...@@ -1560,7 +1551,7 @@ ...@@ -1560,7 +1551,7 @@
</w:trPr> </w:trPr>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="900" w:type="dxa"/> <w:tcW w:w="885" w:type="dxa"/>
<w:vmerge w:val="continue"/> <w:vmerge w:val="continue"/>
<w:tcBorders> <w:tcBorders>
<w:top w:val="nil"/> <w:top w:val="nil"/>
...@@ -1588,7 +1579,7 @@ ...@@ -1588,7 +1579,7 @@
</w:tc> </w:tc>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="2205" w:type="dxa"/> <w:tcW w:w="2340" w:type="dxa"/>
<w:shd w:val="clear" w:color="auto" w:fill="auto"/> <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
<w:vAlign w:val="top"/> <w:vAlign w:val="top"/>
</w:tcPr> </w:tcPr>
...@@ -1608,7 +1599,7 @@ ...@@ -1608,7 +1599,7 @@
</w:tc> </w:tc>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="2115" w:type="dxa"/> <w:tcW w:w="2340" w:type="dxa"/>
<w:shd w:val="clear" w:color="auto" w:fill="auto"/> <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
<w:vAlign w:val="center"/> <w:vAlign w:val="center"/>
</w:tcPr> </w:tcPr>
...@@ -1633,7 +1624,7 @@ ...@@ -1633,7 +1624,7 @@
</w:tc> </w:tc>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="1770" w:type="dxa"/> <w:tcW w:w="1650" w:type="dxa"/>
<w:shd w:val="clear" w:color="auto" w:fill="auto"/> <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
<w:vAlign w:val="top"/> <w:vAlign w:val="top"/>
</w:tcPr> </w:tcPr>
...@@ -1656,7 +1647,7 @@ ...@@ -1656,7 +1647,7 @@
</w:tc> </w:tc>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="2240" w:type="dxa"/> <w:tcW w:w="2640" w:type="dxa"/>
<w:tcBorders> <w:tcBorders>
<w:right w:val="single" w:sz="6" wx:bdrwidth="15" w:space="0" w:color="000000"/> <w:right w:val="single" w:sz="6" wx:bdrwidth="15" w:space="0" w:color="000000"/>
</w:tcBorders> </w:tcBorders>
...@@ -1702,11 +1693,11 @@ ...@@ -1702,11 +1693,11 @@
</w:tblCellMar> </w:tblCellMar>
</w:tblPrEx> </w:tblPrEx>
<w:trPr> <w:trPr>
<w:trHeight w:val="3364" w:h-rule="atLeast"/> <w:trHeight w:val="3149" w:h-rule="atLeast"/>
</w:trPr> </w:trPr>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="9230" w:type="dxa"/> <w:tcW w:w="9855" w:type="dxa"/>
<w:gridSpan w:val="5"/> <w:gridSpan w:val="5"/>
<w:tcBorders> <w:tcBorders>
<w:left w:val="single" w:sz="6" wx:bdrwidth="15" w:space="0" w:color="000000"/> <w:left w:val="single" w:sz="6" wx:bdrwidth="15" w:space="0" w:color="000000"/>
...@@ -1793,26 +1784,10 @@ ...@@ -1793,26 +1784,10 @@
</w:p> </w:p>
<w:p> <w:p>
<w:pPr> <w:pPr>
<w:kinsoku w:val="off"/>
<w:autoSpaceDE w:val="off"/>
<w:autoSpaceDN w:val="off"/>
<w:adjustRightInd w:val="off"/>
<w:snapToGrid w:val="off"/>
<w:spacing w:line="273" w:line-rule="auto"/>
<w:jc w:val="left"/>
<w:textAlignment w:val="baseline"/>
<w:rPr>
<w:rFonts w:ascii="Arial" w:hint="default"/>
<w:sz w:val="21"/>
</w:rPr>
</w:pPr>
</w:p>
<w:p>
<w:pPr>
<w:pStyle w:val="a6"/> <w:pStyle w:val="a6"/>
<w:spacing w:before="78" w:line="214" w:line-rule="auto"/> <w:spacing w:before="78" w:line="214" w:line-rule="auto"/>
<w:ind w:first-line="234" w:first-line-chars="100"/> <w:ind w:first-line="234" w:first-line-chars="100"/>
<w:jc w:val="right"/> <w:jc w:val="center"/>
</w:pPr> </w:pPr>
<w:r> <w:r>
<w:rPr> <w:rPr>
...@@ -1838,7 +1813,21 @@ ...@@ -1838,7 +1813,21 @@
<w:rPr> <w:rPr>
<w:spacing w:val="-3"/> <w:spacing w:val="-3"/>
</w:rPr> </w:rPr>
<w:t> 日期:</w:t> <w:t></w:t>
</w:r>
<w:r>
<w:rPr>
<w:rFonts w:hint="fareast"/>
<w:spacing w:val="-3"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
<w:t></w:t>
</w:r>
<w:r>
<w:rPr>
<w:spacing w:val="-3"/>
</w:rPr>
<w:t>日期:</w:t>
</w:r> </w:r>
<w:r> <w:r>
<w:rPr> <w:rPr>
...@@ -1872,8 +1861,8 @@ ...@@ -1872,8 +1861,8 @@
<w:pPr> <w:pPr>
<w:pStyle w:val="a6"/> <w:pStyle w:val="a6"/>
<w:spacing w:before="73" w:line="214" w:line-rule="auto"/> <w:spacing w:before="73" w:line="214" w:line-rule="auto"/>
<w:ind w:first-line="236" w:first-line-chars="100"/> <w:ind w:first-line="708" w:first-line-chars="300"/>
<w:jc w:val="right"/> <w:jc w:val="both"/>
</w:pPr> </w:pPr>
<w:r> <w:r>
<w:rPr> <w:rPr>
...@@ -1893,7 +1882,21 @@ ...@@ -1893,7 +1882,21 @@
<w:rPr> <w:rPr>
<w:spacing w:val="-2"/> <w:spacing w:val="-2"/>
</w:rPr> </w:rPr>
<w:t> 日期:</w:t> <w:t></w:t>
</w:r>
<w:r>
<w:rPr>
<w:rFonts w:hint="fareast"/>
<w:spacing w:val="-2"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
<w:t></w:t>
</w:r>
<w:r>
<w:rPr>
<w:spacing w:val="-2"/>
</w:rPr>
<w:t>日期:</w:t>
</w:r> </w:r>
<w:r> <w:r>
<w:rPr> <w:rPr>
...@@ -1924,11 +1927,11 @@ ...@@ -1924,11 +1927,11 @@
</w:tblCellMar> </w:tblCellMar>
</w:tblPrEx> </w:tblPrEx>
<w:trPr> <w:trPr>
<w:trHeight w:val="2351" w:h-rule="atLeast"/> <w:trHeight w:val="2291" w:h-rule="atLeast"/>
</w:trPr> </w:trPr>
<w:tc> <w:tc>
<w:tcPr> <w:tcPr>
<w:tcW w:w="9230" w:type="dxa"/> <w:tcW w:w="9855" w:type="dxa"/>
<w:gridSpan w:val="5"/> <w:gridSpan w:val="5"/>
<w:tcBorders> <w:tcBorders>
<w:left w:val="single" w:sz="6" wx:bdrwidth="15" w:space="0" w:color="000000"/> <w:left w:val="single" w:sz="6" wx:bdrwidth="15" w:space="0" w:color="000000"/>
...@@ -1988,19 +1991,75 @@ ...@@ -1988,19 +1991,75 @@
<w:pStyle w:val="a6"/> <w:pStyle w:val="a6"/>
<w:spacing w:before="78" w:line="208" w:line-rule="auto"/> <w:spacing w:before="78" w:line="208" w:line-rule="auto"/>
<w:ind w:left="1122"/> <w:ind w:left="1122"/>
<w:jc w:val="center"/> <w:jc w:val="both"/>
</w:pPr> </w:pPr>
<w:r> <w:r>
<w:rPr> <w:rPr>
<w:spacing w:val="-3"/> <w:spacing w:val="-3"/>
</w:rPr> </w:rPr>
<w:t>登记机关登记人员: 日期:</w:t> <w:t>登记机关登记人员:</w:t>
</w:r>
<w:r>
<w:rPr>
<w:rFonts w:hint="fareast"/>
<w:spacing w:val="-3"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
<w:t></w:t>
</w:r>
<w:r>
<w:rPr>
<w:spacing w:val="-3"/>
</w:rPr>
<w:t>日期:</w:t>
</w:r>
<w:r>
<w:rPr>
<w:spacing w:val="-2"/>
</w:rPr>
<w:t></w:t>
</w:r>
<w:r>
<w:rPr>
<w:rFonts w:hint="fareast"/>
<w:spacing w:val="-2"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
<w:t></w:t>
</w:r>
<w:r>
<w:rPr>
<w:spacing w:val="-2"/>
</w:rPr>
<w:t></w:t>
</w:r>
<w:r>
<w:rPr>
<w:rFonts w:hint="fareast"/>
<w:spacing w:val="-2"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
<w:t></w:t>
</w:r>
<w:r>
<w:rPr>
<w:spacing w:val="-2"/>
</w:rPr>
<w:t></w:t>
</w:r>
<w:r>
<w:rPr>
<w:rFonts w:hint="fareast"/>
<w:spacing w:val="-2"/>
<w:lang w:val="EN-US" w:fareast="ZH-CN"/>
</w:rPr>
<w:t></w:t>
</w:r> </w:r>
<w:r> <w:r>
<w:rPr> <w:rPr>
<w:spacing w:val="-2"/> <w:spacing w:val="-2"/>
</w:rPr> </w:rPr>
<w:t> 年 月 </w:t> <w:t></w:t>
</w:r> </w:r>
</w:p> </w:p>
<w:p> <w:p>
...@@ -2027,7 +2086,7 @@ ...@@ -2027,7 +2086,7 @@
<w:pPr> <w:pPr>
<w:pStyle w:val="a6"/> <w:pStyle w:val="a6"/>
<w:spacing w:before="71" w:line="214" w:line-rule="auto"/> <w:spacing w:before="71" w:line="214" w:line-rule="auto"/>
<w:ind w:first-line="944" w:first-line-chars="400"/> <w:ind w:first-line="1180" w:first-line-chars="500"/>
<w:jc w:val="left"/> <w:jc w:val="left"/>
</w:pPr> </w:pPr>
<w:r> <w:r>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment