VOIDED orders print differently

General Discussions
Post Reply
Mstominator
Member
Member
Posts: 21
Joined: Tue Sep 01, 2015 11:42 am
Location: Owner
Contact:

VOIDED orders print differently

Post by Mstominator »

I have my kitchen printers printing initial orders and edited orders fine, BUT...when an order is voided it prints totally differently and it's unusable. The only part of use would be the order #. Where would I change that?

Also......when an ITEM is voided and replaced with another item, only the NEW item prints on the kitchen printer, so it would appear to the kitchen that it is an add-on not a replacement item.

Have a missed a setting somewhere?
User avatar
Scott
Site Admin
Site Admin
Posts: 2564
Joined: Wed Apr 16, 2003 5:35 pm
Location: Western PA

Re: VOIDED orders print differently

Post by Scott »

I already answered your question about voided order slips here: viewtopic.php?f=1&t=2252#p6999 The voids use a default slip which cannot be changed.

To print a list of changes on your kitchen ticket add the %er code to your script. This will cause it to print the most recent edits made to the items on that ticket since the last change. This will include toppings changes, voided items, added items etc. It is best to position this above or below the items list. In the snippet below it has been added just below the items list.

Code: Select all

;  ITEMS SECTION
:For Each Item
%el                    ; empty space
%lj%qt  %it            ; Qty+Item on first line
%po%si%f4%rj####: %si  ; special instr if there
%po%si%f1              ; back to font 1
%rj%nf                 ; Topings one-per-line
%rj%nf                 ; Right Justified
:End Item
;------- edits (most recent)
%el                    ; empty line edits
%f3                    ; font 3 for edits
%er                    ; most recent edit
;-------- end edits
;  BOTTOM SECTION
Scott
Mstominator
Member
Member
Posts: 21
Joined: Tue Sep 01, 2015 11:42 am
Location: Owner
Contact:

Re: VOIDED orders print differently

Post by Mstominator »

Thanks!
Post Reply