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
4
votes
1 answer

Magento: Create an invoice with invoice number = order number?

I am using this code to create an invoice in Magento: $invoiceId = Mage::getModel('sales/order_invoice_api')->create($order->getIncrementId(), array()); This automatically assigns a number (increment_id) to the invoice, for example 100016050. I…
user1540714
  • 1,929
  • 4
  • 20
  • 23
3
votes
3 answers

Invoicing database design

I created an application few days ago that deals with invoicing. I would like to know how to best integrate a discount to my invoices. Should I put it as a negative item (in the invoice_items table) or should I create a "discount" column in the…
redmoon7777
  • 4,498
  • 1
  • 24
  • 26
3
votes
2 answers

get invoice id from a Mage_Sales_Model_Order_Invoice object

I'm writing an observer for the sales_order_invoice_register event, I'd like to get the invoice number that has just saved. I can't find the function for retrieving that ID, none of those commented calls works. Any idea? Here the code public…
Infrid
  • 723
  • 5
  • 12
  • 28
3
votes
1 answer

what's the event name when you create a new invoice in magento?

when you create an invoice in the admin panel, what is the name of that event for an observer? I've tried *sales_order_invoice_register* and *sales_order_invoice_pay* but it doesn't work.
Infrid
  • 723
  • 5
  • 12
  • 28
3
votes
2 answers

How do you generate a stripe invoice after a successfull checkout session

Quite suprisingly, it is not possible to automatically generate an invoice after as successfull checkout session with Stripe. An invoice must always come before a payment in the stripe system. I am left with having to recreate the invoice through a…
David Geismar
  • 3,152
  • 6
  • 41
  • 80
3
votes
1 answer

Stripe - How To Add Product Behalf Of Connected Account?

Normally when using stripe I can create products and add tax rates, shipping rates. After the payment I can create invoice. I want to do the same thing when using connected account. In my app I want users to create stores and this stores' product…
Güney
  • 91
  • 2
  • 9
3
votes
0 answers

Extract entities from text (invoice/receipt) | Python

I am having a problem while trying to extract data from receipts/bills: I'm using a ready to use API for extracting text from images. The text extracted is in French and does not follow a certain order (top-down or left-right), I already extracted a…
3
votes
1 answer

PhpWord TemplateProcessor clone table rows and insert information in them

I have a issue with the phpword tables. I have the following table and I want to clone the first table row and replace the information in it. So far I have no progress. I've used getVariables() method to get all the variables from the document and…
Kristian Vasilev
  • 504
  • 8
  • 26
3
votes
2 answers

How to add logo to stripe invoice pdf in laravel

How to add logo to stripe invoice pdf. I'm using laravel framework. Is there any way I can modify the blade file under vendor section? and commit the same.
Sagar Desai
  • 347
  • 1
  • 3
  • 11
3
votes
1 answer

Magento2 Can not create Invoice Issue

I have updated to latest Magento2 ver. 2.1.0-rc2 Installed form Magento's GIT Branch : 2.1 when I try to create Invoice from admin it throw error : [2016-06-14 09:53:16] main.CRITICAL: exception 'PDOException' with message 'SQLSTATE[42S22]: Column…
Emizen Tech
  • 3,529
  • 1
  • 17
  • 33
3
votes
1 answer

Submitting values of "jQuery Editable Invoice" into a MySQL DB using PHP

I am using this fantastic example of a jQuery editable invoice as a template for creating dynamic invoices for my users. It's working quite well and I am successfully generating the items but I now need to save the values entered into the various…
Tim
  • 3,091
  • 9
  • 48
  • 64
3
votes
1 answer

How I can generate a pdf in Prestashop?

I have a question. In Prestashop there is a system to generate a pdf (for example an invoice). I need to generate a pdf with the message insert into the cart page. How I can do this? Thank you! Bye!! :-D
MarcoSantino
  • 126
  • 3
  • 11
3
votes
1 answer

what is the best way to print invoice in java

in my desktop application (POS System). I used IText api for generating invoices and printing, but my printer thermal invoice printer don't support .pdf file. only supporting text file and .docx file. i use simple text file printer print whole…
furusiyya
  • 79
  • 1
  • 1
  • 11
3
votes
1 answer

How do I set the value for an Invoice custom field using the QuickBooks V3 DataService?

I am attempting to create new invoices in QuickBooks using the V3 API. I have the invoice creation working perfectly, except I cannot set the values for the 3 custom fields. I need a VB or C# resolution that utilizes the AnyIntuitObject property in…
scraig
  • 61
  • 6
3
votes
1 answer

QBSDK invoice query

I am using vb.net in visual studio to query my invoices. i get a list of invoice of interest, and as i iterate through the list, i see the for each invoice i have, the invoice.ORInvoiceLineRetList is nothing. here is a snippet of code, although i…
Jerry Dubuke
  • 186
  • 1
  • 10
1 2
3
49 50