This question has been flagged
1 Reply
3700 Views

How do i create a configuration screen for a module in openerp 6.0, the configuration will have a few fields but there can be only one record in the database for the config.

How do i accomplish it in openerp-6

Avatar
Discard
Best Answer

To accomplish only one record in the for the table is little bit tricky. but we can do it by over ridding the create method. here is my sudo code.

def create(self, cr, uid, vals, context=None):
    records = self.search(cr, uid, [])
    for id in records:
        self.unlink(cr, uid, id, context)
    return super("CLASS_NAME", self).create(cr, uid, vals, context=context)

Hope it will help.

Avatar
Discard