diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 42e54cfb..b349fd60 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -1241,5 +1241,39 @@ BUILD CHANGES OF NOTE Build 111 - Notification subscription list now with more detailed info +- Signatures on work order implemented + Here is how to print them on report: + =-=-=-=-=-=- + + + {{#each ayReportData}} +

Work order: {{ Serial }}

+
{{Notes}}
+ + {{#if CustomerSignature}} +

+
+ Customer signature:
+
+ Signed on: {{ ayDateTime CustomerSignatureCaptured}}
+ Signed by: {{CustomerSignatureName}}
+
+ + {{/if}} + + {{#if TechSignature}} +

+
+ Tech signature:
+
+ Signed on: {{ ayDateTime TechSignatureCaptured}}
+ Signed by: {{TechSignatureName}}
+
+ {{/if}} + {{/each}} + + + + =-=-=-=-=-=-=-