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

Hi everyone!

I'm working with Odoo v13 Community and I bought a third party app that doesn't include Kanban View and I want to add it.

I've created the view in Settings --> Technical --> Views



with the following code:


But the Kanban View option in the model is still missing.

am i missing something?

I would really appreciate some help, thanks in advance!

아바타
취소
베스트 답변

Hi,

You have to specify the newly created view inside the action of the corresponding menu.

Thanks

아바타
취소
작성자

thank you for the answer, I was missing that!!

베스트 답변

I guess you are missing the "kanban" keyword in your "r.actions.act_window" (put kanban first if you want to see it once you click on the model)

With developer mode:

You can go Settings --> Technical --> Window actions and add "kanban" keyword to view mode

OR

Do it through code

You can add it like the following with xml:

<record model="ir.actions.act_window" id="yourModel_action">
      <field name="name">Your Model</field>
      <field name="type">ir.actions.act_window</field>
      <field name="res_model">yourModel.yourModel</field>
      <field name="view_mode">kanban,tree,form,graph,pivot</field>
    </record>



아바타
취소
작성자

Yes!! thank you

관련 게시물 답글 화면 활동
1
2월 19
6899
0
1월 19
5920
1
3월 15
6279
0
3월 15
5168
1
3월 15
17655