no message
This commit is contained in:
@@ -88,7 +88,7 @@ public class ExportDVMPackageToExcel extends Pass_2021<Vector<DVMPackage>> {
|
||||
Log.Writeln_("Папка не выбрана.");
|
||||
return false;
|
||||
}
|
||||
res = new File(dir, Utils.getDateName("packages") + ".xls");
|
||||
res = new File(dir, CommonUtils.getDateName("packages") + ".xls");
|
||||
return true;
|
||||
}
|
||||
//---
|
||||
@@ -104,7 +104,7 @@ public class ExportDVMPackageToExcel extends Pass_2021<Vector<DVMPackage>> {
|
||||
long milliseconds = object.ChangeDate - object.StartDate;
|
||||
total_time += milliseconds;
|
||||
//--
|
||||
lines.add("время выполнения " + Utils.printSplittedDateInterval(milliseconds));
|
||||
lines.add("время выполнения " + CommonUtils.printSplittedDateInterval(milliseconds));
|
||||
return String.join("; ", lines);
|
||||
}
|
||||
//---
|
||||
@@ -354,7 +354,7 @@ public class ExportDVMPackageToExcel extends Pass_2021<Vector<DVMPackage>> {
|
||||
offset.Inc();
|
||||
}
|
||||
if (target.size() > 1) {
|
||||
addInfoRow(offset.getValue(), "всего задач " + total_tasks_count + "; общее время выполнения " + Utils.printSplittedDateInterval(total_time));
|
||||
addInfoRow(offset.getValue(), "всего задач " + total_tasks_count + "; общее время выполнения " + CommonUtils.printSplittedDateInterval(total_time));
|
||||
offset.Inc();
|
||||
}
|
||||
addHeaderRow(offset.getValue(),
|
||||
|
||||
Reference in New Issue
Block a user