@@ -24,7 +24,7 @@ public class ExcelExporter(IExcelWorkerProvider provider, DataType dataType, Str
2424 {
2525 worker
2626 . SetCell ( 0 , 0 , LocalizedStrings . Id ) . SetStyle ( 0 , typeof ( string ) )
27- . SetCell ( 1 , 0 , LocalizedStrings . Time ) . SetStyle ( 1 , "yyyy-MM-dd HH:mm:ss.fff zzz " )
27+ . SetCell ( 1 , 0 , LocalizedStrings . Time ) . SetStyle ( 1 , "yyyy-MM-dd HH:mm:ss.fff" )
2828 . SetCell ( 2 , 0 , LocalizedStrings . Price ) . SetStyle ( 2 , typeof ( decimal ) )
2929 . SetCell ( 3 , 0 , LocalizedStrings . Volume ) . SetStyle ( 3 , typeof ( decimal ) )
3030 . SetCell ( 4 , 0 , LocalizedStrings . Direction )
@@ -80,7 +80,7 @@ public class ExcelExporter(IExcelWorkerProvider provider, DataType dataType, Str
8080 {
8181 worker
8282 . SetCell ( 0 , 0 , LocalizedStrings . Id ) . SetStyle ( 0 , typeof ( string ) )
83- . SetCell ( 1 , 0 , LocalizedStrings . Time ) . SetStyle ( 1 , "yyyy-MM-dd HH:mm:ss.fff zzz " )
83+ . SetCell ( 1 , 0 , LocalizedStrings . Time ) . SetStyle ( 1 , "yyyy-MM-dd HH:mm:ss.fff" )
8484 . SetCell ( 2 , 0 , LocalizedStrings . Price ) . SetStyle ( 2 , typeof ( decimal ) )
8585 . SetCell ( 3 , 0 , LocalizedStrings . Volume ) . SetStyle ( 3 , typeof ( decimal ) )
8686 . SetCell ( 4 , 0 , LocalizedStrings . Direction )
@@ -124,7 +124,7 @@ public class ExcelExporter(IExcelWorkerProvider provider, DataType dataType, Str
124124 return Do ( worker =>
125125 {
126126 worker
127- . SetCell ( 0 , 0 , LocalizedStrings . Time ) . SetStyle ( 0 , "yyyy-MM-dd HH:mm:ss.fff zzz " )
127+ . SetCell ( 0 , 0 , LocalizedStrings . Time ) . SetStyle ( 0 , "yyyy-MM-dd HH:mm:ss.fff" )
128128 . SetCell ( 1 , 0 , LocalizedStrings . Portfolio )
129129 . SetCell ( 2 , 0 , LocalizedStrings . TransactionId )
130130 . SetCell ( 3 , 0 , LocalizedStrings . OrderId )
@@ -193,7 +193,7 @@ public class ExcelExporter(IExcelWorkerProvider provider, DataType dataType, Str
193193
194194 worker
195195 . SetCell ( 0 , rowIndex , LocalizedStrings . Time )
196- . SetCell ( 1 , rowIndex , message . ServerTime ) . SetStyle ( 1 , "yyyy-MM-dd HH:mm:ss.fff zzz " ) ;
196+ . SetCell ( 1 , rowIndex , message . ServerTime ) . SetStyle ( 1 , "yyyy-MM-dd HH:mm:ss.fff" ) ;
197197
198198 var columnIndex = 0 ;
199199
0 commit comments