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

Hi I'm trying to hide create button for attendance from 'Human Resources > Attendance'. Employees must be able to Sign In, Sign Out from top button, but should not be able to create the attendance from the HR > Attendance menu.

If I change access rights from 'Settings > Security > Access Control List > hr.attendance.system.user' and deselect 'create access' it disables both create button from attendance and Sign-In/Sign-Out button.

I just want to hide 'Create' button, so followed some questions answers from OpenERP Q&A help.

Tried changing the code from source files 'openerp > addons > hr_attendance > hr_attendance_view.xml'

<form string="Employee attendances" version="7.0">
                    <sheet>
                    <group>

To

<form string="Employee attendances" create="false" version="7.0">
                    <sheet>
                    <group>

but that did no affect at all in OpenERP.

Please help. I'm new to openerp and exploring it. Have PHP/HTML/CSS experience.

I just wish I could give the 'Create' button a CSS value like 'display: none' somewhere just to hide/invisible it.

Thanks & Regards, Sat

아바타
취소

you can get some hint from here: https://www.odoo.com/forum/how-to/developers-13/setting-up-rules-access-right-in-xml-csv-files-12667

작성자 베스트 답변

However, I got my answer out of already answered questions here on this help centre. help.openerp.com/question/11895/how-to-remove-create-button-in-a-model/

It's solved this way:

  • Go to Settings > Technical > User Interface > Views
  • There search 'attend' and press enter.
  • Edit 'hr.attendance.tree'
  • Change the code as bellows:

    <tree string="Employee attendances" create="false">

to

<tree string="Employee attendances" create="false">

and in 'hr.attendance.form' change

<form string="Employee attendances" version="7.0">

to

<form string="Employee attendances" create="false" version="7.0">

Go to 'Human Resources > Attendance' and you'll not find 'Create' button there for anyone. Even Manager/Officer won't be able to create attendance.

Next thing I'm finding is to disable it for a group/Employees only. Let's see.

If you have any suggestion, please suggest.

Thanks & Regards, Sat.

아바타
취소
베스트 답변



1. Make A Group (Setting --> Users --> Groups)
2. And then go to Access Rights Tab
3. Add item in one2many for hr.attendance object with only Read Access and Save group Form.
4. Add users in this group
5. Create button will not show for particular users



 

아바타
취소
관련 게시물 답글 화면 활동
1
8월 22
2612
3
1월 24
14523
2
4월 17
15568
3
4월 25
11861
1
11월 22
4416