Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
2 Replies
5074 Tampilan

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

Avatar
Buang
Jawaban Terbai

Hi,

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

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

Avatar
Buang
Jawaban Terbai

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.

Avatar
Buang
Post Terkait Replies Tampilan Aktivitas
2
Mei 17
9606
0
Okt 24
1149
2
Jan 16
35895
0
Mar 15
4870
2
Mar 15
5766