Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
2 Відповіді
4860 Переглядів

The changes made in create and write of inherited res_partner should affect only the customer and not the supplier and user.

Аватар
Відмінити
Найкраща відповідь

Hi,

There is only one object "res.partner" which manage customer and supplier.

Email : info@acespritech.com
Skype : acespritech
Blog : acespritechblog.wordpress.com

Аватар
Відмінити
Найкраща відповідь

Customer, supplier and user (and maybe other 'persons') use the same model 'res.partner'. In order for your model to only do something different for customer, you should ask in your write and your create, if the res.partner you are in, is a customer.

Some quick and dirty code:

def create(.....):
    partner = pool.get(id)
    if partner.is_customer and not partner.supplier:
        do your code here
    else:
        res = super(self, res.partner).create(.....)

The same goes for write.

Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
2
трав. 17
9422
0
жовт. 24
976
2
січ. 16
35705
0
бер. 15
4678
2
бер. 15
5600