07/01/2019 instead of 7/1/2019 storeEval Current System Date

Since storeEval uses a JavaScript snippet, you can use toLocaleDateString()

You will need to use a locale string that produces a date in the format you want. e.g. “en-GB”

The following works for me:
Command: storeEval
Target: new Date().toLocaleDateString(“en-GB”)
Value: MyDateString

Command: echo
Target: ${MyDateString}

Produces the Log entries:

#### [info] Executing: | storeEval | new Date().toLocaleDateString("en-GB" ) | MyDateString |
#### [info] Store '16/01/2019' into 'MyDateString'
#### [info] Executing: | echo | ${MyDateString} | |
#### [info] Expand variable '${MyDateString}' into '16/01/2019'
#### [info] echo: 16/01/2019