This question has been flagged
3 Replies
2483 Views

Hello

How can I have approvals based on values in openerp7

Like

Superintendent can approve purchase order up to max 1000$ but CEO or manager can approve above 30000$ PO suppose

For super intendent approve button must be greyed out if PO > 1000 and similarly it should appear for CEO or manager

Hoe can I apply this in Openerp7

Thanks

Avatar
Discard
Best Answer

Override the button in the XML would be the quickest solution. You can add the "attrs" tag to the button on your XML form. Then have the attrs contain an invisble or readonly tag when the user is not in a list of ceo's AND the total_amount > 1000.

Alternatively you can leave the button as is, but in python code override the action for the button. Check the uid for specific rights and the total_amount. Raise an error if the combination is like above.

Avatar
Discard
Author

For this i will be having group too?For user not in ceo list ...and yes.. this will be done by code in xml or from front end changeable?

I would put both in the code, that is by far the most reliable solution. Of course you will need the group to exist before you can assign functionality.