I am having trouble printing multiple copies of a receipt. Currently developing on React Native using the Zebra SDK. I created this receipt on Zebra Design for Developer 3. I have attempted to use the PQ command, but there are multiple PQ commands in this receipt. Increasing the PQ count to 3 (PQ3), prints 3 copies of a particular section. For example, I increased PQ to 3 throughout the whole receipt and it prints 3 headers, 3 bodys, and 3 footers. I can't figure out a way to print x amount of copies for the whole receipt.
^FX------------------------------------^FS
^FX HEADER ^FS
^FX------------------------------------^FS
CT~~CD,~CC^~CT~
^XA
~TA000
~JSN
^LT0
^MNN
^MTD
^PON
^PMN
^LH0,0
^JMA
^PR5,5
~SD10
^JUS
^LRN
^CI27
^PA0,1,1,0
^XZ
^XA
^MMT
^PW822
^LL368
^LS0
^PQ1,,,Y
^XZ
^FX------------------------------------^FS
^FX BODY ^FS
^FX------------------------------------^FS
CT~~CD,~CC^~CT~
^XA
~TA000
~JSN
^LT0
^MNN
^MTD
^PON
^PMN
^LH0,0
^JMA
^PR5,5
~SD10
^JUS
^LRN
^CI27
^PA0,1,1,0
^XZ
^XA
^MMT
^PW822
^LL589
^LS0
^PQ1,,,Y
^XZ
^FX------------------------------------^FS
^FX FOOTER ^FS
^FX------------------------------------^FS
CT~~CD,~CC^~CT~
^XA
~TA000
~JSN
^LT0
^MNN
^MTD
^PON
^PMN
^LH0,0
^JMA
^PR5,5
~SD10
^JUS
^LRN
^CI27
^PA0,1,1,0
^XZ
^XA
^MMT
^PW822
^LL217
^LS0
^PQ1,,,Y
^XZ
1 Replies
^PQ specifies the number of labels to print. When printing receipt with template, we actually send the printer three labels, header, body and footer consecutively to form one receipt. To print three copies of the same receipt, we need to send the header, body & footer three times. If you want to use ^PQ to control the copies of receipt, you need to remove the extra ^XA & ^XZ in between, i.e., keep the very first ^XA and the very last ^XZ. Put one ^PQ statement right before the ^XZ.