Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odpovědět
4392 Zobrazení

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
Zrušit
Nejlepší odpověď

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
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
0
bře 15
3576
1
bře 15
6678
2
bře 15
4572
0
dub 25
972
2
led 24
2229