Multiple Lines on check stub

shadow4412

Member
I have been able to successfully produce a check but I am having issues with the stub and multiple voucher/invoices to be paid. The issue is that it appears to insert lines/rows instead of inserting data into the existing defined table. This causes a fluctuation in the stub format with lines that are required to print at specific positions
 
We had a similar problem. Our developer switched the format around so that the check was at the top of the page, and the stub was the lower 2/3rds or the page. The number of rows didn't seem to affect subsequent pages then.
 
If you want to keep the cheque stub at the bottom of the page and the invoice/voucher stub at the top; and assuming you're using a Word RTF template; do the following:

(1) Define the cheque stub using a <?template:template_name?> decalaration. This will allow you to print the cheque stub using a <?call-template:template_name?> directive.

(2) Now, the trick is to define your RTF template as having different headers and footers on the 1st page. Use the /File/Page Setup Word command to change the layout to have a different 1st page. This should allow you to have a different set of header and footer on the 1st page.

(3) Putting it all together... You can then use the <?call-template?> directive in the 1st page's footer to print the cheque stub. This will ensure that the cheque stub always appears at the bottom of the page, at the same fixed area - which is the page footer.

Any vouchers/invoices will spill into the succeeding pages.
 
Back
Top