-
-
Notifications
You must be signed in to change notification settings - Fork 193
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Installation Error #263
Comments
Ive tried for weeks updating and getting my hosting co to update odoo 17 but jsut cant get this module to work. |
`RPC_ERROR The above server error caused the following client error: Thats the full error just in case it helps |
@jeroenev |
I'm not sure, but if I look at your error this line looks different in my Odoo codebase:
@api.model
@tools.ormcache('xmlid')
def _xmlid_lookup(self, xmlid: str) -> tuple:
"""Low level xmlid lookup
Return (id, res_model, res_id) or raise ValueError if not found
"""
module, name = xmlid.split('.', 1)
query = "SELECT model, res_id FROM ir_model_data WHERE module=%s AND name=%s"
self.env.cr.execute(query, [module, name])
result = self.env.cr.fetchone()
if not (result and result[1]):
raise ValueError('External ID not found in the system: %s' % xmlid)
return result is what the default Odoo version looks like. I'm not sure how much I can help aside from that, since your error doesn't really hit the maybe you can also try "Update App List" under Apps module (in debug mode)? |
Hey @jeroenev |
do you get a similar error trying to install other apps? |
No not at all- i have tried a new install with no other apps and its the same thing. then i tried installing some other apps that do various things like merging quotes etc and they all work fine its just this one that doesnt want to work. and if i force install it then odoo crashes...... |
really looks like an issue with _xmlid_lookup @api.model
@tools.ormcache('xmlid') attached? |
i really have no idea what that all means :( |
you don't have any developer working on the project? |
Hey no im doing the server etc etc myself. I can normally help myself around code and linux but web backends etc is a bit foreign to me. i didnt even know how to properly get help here lol. |
Does the error also occur if you create a new database? Or only on your current database? |
So i installed a fresh instance on the cloudclusters servers and tried and it does exaclty the same thing Element '' cannot be located in parent view View error context: The above server error caused the following client error: |
@jeroenev i installed a new DB, same issue. ive tried everything i can think of. as i said its only this app so i dont know what else to try. would you possibly be willing to log into a isntace and have look? im banging my head on a wall and everyday this isnt working everyone is jsut getting really irritated with odoo :( |
There hasn't been any activity on this issue in the past 6 months, so it has been marked as stale and it will be closed automatically if no further activity occurs in the next 30 days. |
Ive tried multiple times to install the module and it keep getting errors
17.0-mig-sale_layout_category_hide_detail
ive tried to get the app installed but it just wont work- i had the hosting co update odoo and try install it and they also get the following error: https://prnt.sc/cS4Xb0Uo0LRE
Could you please tell me what update of odoo is required? i really really need this for our sales orders and ive been struggling for weeks and i just cant get it working?
The text was updated successfully, but these errors were encountered: