Questions tagged [invoice]

An invoice or bill is a commercial document issued by a seller to the buyer, indicating the products, quantities, and agreed prices for products or services the seller has provided the buyer. An invoice indicates the sale transaction only.

An invoice or bill is a commercial document issued by a seller to the buyer, indicating the products, quantities, and agreed prices for products or services the seller has provided the buyer. An invoice indicates the sale transaction only.

Payment terms are independent of the invoice and are negotiated by the buyer and the seller. Payment terms are usually included on the invoice. The buyer could have already paid for the products or services listed on the invoice.

Buyer can also have a maximum number of days in which to pay for these goods and is sometimes offered a discount if paid before the due date.

749 questions
5
votes
1 answer

Stripe: Add invoice item to invoice

I'm having a problem to adding invoice item in monthly invoice. Here is my billing implementation. After getting an invoice.created webhook from the Stripe, I calculate the extra payment amount and trying to update the current invoice, by adding…
Danis
  • 1,978
  • 3
  • 16
  • 27
5
votes
3 answers

Implementing a sales tax strategy for Invoices

Here in South Africa we have Value Added Tax (VAT) which is pretty much identical to Sales Tax and is currently fixed at 14%, but could change at any time. I need to include VAT on invoices (which are immutable) consisting of several Invoice Lines.…
Petrus Theron
  • 27,855
  • 36
  • 153
  • 287
5
votes
0 answers

Download pdf invoice from PayPal

Is it possible to script the download pdf invoices from PayPal? My customer has many invoices, created via the REST invoice API and wants to archive them in his own offline archive. I found out how to show the pdf directly via its invoice id but it…
5
votes
3 answers

How to handle price fluctuations in an invoice application?

In an invoicing application, consider following: I have a products table that also contains the price of the product. And then I have an invoice and invoice_lines table and in each invoice line, I refer to the product id along with quantity. In this…
Mohsin Shafique
  • 935
  • 1
  • 7
  • 14
5
votes
1 answer

How to get Order Time in Magento?

I am trying to rewrite my PDF invoices in Magento. How can i display the created time without the date of a Order? I am preparing the class insertOrder() in…
Alisinasyon
  • 113
  • 1
  • 1
  • 7
4
votes
3 answers

How to print Tickets/Invoice

Anyone know a class written in C # or VB.NET that serves to print tickets in a mini printer? Printer: EPSON TM-U220PD Thank you for your help.
Jonathan Edgardo
  • 503
  • 1
  • 9
  • 23
4
votes
4 answers

Odoo v12 API get invoice PDF

This question got me started with my C# Odoo API implementation. I have working code using CookComputing.XmlRpcV2 to retrieve a list of invoices. What I would like to implement is the option to retrieve/download a PDF of a selected invoice. Does…
pritaeas
  • 2,073
  • 5
  • 34
  • 51
4
votes
1 answer

Automatic invoicing in magento

I have created new custom product type which extends virtual product in magento. Now I would like to block automatic invoicing for online payments eg. paypal when order contains at least one custom product type. All orders with such product have to…
artega
  • 125
  • 1
  • 2
  • 5
4
votes
2 answers

What are the requirements for showing the credit memo button in the backend of Magento CE 1.9.2.1 for an invoice?

I have got some invoices, that had the wrong state in magento, but the right status "paid" in the payment extension. The reason was a bug in the extension. So I fixed that by setting the state of these invoices to "2" for paid in sales_flat_invoice…
MageHawk
  • 51
  • 1
  • 5
4
votes
3 answers

What is the standard way to write a program to generate invoices?

I am building a billing system. The system needs to generate monthly invoices to Clients. What I am doing now is using a For loop to check all the clients their previous invoices and decide if it is the time to generate a invoice for the client.…
leon
  • 10,085
  • 19
  • 60
  • 77
4
votes
1 answer

Remove Shipping Method and Payment Method from invoice pdf in Magento

I wanto completely remove the Shipping Method and Payment Method section from invoice pdf in Magento. My invoice pdf is look like this: I look the app/code/core/mage/Sales/Model/Order/Pdf/Abstract.php file, here I can change the labels but I can't…
Deepu Sasidharan
  • 5,193
  • 10
  • 40
  • 97
4
votes
2 answers

How to apply a payment to an invoice with the QBO API v3 in C#?

How do I apply a payment to an existing invoice with the QuickBooks Online API v3 in C#? I have tried the following code: private void UpdateInvoice(Payment payment) { Invoice oldInvoice = cmbInvoices.SelectedItem as Invoice; …
Thomas Jaeger
  • 923
  • 1
  • 9
  • 27
4
votes
1 answer

Invoice Discount: Negative line items vs Internal properties

Should discount on invoice items and entire invoices be negative line items or separate properties of an invoice? In a similar question, Should I incorporate list of fees/discounts into an order class or have them be itemlines, the asker focuses…
Petrus Theron
  • 27,855
  • 36
  • 153
  • 287
4
votes
2 answers

display tax in woocommerce invoice

Unfortunately woocommerce doesn't display its invoices the way it is supposed to be in Germany. Right now it's product name - quantity - price I need the invoice mail template to say product name - *single price* - *tax rate (e.g. 19%)* -…
user2704185
  • 41
  • 1
  • 1
  • 3
4
votes
6 answers

What is the best standard to use for business document exchange (invoices, POs etc)?

If I need to implement sending and receiving of business documents from system to system (invoices, POs, remittance advice, etc) what standard would you recommend for best interop and why? It could be XML or otherwise.
WW.
  • 23,793
  • 13
  • 94
  • 121
1
2
3
49 50