Created
September 26, 2011 23:30
-
-
Save florianfiegel/1243764 to your computer and use it in GitHub Desktop.
Script for GrandTotal (http://www.grandtotal.biz/GrandTotal/) that changes the unit "h" as it is exported for example from mite to the unit "Stunden".
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (grandtotalrecord.unit() == "h") | |
"Stunden" | |
else | |
grandtotalrecord.unit(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment