Fill cells with null if amount is zero
This commit is contained in:
parent
e4aa8dff93
commit
cd657e10b4
@ -134,7 +134,14 @@ namespace RhSolutions.Services
|
||||
}
|
||||
else
|
||||
{
|
||||
cell.Value2 = amount;
|
||||
if (amount == 0)
|
||||
{
|
||||
cell.Value2 = null;
|
||||
}
|
||||
else
|
||||
{
|
||||
cell.Value2 = amount;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user