Commit ce214a57 authored by 李秀明's avatar 李秀明

fix(jg): 修改地址取值

parent d78f5813
...@@ -51,10 +51,9 @@ ...@@ -51,10 +51,9 @@
isn.sequence_nbr AS sequenceNbr, isn.sequence_nbr AS sequenceNbr,
isn.install_unit_name AS installUnitName, isn.install_unit_name AS installUnitName,
isn.apply_no AS applyNo, isn.apply_no AS applyNo,
isn.province AS province, isn.province_name AS provinceName,
isn.city AS city, isn.city_name AS cityName,
isn.county AS county, isn.county_name AS countyName,
isn.street AS street,
isn.address AS address, isn.address AS address,
isn.install_start_date AS installStartDate, isn.install_start_date AS installStartDate,
isn.install_license_no AS installLicenseNo, isn.install_license_no AS installLicenseNo,
......
...@@ -265,7 +265,7 @@ public class JgInstallationNoticeServiceImpl extends BaseService<JgInstallationN ...@@ -265,7 +265,7 @@ public class JgInstallationNoticeServiceImpl extends BaseService<JgInstallationN
placeholders.put("produceCode", getValue.apply("produceCode")); // TODO: 制造编号 placeholders.put("produceCode", getValue.apply("produceCode")); // TODO: 制造编号
placeholders.put("produceUnitName", getValue.apply("produceUnitName")); placeholders.put("produceUnitName", getValue.apply("produceUnitName"));
placeholders.put("produceLicenseNum", getValue.apply("produceLicenseNum")); placeholders.put("produceLicenseNum", getValue.apply("produceLicenseNum"));
placeholders.put("fullAddress", getValue.apply("province") + getValue.apply("city") + getValue.apply("county") + getValue.apply("street") + getValue.apply("address")); placeholders.put("fullAddress", getValue.apply("provinceName") + getValue.apply("cityName") + getValue.apply("countyName") + getValue.apply("address"));
placeholders.put("installStartDate", getValue.apply("installStartDate")); placeholders.put("installStartDate", getValue.apply("installStartDate"));
placeholders.put("installType", getValue.apply("installType")); // TODO: 施工类别 placeholders.put("installType", getValue.apply("installType")); // TODO: 施工类别
placeholders.put("installLicenseNo", getValue.apply("installLicenseNo")); placeholders.put("installLicenseNo", getValue.apply("installLicenseNo"));
......
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