Last Modified Date in Header off by 1
paupline opened this issue · comments
I have used this node and works well except for any file exported in the month of January. When trying to import the dbf into Word perfect, the file is reported to be of an unsupported format. Upon review of the DBF file header, the Last Modified Date for the month of January shows a value of "00" and February is "01", etc...
Standard applications such as Excel and Quattro certainly don't care about the file header but Word Perfect seems to and throws a file format error. I have attached 2 screenshots of the said error. 1 was created Jan 2018 and the other in Feb 2017 for reference.
FYI We managed to modify the code to adjust for the month value and are able to import into Word Perfect now for Mail Merge.
The issue lies with Java reporting the month as 0 for January (see attached image001) This code was used to get the current month and pass it to the file header along with the current day and year. In most cases as mentioned previously, standard applications such as Excel and Quattro do not consider the file header and will open it. Word Perfect (any version) seems to evaluate the file header and if not formatted properly, it will be reported as an unsupported format.
This was fixed in the pending PR #20
We have now merged this in! So I'm going to close this. Thanks for your input!