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

Hi there!

I'm trying to create a custom module that's basically sets up the configuration for a company that i'm working for. 

  • Should I even make a custom module for this or execute some kind of python script? I'm aiming for the one that is the best regarding conventions/maintainability
  • How can I execute a one-time script upon module installation? Is it feasible to execute just 1 method instead of creating a throwaway class?
  • I know data creation/removal can be done via xml too but how can I modify some existing data?

Let's say my goal is to change just the name of the current company to 'ABC'. How can I do that?

 

아바타
취소
베스트 답변

What you describe is a "profile module".

You can create a module that depends on the module you have to install and with xml file, you can override existing record. for example, you can change the company name by putting this xml record:

<record id="base.main_company" model="res.company">

      <field name="name">My super company</field>

</record>

This will override the name of the company because the XML ID is identical to an existing one and so it will just update it

 

In your XML file, i suggest you to put

<data noupdate="1">

and like that, it will just create/update your data's when you install your module. So you can change the value in the interface and when you'll make an update of your module, it will not override the value given trough the interface

아바타
취소
관련 게시물 답글 화면 활동
0
3월 15
3602
1
3월 15
6720
2
3월 15
4593
0
4월 25
1017
2
1월 24
2251