diff options
Diffstat (limited to 'pkg/datamaps/reader.go')
-rw-r--r-- | pkg/datamaps/reader.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pkg/datamaps/reader.go b/pkg/datamaps/reader.go index b6e43e8..cda52ab 100644 --- a/pkg/datamaps/reader.go +++ b/pkg/datamaps/reader.go @@ -125,6 +125,11 @@ func cellVisitor(c *xlsx.Cell) error { x, y := c.GetCoordinates() cellref := xlsx.GetCellIDStringFromCoords(x, y) + // TODO: we need to store the c.NumFmt value here in the + // database so we can reply it again when we write the values + // to the master or elsewhere. We should keep the value itself + // in its unformatted state - i.e a date being something like 488594. + ex := extractedCell{ Cell: c, Value: c.Value, |