Hello list,
This is not a web2py problem but as there is so many good programmers on
the list I thought I´d start here.
I´m extending out billing application that is made on webpy. The
extension is to handle bills that should be billed periodically (usually
once a year). So instead of having somebody creating those bills every
year I have been thinking about a system that creates those bills
automatically at a specific date. A user is notifed about new bills and
can then send them out. I don´t want a system sending out bills
automatically.
The database structure that I have right now is:
customer (id, name, address....)
product (id, name, price....)
bills (id, customer.id, product.id....)
How would you do this?
Kenneth