1> I am unable to Increase the font size of the ticket, but I was able to change the font size of Date Time and Ticket. By Changing the L00 To L01 but it does not work in J10 . I use Epson T81 Receipt Printer.
2> And Is there a Option , When I click cash button and it Prints 2 Tickets instead of 1, I mean Duplicate ticket ?
Please check the image for reference.
Jesse
September 17, 2015, 8:00pm
2
Show your template please.
Yes just go to the rule that has the Execute Print Job action and click Add Action and right click inside the box choose show all actions and then add the same action again. This will print it twice.
[LAYOUT]
-- General layout
<T>Ticket
<L01>Date:{TICKET DATE}
<L01>Time:{TIME}
{ENTITIES}
<L01> No:{TICKET NO}
<F>-
{ORDERS}
<F>=
<EB>
{DISCOUNTS}
[<J10>Total Gift:|{ORDER STATE TOTAL:Gift}]
{SERVICES}
<J10>Total:|{TICKET TOTAL}
{PAYMENTS}
<DB>
<F>=
<C10>T H A N K Y O U
[DISCOUNTS]
<J00>{CALCULATION NAME} %{CALCULATION AMOUNT}|{CALCULATION TOTAL}
[SERVICES]
<J00>{CALCULATION NAME}|{CALCULATION TOTAL}
[PAYMENTS]
<J00>{PAYMENT NAME}|{PAYMENT AMOUNT}
[ORDERS]
-- Default format for orders
<J00>- {QUANTITY} {NAME}|{TOTAL PRICE}
{ORDER TAGS}
[ORDERS:Gift]
-- Format for gifted orders
<J00>- {QUANTITY} {NAME}|**GIFT**
{ORDER TAGS}
[ORDERS:Void]
-- Nothing will print for void lines
[ORDER TAGS]
-- Format for order tags
<J00> * {ORDER TAG NAME} | {ORDER TAG PRICE}
[ENTITIES:Table]
-- Table entity format
<L01>Table: {ENTITY NAME}
[ENTITIES:Customer]
-- Customer entity format
<J00>Customer: {ENTITY NAME} | {ENTITY DATA:Phone}
JTRTech
September 17, 2015, 8:02pm
4
What pasting it be sure to select all the code and click the < / > button on the toolbar to make sure the forum doesn’t strip the formatting code. LOL, already done it
Jesse
September 17, 2015, 8:04pm
5
Did you read this?
##General
<T> (Title) : When used it will format line as a title.
<F> (Fill) : For example <F>- creates a line with - chars or <F>= creates a line with = chars.
<EB> (Enable Bold) Prints everything Bold until <DB> command.
<DB> (Disable Bold) Ends <EB> command
<Jxy> (Justified) Justifies a line from pipe char. <J00>Total:|0.00 separates line from pipe (|) char. It aligns Total: part left and 0.00 part right. When used on a ESC/POS compatible ticket printer numeric parts sets font size. Fi…
Special attention to this:
For example <J10> sets font height to 1 and font width to 0.
Your template has no size changes for Orders which is the line you showed in your screenshot as wanting to change.
[ORDERS]
-- Default format for orders
<J00>- {QUANTITY} {NAME}|{TOTAL PRICE}
{ORDER TAGS}
2 Likes
JTRTech
September 17, 2015, 8:05pm
6
The <L01>
in;
<L01>Date:{TICKET DATE}
<L01>Time:{TIME}
and
<L01> No:{TICKET NO}
Change back to <L00>
Then change;
[ORDERS]
-- Default format for orders
<J00>- {QUANTITY} {NAME}|{TOTAL PRICE}
{ORDER TAGS}
to
[ORDERS]
-- Default format for orders
<J01>- {QUANTITY} {NAME}|{TOTAL PRICE}
{ORDER TAGS}
The two numbers are height and width if tweaking size.
1 Like