Skip to Content
मेन्यू
This question has been flagged
1 Reply
4752 Views

Hi

I am developing a module that display a lot of pictures. I want to create a thumbnail each time user upload a picture.

How can I trigger automatically a function when the user creates a record (= upload a picture) ?

openerp 6.1

Avatar
Discard
Best Answer

You must use the super on create function. This is an example how to use it:

def create(self, cr, uid, vals, context=None):
    res = super(YOUR_CLASSE, self).create(cr, uid, vals, context=context)
    YOUR CODE HERE
    return res
Avatar
Discard
Author

That's look more simple than expected ! Thank you very much for your fast answer.

I'm happy you solved your problem....;)

Related Posts Replies Views Activity
1
जून 24
4208
5
जून 23
35286
1
दिस॰ 23
19163
2
जून 16
3100
3
जन॰ 16
4424