This commit is contained in:
2021-06-21 23:07:48 +00:00
parent d6057a00a0
commit c1eab68047

View File

@@ -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:
=-=-=-=-=-=-
<html>
<body>
{{#each ayReportData}}
<h2>Work order: {{ Serial }}</h2>
<div>{{Notes}}</div>
{{#if CustomerSignature}}
<br/><br/>
<div>
Customer signature:<br/>
<img src="{{{CustomerSignature}}}" height="40px"/><br/>
Signed on: {{ ayDateTime CustomerSignatureCaptured}} <br/>
Signed by: {{CustomerSignatureName}}<br/>
</div>
{{/if}}
{{#if TechSignature}}
<br/><br/>
<div>
Tech signature:<br/>
<img src="{{{TechSignature}}}" height="40px"/><br/>
Signed on: {{ ayDateTime TechSignatureCaptured}} <br/>
Signed by: {{TechSignatureName}}<br/>
</div>
{{/if}}
{{/each}}
</body>
</html>
=-=-=-=-=-=-=-