I installed openerp and tested it with dummy records. Now, I need to delete all these dummy records so that i can start anew with real records. Do u guys know a way to delete these records. The database on the back is postgresql
|
|
i too think that creating a new dayabase is the best option for you to remove yor dummy records and install new records.Also there is an option to uninstall the modules you have installed in the following menu. administration->modules->modules select the module you want to uninstall-> hit the uninstall button ->apply sheduled upgrades. but the bad phase is most of the modules have dependencies to each other so they show rejection to uninstall. |
|||
|
|
|
dont you have a postgresql go there and just truncate all the table or make new db with same name and enjoy |
|||
|
|
|
Risky idea aside, you can use the truncate command and cascade it over a few core tables to not lose configurations as well as dummy data.
This should keep intact your chart of accounts, user logins, products, contacts/partners, and so on. Also very important to truncate all workflow instances! Note: This will delete minimum stock reorder points on OpenERP 6.1. Unsure about where other unintended side effects may be. |
||||
|
|
|
I think it's less risky to start a new database and fix its configuration than it is to try and clean out the dummy records you created. Here's how I would proceed in your situation:
If you want to get really fancy, you can create a customization module that makes all the configuration changes for you. That way if you really screw up a database or lose your backups, you can start from scratch again. |
|||
|
|