Development #46

Merged
djankowski merged 2 commits from Development into master 2023-07-26 09:49:08 -04:00
3 changed files with 5 additions and 0 deletions

Binary file not shown.

Binary file not shown.

View File

@ -1887,6 +1887,11 @@ i = 0;
case "{PDFTime}": case "{PDFTime}":
plstr = plstr.Replace("{PDFTime}", DateTime.Now.ToString("HH:mm:ss")); plstr = plstr.Replace("{PDFTime}", DateTime.Now.ToString("HH:mm:ss"));
break; break;
// F2023-087: Added PDFDate at PDFTime - note that cannot have multiple tokens in a conditional because of reg expression
// processing.
case "[PDFDateAtTime]":
plstr = plstr.Replace("[PDFDateAtTime]", DateTime.Now.ToString("MM/dd/yyyy") + " at " + DateTime.Now.ToString("HH:mm:ss"));
break;
case "{EOPNUM}": case "{EOPNUM}":
case "[EOPNUM]": case "[EOPNUM]":
case "{PREDELIMEOPNUM}": case "{PREDELIMEOPNUM}":