Page 1 of 1

Job report

Posted: Sun Feb 18, 2018 9:44 pm
by SeanP
I have had a few goes at editing the job report to just list parts cut without success.

Any chance you could give me a few tips please Les.

Thanks
Sean

Re: Job report

Posted: Mon Feb 19, 2018 2:33 pm
by Les Newell
Do you want just the part names?

Re: Job report

Posted: Mon Feb 19, 2018 10:16 pm
by SeanP
Part names and count like the summary report but without all the other stuff, thanks

Re: Job report

Posted: Tue Feb 20, 2018 9:22 am
by Les Newell
This should be all you need:

Code: Select all

<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Job report</title>
</head>
<body>
<h1 align="center"><b>Job report</b></h1>
<p align="left"><b>Job: @JobName@</b></p>
<p align="left"><b>Report created: @Date@ @Time@</b></p>
<h3 align="center">&nbsp;Parts</h3>

<!--SectionParts-->
<p>Part: @Name@</p>
<p>Number of parts cut: @PartsCut@</p>
<p>&nbsp;</p>
<!--EndSection-->
<!--SectionFooter-->
<hr>
<p align="center">
Page @PageNumber@ of @PageCount@
</p>
<!--EndSection-->

</body>
</html>

Re: Job report

Posted: Tue Feb 20, 2018 10:52 pm
by SeanP
Ah that's great Les just what I was looking for, thanks a million.