Disable one2many popup odoo 8 - odoo

Good Day! is it possible to disable pop of tree view in the form. I tried no_open="True" readonly="1" edit="False" both on field and tree view but didn't worked.
<field name="payment_line">
<tree editable="top" create="false">
<field name="product"/>
<field name="description"/>
<field name="account"/>
<field name="unit"/>
<field name="qty"/>
<field name="amount"/>
<field name="total"/>
</tree>
</field>

I've coped with the same issue in odoo 10, my one2many treeview always make a popup on click. No matter editable='bottom' option was set.
Suddenly I've found web_tree_no_open module from codingforfun, that adds a new option:
< tree open="false" >
It's for version 8 but it can be used in 10 just renaming openerp.py to manifest.py
It can be downloaded from here:
https://github.com/initOS/web/tree/8.0-tree-view-no-select/web_tree_no_open
Worked for me, I hope it helps

Use this style to disable click in read as well as edit mode:
<field name="your_o2m" style="pointer-events:none;" />

Use editable='bottom' in this case, like:
<field name='line_ids'>
<tree create='false' editable='bottom'>
<field name='so_line_id' readonly='1'/>
<tree>
</field>

Odoo Version 10.0
web_tree_no_open module adds a new option: <tree open="false">

Lists
The root element of list views is <tree> 3. The list view's root can have the following attributes:
editable
by default, selecting a list view's row opens the corresponding form view. The editable attributes makes the list view itself editable in-place.
Valid values are top and bottom, making new records appear respectively at the top or bottom of the list.
The architecture for the inline form view is derived from the list view. Most attributes valid on a form view's fields and buttons are thus accepted by list views although they may not have any meaning if the list view is non-editable
default_order
overrides the ordering of the view, replacing the model's default order. The value is a comma-separated list of fields, postfixed by desc to sort in reverse order:
<tree default_order="sequence,name desc">
create, edit, delete
allows disabling the corresponding action in the view by setting the corresponding attribute to false
on_write
only makes sense on an editable list. Should be the name of a method on the list's model. The method will be called with the id of a record after having created or edited that record (in database).
The method should return a list of ids of other records to load or update.
string
alternative translatable label for the view
Deprecated since version 8.0: not displayed anymore
Note
if the list view is editable, any field attribute from the form view is also valid and will be used when setting up the inline form
view
in the form and tree view you can add create='false' to disable the create button and edit='false' to disable the edit button.Also use editable="top" or editable="bottom" if you dont want the form view to popup. for example
<tree string="Sale Order" create="false" edit="false" editable="bottom">
...
...
...
</tree>

Related

How to not allow Many2many to be able to remove its element in form view?

I have a many2many field that represents a list of student. I want to only add student to that list but not remove any students from that list (in form view). Is it possible to implement that?
I think it's possible to do it. You need to override the #write method. Each time that an update will be made on your object, you need the compare the actual length of your many2many field current_length and the new length of students made by the update new_length.
If new_length > current_length, it's means that the update is an adding, so you can consider the changes. Otherwise, it's means that the update is a removing, so you just need to ignore the changes.
Please find below, an exemple of implementation :
#api.multi
def write(self, values):
current_length = len(self.student_list)
new_length = len(values['student_list'])
if current_length > new_length:
\* Removing of students *\
values['student_list'] = self.student_list
res = super(Object, self).write(values)
return res
Note that you can go further by making another comparaison between the ids of the current and new list, in order to be sure that the students are the same.
It s not possible using the many2many_tags widget, but using the xml tree view as part of your Form view, you can add the delete-attribute on the tree-node inside the scope of your own field:
<form>
<notebook>
<sheet>
<page string="Graduated" name="gratuated_students">
<field name="students_ids" >
<tree string="Students" editable="bottom" delete="0" >
<field name="name"/>
<field name="birthday"/>
<field name="score" readonly="1"/>
</tree>
</field>
</page>
</notebook>
</sheet>
</form>
If this view comes from an odoo's module (no custom module): you'd rather inherit this view and add the attribute "delete=0" to the existing student_ids field:
<xpath expr="//form[1]/sheet[1]/notebook[1]/page[1]/field[#name='students_ids']/tree[1]" position="attributes">
<attribute name="delete">0</attribute>
</xpath>
Otherwise, if you really want to use the many2many_tags widget and if your are experienced with odoo's js-framework, you could develop your own option "no_delete" on the basis of the following OCA module:
https://odoo-community.org/shop/web-m2x-options-2661#attr=10772

Suppress popup for One2many form field

In Odoo 12, I've defined a form containing a One2many field.
<field name="child_ids">
<tree>
<field name="child_attr"/>
</tree>
</field>
In both models (parent and child), all fields are defined as readonly=True. Clicking on a line of child_ids's list yields a popup, a behavior I'd like to suppress.
So far I have tried, in all possible combinations, to no avail:
adding create="false" edit="false" editable="bottom" to the <tree> tag (and some variations)
adding options="{'no_create': True, 'no_open': True}" to the <field> tag
creating an extra ir.actions.act_window for child_ids's model that includes only tree as view_mode
creating an empty form definition for child_ids's model (this opens an empty popup)
What am I missing?
I guess You have only created the tree view means form view used is default view meaning options="{'no_open': True}" is not for the form view
make form view also and add options="{'no_open': True}" as you yourself suggested and it should work

How to Remove Save and New from one2many form view in odoo 10?

how to hide save and new button from one2many form view in odoo 10?
This is a nasty hack but worked for me.
In an inherited view, add the following:
<xpath expr="//form" position="inside">
<style>
.btn-primary:nth-child(2){
display:none !important;
}
</style>
</xpath>
Or something similar depending on the HTML structure of your page
If you want to hide save and new one button, you mean that you don't want the user to add or edit the records.
<field name="your_one2many_field">
<tree edit="false" create="false">
...
....
....
and if you want to hide delete also just make your field readonly.
<field name="your_one2many_field" readonly="true"/>
so what do you want exactly what option you want the user to still have.
Make One2many field readonly="1" in XML

How to make a tree editable on top, with "create" button disabled

I want to get a treview editable inline, I want also to disable the button create.
the problem is: when I hide the button create ( with the arrtibute create=false)
I can't save my edition on the tree.
try as follow. and when put the cursor on "pod_date" field, keying the data and press the "Enter" key. the data will record into the db table.
<tree string="Picking list" create="false">
<field name="sale_id" readonly="1"/>
<field name="pod_date" />
</tree>

How to make tabindex in openerp fields

I want to change the tabindex in a form in opererp
how can I change it in the xml file or the python code
I am using openerp 6.1
example to what I need
in sales order form ,user want to change the focus of the element using tab button
he need to write first the order reference field then go to customer service field using a tab button,but when I press tab I go to the date button not the custom service even that the date button has a default value
Thanks
You can inherit and change both the models (defined in python files) and views (defined in xml files). More details about inheritance can be found here Object Inheritance
and Inheritance in Views
you can overwrite the original xml arch in your view and change the sequence of pages as per your requirement
like:
<record id="**account.invoice_supplier_form**" model="ir.ui.view">
<field name="name">account.invoice.supplier.form</field>
<field name="model">account.invoice</field>
<field name="priority">2</field>
<field name="arch" type="xml">
<form string="Supplier Invoice" version="7.0">
as shown above you can write the same xml arch as define in account for supplier invoice,
and you can now change sequence of pages
hope this help