Dear Rob / All<br><br>I have studied <a href="http://www.kohadocs.org/codingguidelines.html">http://www.kohadocs.org/codingguidelines.html</a> and <a href="http://wiki.koha.org/doku.php?id=en:development:codingguidelines">http://wiki.koha.org/doku.php?id=en:development:codingguidelines</a> for coding guidelines in Koha but looking for more.<br>
<br>Actually I want to make some additional reports in koha.&nbsp; For example I want to have a report of Biblio records between two limits of barcode numbers.&nbsp; Now the query for this report is as under:<br><br>SELECT items.barcode, biblio.title, biblio.author,&nbsp; biblio.copyrightdate, items.price<br>
FROM items, biblio<br>WHERE items.biblionumber=biblio.biblionumber<br>AND CAST(items.barcode AS UNSIGNED)<br>BETWEEN 1 AND 10000<br>ORDER BY CAST(items.barcode AS UNSIGNED);<br><br>Can someone guide me how to create .pl and .tmpl file for this query.&nbsp; <br>
<br>User will input starting barcode and ending barcode in form and will get the results in PDF/HTML format<br><br>Ata<br><br>LISolutions<br><a href="http://www.lisolutions.org/">http://www.lisolutions.org/</a><br><br><br>
<br>