Re: Writing csv files to server

2009-04-23 Thread Florian Strzelecki
Hm... in my opinion this isn't a Django problem, but a conception problem. I think you need a "state" on the invoices : when does it have been paid ? If you know when, so you can filter on the date of paiement. Exemple : Paid (id-1, sales-1, date_paid-2009-03-02, value-$150) Paid (id-1, sales-1,

Writing csv files to server

2009-04-23 Thread Alfonso
I need to generate a statement at the end of the month that grabs all the invoices for that month and lets the client knows who hasn't paid on time. Problem is the usual setup I have of creating a view/template that simply shows unpaid invoices (within a statement) doesn't stay persistent, i.e. wh