Questions tagged [receipt]

For any receipt related questions, digital or other forms.

283 questions
-1
votes
0 answers

Reciept POS printout issues excel

I have issues using printing out a receipt from my POS Project, as you can see from the images, i selected area K1:N for print out, but using xthermal printer of size 80mm X 297mm or 210mm it becomes impossible to fit my receipt print area…
-1
votes
3 answers

How to fix the repeating of the last element of the list and not showing the other elements of list?

cart = ['Fries','Nuggets','Chicken'] quantity = [1, 2, 3] price = [123, 45, 65] amount = 0 def Check_Inventory(): print(f'Orders \t\t\t\t Qty. \t\t Price (php) \n') for count, mycart in enumerate(cart): while len(mycart) != 10: …
BugLover
  • 1
  • 2
-1
votes
1 answer

How to generate all PDF with all content on a single page?

I am working on continuous printing of receipts on a thermal printer. To do this I need to generate PDF to send to printer. Printer uses 58mm roll of paper. If the content is broken down into multiple pages of fixed height, last page will often have…
Djuka
  • 505
  • 5
  • 19
-1
votes
1 answer

Receipt like output in c#

int choice, quanti, decide, total, cash; double change; string dcount; while (true) { Console.Clear(); string w = "WELCOME "; Console.SetCursorPosition((Console.WindowWidth - w.Length) / 2, Console.CursorTop); //…
MULTI FANDOM
  • 3
  • 1
  • 4
-1
votes
1 answer

POS receipt print cannot make paper cut using python

Problem We are working on a bigger project where we need to make a POS receipt print. We are able to make a print through the browser but the problem is that we cannot make a cut or a partial cut. Win32 API We have tried with Win32 API which work…
-1
votes
1 answer

String alignment on receipt

How to align the text on string in the right? This is my code to generate the string for (int i = 0; i <= qtd_itens - 1; i++) { String adicionais = dados_msg[i].addon; //A soma do pedido + os pontos…
Matheus Arruda
  • 195
  • 1
  • 11
-1
votes
1 answer

is there any lib for website connect to printer?

I am using ruby 2.3.3 and rails 5. Can you instruct me the way to print receipt in printer. I had an idea that I just build a pdf-page then use function "print" of browser. But if you have any great solution for this problem, please share with…
Peter89
  • 706
  • 8
  • 26
-1
votes
1 answer

Attendance Confirmation Page

I am creating a page where students log in their attendance for a class by putting in their SID and a key provided by the professor. Then it will go through the servlet and post that the student was there on a google spreadsheet (backend). My…
whw
  • 1
-1
votes
1 answer

how can I create a list of receipts from database in javafx?

I have two database table, "product" table has those fields--> prID, transactionID, itemName, itemQuantity, itemPrice. "payment" table has those fields--> pyID, paymentID, paymentType, paymentAmount, itemPrice. transactionID and paymentID are…
user1971804
  • 111
  • 1
  • 3
  • 11
-1
votes
1 answer

C# POS fast receipt printing

I'd like to print the receipt of my POS application (Winform C#) My first attempt is using crystal report, but it's no fast enough when there're many customers in line, even some of them will leave the line. So I have idea to print in DOS mode. I…
Akhtar
  • 69
  • 3
  • 10
-2
votes
1 answer

User enters what he wants, as well as price and amount

My program should ask the user for the name, the price as well as the amount of what he wants, until he presses "x". At this point the program should print the receipt. How can I save all the user inputs without knowing how many items he wishes to…
cndolo
  • 27
  • 2
  • 8
-2
votes
1 answer

Receipt printing - how to not show zero value rows

I am setting up a receipt printout from Excel 2010. I have multiple items on the worksheet and can print everything ok. The receipt is to be printed in a busy environment and as such we just want the operators to enter the numbers and press…
-2
votes
1 answer

jZebra can't print from external server

I have this problem when using jZebra applet to print receipt. In local server it has no problems, but when it is on external server, the applet won't run at all. Has somebody encountered the same situation here? Is it a java permission issue, not…
1 2 3
18
19