Fill cells with null if amount is zero

This commit is contained in:
Sergey Chebotar 2023-06-21 16:45:38 +03:00
parent e4aa8dff93
commit cd657e10b4

View File

@ -134,7 +134,14 @@ namespace RhSolutions.Services
} }
else else
{ {
cell.Value2 = amount; if (amount == 0)
{
cell.Value2 = null;
}
else
{
cell.Value2 = amount;
}
} }
} }
} }