Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
3 Trả lời
2976 Lượt xem

OpenERP 7 :
under the Physical inventory in inventory order line 
I want "Product Unit of Measure" field as read-only
When I select the product then my unit assigns to that field.
 and this is a dropdown how can I achieve this.

  

Ảnh đại diện
Huỷ bỏ

If you are new to odoo development, have a look at this:

http://learnopenerp.blogspot.com/

Câu trả lời hay nhất

Hello, Sushant 

You can inherit stock inventory line form view as below mentioned code

<record id="stock_inventory_line_inherit" model="ir.ui.view">

            <field name="name">stock.inventory.line.form.inherit</field>

            <field name="model">stock.inventory.line</field>

            <field name="inherit_id" ref="stock.view_inventory_line_form"/>

            <field name="arch" type="xml">

             <field name='product_uom' position="replace">

              <field name="product_uom" groups="product.group_uom" readonly='1'/>

              <field>

            </field>

        </record>

Thanks

Anisha Bahukhandi

Technical Content Writer

Ảnh đại diện
Huỷ bỏ
Tác giả Câu trả lời hay nhất

Thanks @Anisha for the reply.

I have tried this but not worked for me because my "inherit_id" is 
"stock.view_inventory_form
If I replaced this then it works but when I select the product then it returns blank. means it does not allow us to assign value to 
product_uom because this is read-only.

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
1
thg 12 22
13757
1
thg 5 22
6752
3
thg 9 21
5807
1
thg 3 20
2352
3
thg 3 20
4720