Questions tagged [invoices]

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.

91 questions
55
votes
4 answers

Database design for invoices, invoice lines & revisions

I'm designing the 2nd major iteration of a relational database for a franchise's CRM (with lots of refactoring) and I need help on the best database design practices for storing job invoices and invoice lines with a strong audit trail of any changes…
Petrus Theron
  • 27,855
  • 36
  • 153
  • 287
14
votes
2 answers

xero api integration in php for a public type application

I want to integrate xero api for public application in php. I am stuck with oauth application authorization I have download code from github https://github.com/XeroAPI/XeroOAuth-PHP (find on xero api code sample for public application) I am using…
user3024749
  • 151
  • 1
  • 10
8
votes
1 answer

Templates pdf for invoices with ReportLab

I'm wondering myself if there's any template code for make invoices output in pdf with reportlab, I'm developing in Django a platform sales and I need to output some data with a invoice look, I tried further but I didn't find anything, anyone know…
Enot
  • 790
  • 2
  • 15
  • 34
6
votes
4 answers

Application logic for invoicing and subscriptions?

We're just in the planning stage of a web app that offers subscriptions to our customers. The subscription periods varies and can be prolonged indefinitely by our customers, but are always at least one month (30 days). When a customer signs up, the…
Industrial
  • 41,400
  • 69
  • 194
  • 289
6
votes
3 answers

Invoice & Invoice lines: How do you store customer address information?

Hi I'm developing an invoicing application. So the general idea is to have two tables: Invoice (ID, Date, CustomerAddress, CustomerState, CustomerCountry, VAT, Total); InvoiceLine (Invoice_ID, ID, Concept, Units, PricePerUnit, Total); As you can…
elviejo79
  • 4,592
  • 2
  • 32
  • 35
6
votes
3 answers

Payable Invoice Capturing OR extracting automation

I am creating a desktop/winform application that reads tif/pdf payable invoices and extract all the invoice information to store into database. I can read the standard barcodes(QR Code, Code39 etc), and some of the payable invoice' standard…
Munawar
  • 2,588
  • 2
  • 26
  • 29
5
votes
1 answer

XSD to XML with imports

I'm currently developing a service for generating XML files which follows the UBL standard for an invoice, and therefore I need to use some provided XSD schemas. I'm developing in .NET C#, and found a way where you can map the XSD to C# classes -…
Thomas
  • 1,563
  • 3
  • 17
  • 37
5
votes
1 answer

XML for Invoicing - Industry Standards?

I've come across an application that needs to send invoice information via FTP to various clients. The XML being output by the application is pretty simple however it does not conform to any particular standards (I imagine its home-grown). Now a…
Steven de Salas
  • 20,944
  • 9
  • 74
  • 82
3
votes
6 answers

Financial tracking for software projects

The team I'm part of manage a number of software projects - and most of the stuff we do is end to end, from requirements tracking, to project management to purchasing and setup - a big pain is tracking of financials as we have a whole process to go…
anbanm
  • 13,425
  • 5
  • 22
  • 17
3
votes
2 answers

looking for a simple database design for accounts receivable

I am in the process of adding accounts receivable to one of my webapps. Essentially, I want to be able to create sales invoices and record payments received. The reports, I generate are statement with balance outstanding invoice receipt To create…
bumperbox
  • 10,166
  • 6
  • 43
  • 66
3
votes
1 answer

WooCommerce - Transpose Cart loop in Order loop for pdf invoices

I'm using woocommerce and "Print Invoices & Packing lists" available at "https://woocommerce.com/products/print-invoices-packing-lists/" . For Display the Total Saving in the woocommerce cart & checkout pages I'm used this code and works perfectly…
Mani
  • 199
  • 2
  • 12
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

Invoice numbering in Rails + MySQL

I'd like to have organised invoices in this format: AB20140001 AB is the acronym of our company, 20140001 is the first invoice in 2014.The current quick idea is to add to the table invoices columns year and invoice_number and where would be stored…
user984621
  • 46,344
  • 73
  • 224
  • 412
3
votes
1 answer

RDLC invoice with tablix, header, detail and totals aligned to page bottom

I need to print invoices from my ASP.NET 4.0 application. I am using RDLC reports. The invoice is made by: header (customer details, number, date, etc) details (item description, quantity, price) and if possible... I would like to have rows to…
rrroberto
  • 31
  • 4
3
votes
1 answer

No Transaction ID in Payment Invoice

I've developed a Payment Method extension for Magento. In this extension, I've added: protected $_canRefund = true; However, when I click an invoice and select Credit Memo, I can only see 'Refund Offline' and not 'Refund'. All tutorials I followed…
Dan Hanly
  • 7,829
  • 13
  • 73
  • 134
1
2 3 4 5 6 7