| 1 |
/**
|
| 2 |
* @file TODO.txt
|
| 3 |
* @brief Invoice module
|
| 4 |
*
|
| 5 |
* This module was developed by Platina Designs, http://www.platinadesigns.nl
|
| 6 |
*
|
| 7 |
* @author Pieter Vogelaar <ps.vogelaar@platinadesigns.nl>
|
| 8 |
*/
|
| 9 |
|
| 10 |
TODO
|
| 11 |
==============================
|
| 12 |
|
| 13 |
MUST:
|
| 14 |
|
| 15 |
BUGS:
|
| 16 |
|
| 17 |
NICE:
|
| 18 |
* Sorting of invoice items with DRAG and DROP => http://api.drupal.org/api/function/drupal_add_tabledrag
|
| 19 |
* Cancel button with editing invoice item
|
| 20 |
* Make invoice list sortable on customer company name / lastname, firstname
|
| 21 |
* Confirm message when clicking on a delete icon
|
| 22 |
* After adding an invoice item move the cursor back to the invoice item description field
|
| 23 |
* Filter: Pay status filter in invoice list
|
| 24 |
* Filter: Overtime status
|
| 25 |
* Generate invoice only once and output it to a PDF file for better performance and reduce of CPU
|
| 26 |
- Display in the invoice list a regenerate invoice icon
|
| 27 |
* Selectbox in the invoice admin screen with yes/no for displaying the field to manual fillin an invoice number
|
| 28 |
|
| 29 |
VERY NICE:
|
| 30 |
* Possibility to create a new invoice based on a old one => http://drupal.org/node/345636
|
| 31 |
* Possibility to link an invoice to a site user + page for that user to view his invoices => http://drupal.org/node/346516
|
| 32 |
- With a extra option to also send the invoice by email (if no site user is selected the customer email field that is not implemented yet
|
| 33 |
will be choosen, if both are empty an error will be thrown if this checkbox is still checked. => http://drupal.org/node/346005
|
| 34 |
* After invoice item delete set odd/even rows again
|
| 35 |
* Sending reminders, when exceeding pay limit
|
| 36 |
* Print "COPY" image on the invoice, for administration archive purposes
|
| 37 |
* Do code review with the coder module to be compatibale with Drupal coding standards
|
| 38 |
* Move AJAX JS into a external JS file.
|