Hi all,
I have a custom class that has address fields. I would like to integrate this model into the address handling plumbing in Odoo. How do I do this?
I have standard address fields in my class such as street, street2, country_id, state_id, city, and phone. This custom class does not inherit any base class.
If I use the Contact widget I don't get the address displaying correctly. I have been examining the code to find out how the "address" field which the contact widget uses is generated but I am lost as to how ti all fits together.
I have looked at the "format.address.mixin" but my class does not inherit res_partner. I also looked at "ir.qweb.field.contact". I haven't been able to determine if there is a function I need to override to provide the dynamic field "address" or what special fields there may be. From what I can gather there is some api to getting the address format from the country settings.
Any pointers on how address generation and formatting work in Odoo will be appreciated.