【DAOP-1.0】企业认证
【功能点】测试问题处理
Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -94,7 +94,7 @@ public class ChangeInfoUtil { | ... | @@ -94,7 +94,7 @@ public class ChangeInfoUtil { |
94 | } | 94 | } |
95 | 95 | ||
96 | private static String getRegistrationDate(Date date) { | 96 | private static String getRegistrationDate(Date date) { |
97 | return DateUtil.getDateToString(date); | 97 | return DateUtil.getShortDateToString(date); |
98 | } | 98 | } |
99 | 99 | ||
100 | private static CompareResult getCompareResult(String comment,String name,String oldVenue,String newVenue){ | 100 | private static CompareResult getCompareResult(String comment,String name,String oldVenue,String newVenue){ |
... | @@ -136,7 +136,7 @@ public class ChangeInfoUtil { | ... | @@ -136,7 +136,7 @@ public class ChangeInfoUtil { |
136 | if("1".equals(businessLicenseTerm)){ | 136 | if("1".equals(businessLicenseTerm)){ |
137 | return "长期有效"; | 137 | return "长期有效"; |
138 | } | 138 | } |
139 | return String.format("%s至%s",businessLicenseStartDate,businessLicenseEndDate); | 139 | return String.format("%s至%s",DateUtil.getDateToString(businessLicenseStartDate),DateUtil.getDateToString(businessLicenseEndDate)); |
140 | } | 140 | } |
141 | 141 | ||
142 | } | 142 | } | ... | ... |
-
Please register or sign in to post a comment