Skip to Content
Menu
This question has been flagged
1 Reply
4243 Views

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?

 

Avatar
Discard
Best Answer

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

Avatar
Discard
Related Posts Replies Views Activity
0
Mar 15
3453
1
Mar 15
6521
2
Mar 15
4403
0
Apr 25
784
2
Jan 24
2082