From c1eab68047bd8311b24c2fc0b9cbdbd43cedbe93 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Mon, 21 Jun 2021 23:07:48 +0000 Subject: [PATCH] --- ayanova/devdocs/todo.txt | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) 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}} + + + + =-=-=-=-=-=-=-