Explorar el Código

Merge pull request #232 from crvv/master

use datetime format for Cell.SetDateTime
Geoffrey J. Teale hace 9 años
padre
commit
b23e4ffe6d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      cell.go

+ 1 - 1
cell.go

@@ -123,7 +123,7 @@ func (c *Cell) SetDate(t time.Time) {
 }
 
 func (c *Cell) SetDateTime(t time.Time) {
-	c.SetDateTimeWithFormat(timeToExcelTime(timeToUTCTime(t)), builtInNumFmt[14])
+	c.SetDateTimeWithFormat(timeToExcelTime(timeToUTCTime(t)), builtInNumFmt[22])
 }
 
 func (c *Cell) SetDateTimeWithFormat(n float64, format string) {