Parent Directory
|
Revision Log
|
Revision Graph
22-11-2008:
* Update dutch translation file
* Added a solid solution for removing invoices from "node" overview
19-11-2008:
* Added support for: Invoice number format, 12345, 2008001, 200806001, etc.
- It's possible now to prefix invoice number with whatever, for example A2008001.
12-11-2008:
* Display invoice comments on the invoice template
* Display pay limit on the invoice template
* Added: Global, per template set which fields to display on the invoice: VAT, Unitcost (ex), Unitcost (inc), Total (ex), Total (inc)
* FIXED BUG: Default template settings seem to don't inherit from general settings
- Inheriting worked fine, made a small ajustment so it works even smoother now.
- The main problem was that the preferred locale was not installed on the system. I made that form description more complete now
and added a list which displays installed locales on the system.
* Added: Translate file for dutch language
11-11-2008:
* FIXED BUG: Functions can never have the same name, also when including just one template (Fatal error: Cannot redeclare _invoice_get_template_output())
* FIXED BUG: Installer is not correct and must be updated (we're using schema files now)
* Added and tested invoice_update_1() function, works 100% correct.
01-11-2008:
* FIXED BUG: Search on a customer starting with "f" or other sprintf() like characters go wrong
| 1 | /** |
| 2 | * @file README.txt |
| 3 | * @brief Little help file |
| 4 | */ |
| 5 | |
| 6 | With this module you're able to create and administer invoices. |
| 7 | |
| 8 | The module creates an invoice node type. The module can be used in combination with the path auto module to generate the title. |
| 9 | |
| 10 | PDF document |
| 11 | It's possible to view the invoice as full node view on your site, as html print view and as pdf document. The nice dompdf library is used to generate pdf documents. The library is not included into this module. You'll have to download it yourself and paste the dompdf folder into the root of this module. so you'll get "sites/all/modules/invoice/dompdf". |
| 12 | The library can be downloaded from the official site, but has not the nice Arial font included by default. Fortunately, according to the End User License Agreement of Microsoft I have the right to redistribute Microsoft core fonts in unaltered form. So I already included the Arial font into the dompdf package. You can download this bundled package here |
| 13 | |
| 14 | Different templates |
| 15 | If your company has more than 1 brand name, it's possible to have different invoice templates. You have the possibility to have different company settings per template. Even the VAT (value added tax) value, date format and locale. With locale you're able to change the money format. For example en_US will give you the dollar symbol and nl_NL will give you the euro symbol. IMPORTANT: On probably all ubuntu servers the addition of ".utf8" should be used to get a working locale! So you get en_US.utf8. |
| 16 | |
| 17 | To add a different template copy templates/default.inc and .css and create new files with different names. Then go to "admin/settings/invoice" and the template will automatically be visible. |
| 18 | |
| 19 | This module is developed by P. Vogelaar of Platina Designs. |
| 20 | |
| 21 | =========================================== |
| 22 | |
| 23 | Other comments: |
| 24 | * This module supports the pathauto module and is also recommended: http://drupal.org/project/pathauto |
| 25 | * Multiple invoice templates can be created (see above) |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |