콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
15968 화면

I want to add two more columns "column1" and "column2" to res.users model. I want to show these two columns in the Settings -> users -> create -> in "Access Rights", "Other" menu. How can i proceed for this. 

아바타
취소
베스트 답변

Hi,

Try below code

class res_users(osv.osv):

    _inherit = 'res.users'

    _columns = {
        'column1': fields.char('column1', size=30),
        'column2': fields.char('column1', size=30),
        }

res_users()

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

        <field name="name">res.users.form.inherit</field>
        <field name="model">res.users</field>
        <field name="type">form</field>
        <field name="inherit_id" ref="base.view_users_form"/>
        <field name="arch" type="xml">
            <field name="company_id" position="after">
               <field name="column1" />
               <field name="column2" />
             </field>
        </field>
    </record>

    

 

아바타
취소
작성자

Thank you, This solved my problem

관련 게시물 답글 화면 활동
1
11월 24
3585
2
10월 17
7246
2
12월 16
11953
1
5월 16
5870
4
2월 25
2893