I have successfully extended res.partner (_inherit='res.partner') with partner specific fields via a new model "my_buyer". These new fields in "my_buyer" are viewable within res.partner and a view was added with "ref='base.view_partner_form'" So that I can update "my_buyer" from the Contacts App.
This all works well.
I'd now like to take/use those new, partner specific, fields from "my_buyer" and have them transfer over to the sale.order.form so that I can present that information on CRM/quotations sent to the partner/customer/buyer.
my_buyer is basically attributes of an individual buyer. When they receive a quotation from me, I want them to see/recall what their attribute value is. I want that attribute tied to their partner record, because that attribute follows along with them through our relationship and any future quotation, purchase from us.
Because my_buyer fields are already within res.partner, and res.partner is tied to sale.order sort of, I thought it's be easy to call the my_buyer fields, but I'm getting errors.
Any help/enlightenment is appreciated.
d
Please show your qweb and the traceback.