Odoo CRM Lead - partner_id weird behavior - odoo

I've 2 instances of Odoo v13 Enterprise which present the same problem. When I click on the many2one field, the edit view opens on the bottom of the page, not on the field.
I've tried to uninstall all addons that inherit that view. Remove res_partner_many2one_widget , context and nothing change this behavior, I've tried to replicate it on other modules but cannot. I'm currently looking for the JS that manipulate that form view to see if a get the bug.
Have anybody encountered this behavior on Odoo?
Thanks

Related

odoo 15 default_partner_id is not correctly used from context

we are migrating our odoo v13 App to odoo v15.
We have a model that is using delegation inheritance to extend a res.partner (_inherits = {"res.partner": "partner_id"}). In res.partner we have an action (act_window) to create a new instance of our model based on the actual res.partner. We are redirecting to a form of our model with context "'default_partner_id': active_id". In the redirected form the fields of the contact (name, email) are prefilled correctly with the data of the contact but the field "partner_id" is empty. When we save the new instance of our model odoo creates also a new res.partner with the same data as the source res.partner.
I don't know what we are doing wrong so I've created a simple view and action with res.users so that anybody can reproduce the issue.
I've created an issue on github so that anybody can reproduce it:
https://github.com/odoo/odoo/issues/81508
I've also created a ticket over the odoo support but the answer was:
"... customisation even via a view and XML code is still customisation; this is not covered by traditional Odoo support. (see: https://www.odoo.com/documentation/15.0/services/support/what_can_i_expect.html)"
Does anybody can help us? I don't know if whe are doing something wrong or if odoo isn't working correctly. I think it is odoo but I can't create a szenario without customizings.

Reusable Pentaho dashboard side-bar

I have added a side bar like this one onto a CDE dashboard.
https://bootsnipp.com/snippets/featured/responsive-navigation-menu
Now the sidebar needs to be on every page listed on the menu.
What is the best way to go about this?
I could copy it on every single dash board - it works but it's not great especially if I need to change stg ex-post.
Create an "index" page with the side bar and an iframe to display the "sub" dashboards?
Create a widget (I tried but no success so far)
Custom component?
I think I solved the problem by using jquery load like these guys did.
Include another HTML file in a HTML file

How to track when a user views a JIRA issue

In my plugin I need to track when a user views an issue using UI. Ideally I'd like to know if it was opened directly, or was viewed in Issue Navigator Detail View. I need to track who and when viewed an issue.
What's the best way to do this?
Cheers,
Oles
The most straightforward way would be to use a Servlet Filter plugin module and scan the requested URL for those corresponding to issue views. You can generally distinguish between viewing the issue directly and a view from within the Issue Navigator by examining the query parameters.
Alternatively, you could also build a Web Panel plugin module that renders no significant UI, but which would always be invoked when an issue is viewed. You'd probably want to position the web-panel on the right side of the issue view with atl.jira.view.issue.right.context.
In either scenario above, you can fetch the current user from an injected JiraAuthenticationContext.

Openerp 7 access right layout

i have created security access for the user's. after creating i got the view like below image.
By giving permissions in .csv file like 1, 1, 1, 1 as shown in below image.
My Question is this permissions should be bring to front end. the admin can give access rights/permissions to the different users. Can we bring that permissions to front end?
Admin will directly file access like this.
And can we change the layout like below image.
How can i do this.
Thanks in advance
Your problem will be easily Solved using Creating the Controller in ODOO 8.0
You must have to Follow the Below steps for creating your layout As you want.
Create the new model class (in the form of object) in your module.
the class contain the login of get the detail of ir.model.access (which is base object of odoo)
Create the View file For displaying the your layout in the form of web page
the view file use the bootstrap classes for designing your web page layout.
the view file use as the rendering the detail of ir.model.access object
hear the Layout is based on Qweb Template as well as the web page menu for displaying your data in your webpage
Finally run the controller in your browser and see the detail of your access rights in the form of webpage

BOM structure inside manufacturing order.(tree view inside a model) openerp

I need to add a new page inside manufacture order which shows the tree view of bom of the main product.Something like the image below
Does anyone have idea about it?I need it in 6.0.3
If you are using new web client i.e. 6.1+ this feature you are asking that "add a new page inside manufacture order which shows the tree view of bom" Does not works,
Pure Solution is use GTK client or Go Implement the missing feature in web client.
or What you can do is yo can provide some Right hand side short cut act windows which will open the new view which is expected by you.
and IF I am not missing anything then this matches with your older post : how to group one2many list view inside another model in openerp 6.1? ;)
Thank You