This model does not appear in the community edition, but it exists in my Odoo.sh instances. I have wasted a lot of time trying to find the .py where it's defined, but have had no luck. Anyone have an idea?
Here is the definition from the RPC (snipped on the right):
{"jsonrpc": "2.0", "id": 921359310, "result": {
"id": {"type": "integer", "change_default": false
"__last_update": {"type": "datetime", "change_def
"display_name": {"type": "char", "change_default"
"create_uid": {"type": "many2one", "change_defaul
"create_date": {"type": "datetime", "change_defau
"write_uid": {"type": "many2one", "change_default
"write_date": {"type": "datetime", "change_defaul
"x_name": {"type": "char", "change_default": fals
}}
Obviously, x_name and display_name are the only non-boilerplate fields here.
And here is the field where it is used in product.template, also from the RPC fetch:
"x_studio_product_tags":
{"type": "many2many", "change_default": false, "company_dependent": false, ...
"relation": "x_producttags", "required": false, "searchable": true, "sortable": false, "store": true,
"string": "Product Tags",
"name": "x_studio_product_tags},
Which is obviously a Studio generated reference, but the underlying table x_producttags doesn't seem to be. The tags are accessed in forms using a standard many2many_tags widget.
Since I have inherited this system, it may be some previous owner built it, but I have been able to track it down.
last line should be "... been unable to track it down."