Print a seperate ticket for every dish

Hi,

I want to print a separate ticket for every dish. This is so the waiter can take the ticket and stick it onto the plate so the cooks know what to make and later the waiter knows what table it has to goto.

I made this template.

[LAYOUT]
{ORDERS}


[ORDERS]
<J21>{TICKET NO} | {TICKET TAG:Numéro de client}
<J00>
<C21>{ORDER INDEX}/{ORDER COUNT}
<F>-
[=('{GROUP CODE}'=='Wok' ? '<L10>- {QUANTITY} {NAME}' : '<L00>- {QUANTITY} {NAME}')]
{ORDER TAGS}
<J00>
<J00>
<L00> {NOTE}
<J00>
<C11> 
<XCT>27,105

[ORDER TAGS]
-- Format for order tags
<L00>     * {ORDER TAG QUANTITY} {ORDER TAG NAME}

[ORDER TAGS:Extra]
<EB>
<L00>     !! (EXTRA) {ORDER TAG QUANTITY} {ORDER TAG NAME} !!
<DB>

[ORDER TAGS:Note]
<EB>
<L00>     !! (NOTE) {ORDER TAG QUANTITY} {ORDER TAG NAME} !!
<DB>

This works, the problem is that if the cashier uses the + or - buttons to add another dish the printer will print the quantity 2 on the same ticket.

How do I separate those?