콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
4 답글
3643 화면
베스트 답변

You can go to the menu /Settings/Technical/Database Structure/Models

Search for your module and add a field to the list, the field name need to be saved with prefix 'x_' because it's a custom one. Next you may need to add it to a view, search for the needed one at menu /Settings/Technical/User Interface/Views.

All of this need to be done using the group "Technical Features" to be able to see those menus

아바타
취소

This method is not correct since the future updates modules will destroy your change. It is best to create your own personal inheriting the standard module to complete module. See several examples on the forum.

Really??, maybe the view change but i don't see that will remove the field

베스트 답변

For exemple insert a new field in product.template

class product_template(osv.osv):

_name = 'product.template'
_inherit = 'product.template'

_columns = {
'my_field_id': fields.char('Title"',size=64),

and in the view

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

<field name="name">product.template.common.form</field>
<field name="model">product.template</field>
<field name="inherit_id" ref="product.product_template_form_view" />
<field eval="25" name="priority"/>
<field name="arch" type="xml">
<field name="uom_id" position="after">
<field name="my_field_id"/>
</field>
</field>
</record>
아바타
취소