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
3
votes
2 answers

Invoice / OCR: Detect two important points in invoice image

I am currently working on OCR software and my idea is to use templates to try to recognize data inside invoices. However scanned invoices can have several 'flaws' with them: Not all invoices, based on a single template, are correctly aligned under…
skiwi
  • 66,971
  • 31
  • 131
  • 216
3
votes
3 answers

MySQL Query Within JavaScript

I am working on a form whereby JavaScript is used to add another line item. The purpose is to add line items to an invoice. I have successfully got this to work ok when using text boxes in my form, but am stuck on how to get this to work with a…
Tom
  • 363
  • 2
  • 11
  • 21
3
votes
3 answers

Magento - custom invoice number

I need to modify my default invoice number from 100000001 to 2012 - 00001. I know where I can found increment_last_id in table eav_entity_store. But I don't know what I must set that to be taken new format of invoice number. Please help with some…
Tim Sajt
  • 117
  • 5
  • 11
3
votes
1 answer

Create Invoice Method is not working properly of Magento API

I am trying to create sales order Invoice using Magento API in android application using XMLRPC.I am using the method "sales_order_invoice.create" for creating invoice.This method is giving me Invoice Id in the response for given quantity as mention…
krushnakant
  • 431
  • 9
  • 21
3
votes
2 answers

Multipage invoice/document in PHP

TL;DR: I have problems with PHP generating PDF's longer than 1 page total. Hello again. My goal is to create a script that will basically get all the important data and create a A4 format PDF invoice/document for printing/mailing/archiving.…
lmojzis
  • 551
  • 7
  • 17
2
votes
1 answer

QuickBooks invoice modify has different address behavior than create, how to compensate?

I'm writting a function to take an invoice file in a defined format and import it into QuickBooks via qbXML. One of the requrements is that it be possible to reimport the same invoice number than that the existing invoice be modified rather than…
Yishai
  • 90,445
  • 31
  • 189
  • 263
2
votes
1 answer

Want to match string item to a integer value in C++ using either a while or for loop for an invoice program

Trying to make a small program that can print out an invoice. It requires 4 - 6 different functions. The one I'm having the toughest time with however is trying to tie my string values to the integer and invoking…
2
votes
2 answers

how can i hash a specific tag from XML file in a correct way?

we are working on e-invoicing and to send the invoice to the government. and they gave us what they want from us to do like signing some tags and hashing another. my problem now is in hashing, when i hash the specific tag after doing every thing…
Pythoner-sh
  • 134
  • 6
2
votes
0 answers

Prestashop 1.7.5.2 How to add manually the customer vat_number on invoice

I need to add the customer delivery and billing vat_number on the invoice generated by prestashop. I've tryed to modify my classes/pdf/HTMLTemplateInvoice.php adding 'customer_vat_number' => $invoice_address->vat_number like that: $data = array( …
KevinDoUrden
  • 124
  • 1
  • 6
2
votes
1 answer

Display Dedicated IP into clientareainvoices.tpl list in WHMCS?

I'm using WHMCS 8.x and Smarty PHP is already enabled. I hope to use some code or hook function to let the dedicated ip or hostname to display on the page clientareainvoices.tpl (/clientarea.php?action=invoices) list . I hope anyone can help me with…
Ref
  • 21
  • 2
2
votes
0 answers

How to change the invoice price programmatically at checkout in woocommerce

I am using woocommerce_paypal_args to change the price that is pass to Paypal. However, in the invoice, the price that is recorded is not the price sent to Paypal. So firstly, I want to change the price that is being sent to Paypal. I get paypal to…
OneNation
  • 427
  • 1
  • 8
  • 22
2
votes
0 answers

Creating invoices in bulk using NetSuite REST API

Is there a way to create multiple invoices with a single POST request to the NetSuite REST API? The API Reference doesn't mention anything - but I'm hoping there's a way to avoid sending thousands of individual requests. I am creating a single…
Gian Paolo Buffo
  • 381
  • 4
  • 19
2
votes
1 answer

SQL SUM and divide linked tables

I have the following tables: create table Cars ( CarID int, CarType varchar(50), PlateNo varchar(20), CostCenter varchar(50), ); insert into Cars (CarID, CarType, PlateNo, CostCenter) values…
milo2011
  • 339
  • 1
  • 9
  • 25
2
votes
1 answer

Registering Payments automatically using python code throws error

This is the code that I used to register the payments: Payment1 = self.env['account.payment'].with_context(default_invoice_ids=[(4, SaleInvoice.id, False)]) payment = Payment1.create({ 'payment_date': SaleInvoice.date, 'payment_method_id':…
2
votes
1 answer

Daily Recurrence Invoices Check

My situation as follow: I'm building up an invoice system, I have almost everything done, except the invoices recurrence. Here is what I'm trying to do without success. The condition: My condition to generate a new recurrence incoice is ->…
devasia2112
  • 5,844
  • 6
  • 36
  • 56