473,396 Members | 1,864 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Invoice numbering

I am creating invoices for an app I am busy with.
The transactions for the invoice come from 2 tables which store Sales and
Facilities Hire.

The current arrangement is that I create a temp table using append queries to
get transactions from the 2 tables between selected dates. then draw these into
a report grouped by the Sales and Facilities Hire
This all works fine.
However the customer requires invoices (reports) to have consecutive numbers and
also I need to record the date when this batch of transactions were invoiced,
and subsequently settled.

Trying to figure out the best way of making this happen.
Any thoughts
TIA
David B

Nov 12 '05 #1
3 2816
If invoices are generated as a batch after the sales/hire event, they need
to be permanently stored - not just in a temp table.

The code to create the invoices will:
1. Get a batch number;
2. Get all sales/hire detail records that have not been previously invoiced;
3. Create an invoice for each client who has a record in #2.
4. Create detail records under each client's record for the detail records
in #2.

This is very similar to what you are doing with your temp table, except they
are permanent records. You may want to give the client an End Date (create
invoices up to this sale/hire date), but not a begin date: it must get all
uninvoiced records.

In a really simple system, it may be possible to use the SalesHireDetail
table as the InvoiceDetail as well. This table will have a foreign key field
to the main SalesHire table, and that field is Required (i.e. can't have a
detail record that is not part of a sales record). It will also have a
foreign key field to the Invoice table. This field is Null until an invoice
is created. It's then dead-easy to identify which sales/hire record have not
been invoiced, and group them by ClientID, create the main Invoice record,
and update the Nulls with the new InvoiceID value.

The Invoice table will have the BatchID as a foreign key. You can therefore
identify the invoices that are part of the last batch, and undo the batch if
desired. Likewise, it's very easy for the client to reprint any batch at any
time.

Takes a bit of work, but it's a really robust, flexible, reliable system.

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"David B" <da***@marleycotenospam.fsnet.co.uk> wrote in message
news:bs**********@news5.svr.pol.co.uk...
I am creating invoices for an app I am busy with.
The transactions for the invoice come from 2 tables which store Sales and
Facilities Hire.

The current arrangement is that I create a temp table using append queries to get transactions from the 2 tables between selected dates. then draw these into a report grouped by the Sales and Facilities Hire
This all works fine.
However the customer requires invoices (reports) to have consecutive numbers and also I need to record the date when this batch of transactions were invoiced, and subsequently settled.

Trying to figure out the best way of making this happen.
Any thoughts
TIA
David B

Nov 12 '05 #2
Allen
Many thanks for your reply. I have things working as your notes apart from the
final step of sending the invoice number back from the invoice table to invoice
detail table. I am trying an update query, latest sql is as follows.

UPDATE invoicetable INNER JOIN invoicedetail ON invoicetable.custid =
invoicedetail.customerid SET invoicedetail.invoicenum = [invoicenumber];

Get the impression my brain is not at full speed today
Any thoughts , on the sql not my brain

David b
Allen Browne <Al*********@SeeSig.Invalid> wrote in message
news:3f**********************@freenews.iinet.net.a u...
If invoices are generated as a batch after the sales/hire event, they need
to be permanently stored - not just in a temp table.

The code to create the invoices will:
1. Get a batch number;
2. Get all sales/hire detail records that have not been previously invoiced;
3. Create an invoice for each client who has a record in #2.
4. Create detail records under each client's record for the detail records
in #2.

This is very similar to what you are doing with your temp table, except they
are permanent records. You may want to give the client an End Date (create
invoices up to this sale/hire date), but not a begin date: it must get all
uninvoiced records.

In a really simple system, it may be possible to use the SalesHireDetail
table as the InvoiceDetail as well. This table will have a foreign key field
to the main SalesHire table, and that field is Required (i.e. can't have a
detail record that is not part of a sales record). It will also have a
foreign key field to the Invoice table. This field is Null until an invoice
is created. It's then dead-easy to identify which sales/hire record have not
been invoiced, and group them by ClientID, create the main Invoice record,
and update the Nulls with the new InvoiceID value.

The Invoice table will have the BatchID as a foreign key. You can therefore
identify the invoices that are part of the last batch, and undo the batch if
desired. Likewise, it's very easy for the client to reprint any batch at any
time.

Takes a bit of work, but it's a really robust, flexible, reliable system.

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"David B" <da***@marleycotenospam.fsnet.co.uk> wrote in message
news:bs**********@news5.svr.pol.co.uk...
I am creating invoices for an app I am busy with.
The transactions for the invoice come from 2 tables which store Sales and
Facilities Hire.

The current arrangement is that I create a temp table using append

queries to
get transactions from the 2 tables between selected dates. then draw these

into
a report grouped by the Sales and Facilities Hire
This all works fine.
However the customer requires invoices (reports) to have consecutive

numbers and
also I need to record the date when this batch of transactions were

invoiced,
and subsequently settled.

Trying to figure out the best way of making this happen.
Any thoughts
TIA
David B



Nov 12 '05 #3
Hmm. The 4th step will depend on a bunch of other details about your system
that I don't have.

It looks like your InvoiceDetail table has a CustomerID field? Normally it
would not: that would be in the main InvoiceTable only. So perhaps you are
using this temporarily until the InvoiceNum is assigned? If so, and
assuming you are generating just one invoice for the client for the period,
and you have created the main InvoiceTable record, you would select the
records where the InvoiceNum is blank in the related table, and the records
of the particular batch in the main table:

"WHERE (InvoiceDetail.InvoiceNum Is Null) AND (InvoiceTable.BatchID = " &
lngBatchID & ");"

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"David B" <da***@marleycotenospam.fsnet.co.uk> wrote in message
news:bs**********@news5.svr.pol.co.uk...
Allen
Many thanks for your reply. I have things working as your notes apart from the final step of sending the invoice number back from the invoice table to invoice detail table. I am trying an update query, latest sql is as follows.

UPDATE invoicetable INNER JOIN invoicedetail ON invoicetable.custid =
invoicedetail.customerid SET invoicedetail.invoicenum = [invoicenumber];

Get the impression my brain is not at full speed today
Any thoughts , on the sql not my brain

David b
Allen Browne <Al*********@SeeSig.Invalid> wrote in message
news:3f**********************@freenews.iinet.net.a u...
If invoices are generated as a batch after the sales/hire event, they need to be permanently stored - not just in a temp table.

The code to create the invoices will:
1. Get a batch number;
2. Get all sales/hire detail records that have not been previously invoiced; 3. Create an invoice for each client who has a record in #2.
4. Create detail records under each client's record for the detail records in #2.

This is very similar to what you are doing with your temp table, except they are permanent records. You may want to give the client an End Date (create invoices up to this sale/hire date), but not a begin date: it must get all uninvoiced records.

In a really simple system, it may be possible to use the SalesHireDetail
table as the InvoiceDetail as well. This table will have a foreign key field to the main SalesHire table, and that field is Required (i.e. can't have a detail record that is not part of a sales record). It will also have a
foreign key field to the Invoice table. This field is Null until an invoice is created. It's then dead-easy to identify which sales/hire record have not been invoiced, and group them by ClientID, create the main Invoice record, and update the Nulls with the new InvoiceID value.

The Invoice table will have the BatchID as a foreign key. You can therefore identify the invoices that are part of the last batch, and undo the batch if desired. Likewise, it's very easy for the client to reprint any batch at any time.

Takes a bit of work, but it's a really robust, flexible, reliable system.
--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"David B" <da***@marleycotenospam.fsnet.co.uk> wrote in message
news:bs**********@news5.svr.pol.co.uk...
I am creating invoices for an app I am busy with.
The transactions for the invoice come from 2 tables which store Sales and Facilities Hire.

The current arrangement is that I create a temp table using append

queries to
get transactions from the 2 tables between selected dates. then draw
these into
a report grouped by the Sales and Facilities Hire
This all works fine.
However the customer requires invoices (reports) to have consecutive

numbers and
also I need to record the date when this batch of transactions were

invoiced,
and subsequently settled.

Trying to figure out the best way of making this happen.
Any thoughts
TIA
David B

Nov 12 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: Peter Young | last post by:
I need to be able to generate an invoice from an ASP page. Currently, the invoice is drawn in a web page and my client prints the page from their browser. This doesn't work too well in terms of...
2
by: Andy Glew | last post by:
I have long looked for (and occasionally posted questions to groups such as this about) a tool that can take a group of HTML pages (nowadays XHTML, or XML) and produce a nicely formatted...
0
by: Ivan Palčić | last post by:
Hi i need to make an invoice(report) with nummbers (like 1/04, 2/04...) but each Customer must have invoice starting with 1/04 referring to the date they must pay. An example Customer: Something...
15
by: NomoreSpam4Me | last post by:
Hi there i have a little problem with my invoice. Here it is: i have a main menu with buttons, one of my button is "Create new invoice", when click on it a form pop up so i can enter my...
3
by: Guoqi Zheng | last post by:
Dear sir, Our E-commerce site needs to print out a few 100s invoice a day. I do not know what is the best way to print invoice. Those invoice has to be printed on a very precise position on our...
1
by: Herman Beeksma | last post by:
Hi there! I have two tables: Customer (ID, Name) Invoice (ID, Date, Customer, Amount) and want to select only the *last* invoice for each customer. It's easy to get each customer's last...
14
by: eyalco | last post by:
I'm building a receipt/invoice database - I've started with the invoice first, then the receipt. I have invoice = parents and sons + receipt = parents and sons tables + a customer table. I want to...
6
by: ConfusedMay | last post by:
Hi I need some helps in calculating the invoice amount in access 2003 report. Basically I have an access report that shows invoice#, invoice amount, payment amount, and payment date. The problem is...
4
by: gazza10001 | last post by:
Hi i hope you can help my company uses access and has modified for its needs usually what happens is you serach for the invoice by its number and then it brings all the information up such as...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.