How to convert to Euro within Adabill?

Currently the database is not fixed to any special currency, so the
symbol or string is specified by the LaTex-cls-file.

Because I don't know if there is any Adabill-user out there I didn't
implement the possibility to handle old-currency-bills.

For me I did this and now I'm starting right new in Euro:

1. Connect to your PostgreSQL-database (i.e. type 'psql')

2. Save your old bills:

firma=# select * into dm_rechnungsposten from rechnungsposten;
firma=# select * into dm_rechnung from rechnung;

3. Delete the entries from the old table:

firma=# delete from rechnungsposten;
firma=# delete from rechnung;


That's all. If you like you can rename the tables and create two identical
new tables. This might give better performance.


Adrian Knoth <adi@thur.de>
2002-01-11   (11.1.2002)
