Ver código fonte

优化抄表导入功能

java110 5 anos atrás
pai
commit
dcdf9545ed

+ 1 - 1
service-front/src/main/java/com/java110/front/smo/assetImport/impl/ImportRoomFeeSMOImpl.java

@@ -167,7 +167,7 @@ public class ImportRoomFeeSMOImpl extends BaseComponentSMO implements IImportRoo
 
 //
 
-            String startTime = excelDoubleToDate(os[5].toString());
+            String startTime = excelDoubleToDate(os[4].toString());
             String endTime = excelDoubleToDate(os[6].toString());
             Assert.isDate(startTime, DateUtil.DATE_FORMATE_STRING_A, (osIndex + 1) + "行开始时间格式错误 请填写YYYY-MM-DD hh:mm:ss 文本格式");
             Assert.isDate(endTime, DateUtil.DATE_FORMATE_STRING_A, (osIndex + 1) + "行结束时间格式错误 请填写YYYY-MM-DD hh:mm:ss 文本格式");