File tree 1 file changed +3
-5
lines changed
CashFlowAnalyzer.Client/Services/SpreadsheetReader
1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -206,7 +206,9 @@ public async Task<List<RaiffeisenRecord>> ReadRaiffeisenSpreadsheetAsync(Stream
206
206
}
207
207
record . ProcessingDate = RaiffeisenParseDate ( cellValue ) ;
208
208
}
209
- else if ( columnTitle == RaiffeisenColumns [ 5 ] )
209
+ if ( string . IsNullOrEmpty ( cellValue ) )
210
+ continue ;
211
+ if ( columnTitle == RaiffeisenColumns [ 5 ] )
210
212
{
211
213
record . PartnerAccountNumber = cellValue ;
212
214
}
@@ -226,10 +228,6 @@ public async Task<List<RaiffeisenRecord>> ReadRaiffeisenSpreadsheetAsync(Stream
226
228
{
227
229
record . Note = cellValue ;
228
230
}
229
- else if ( columnTitle == RaiffeisenColumns [ 10 ] )
230
- {
231
- record . Note = cellValue ;
232
- }
233
231
else if ( columnTitle == RaiffeisenColumns [ 13 ] )
234
232
{
235
233
if ( cellValue . StartsWith ( '-' ) )
You can’t perform that action at this time.
0 commit comments