Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
1 Balas
5801 Tampilan

Is _inherit the best way to make changes in functionality ?

When using _inherit some time to change some small thing in view or logic i need to write a lot of code around... it's slowly

May be if i need to make big changes in system it's better to change sources directly and every time when sources updated merge with it?

Avatar
Buang
Jawaban Terbai

In some cases, if your are so large, or your functionality so specific, that is "transfigures" the purpose and functionality of the standard module, it will be best to build it from scratch.

You will need to evaluate carefully, and it can be a hard decision. I suggest to ask yourself: if I make the changes on top on an existing module, and at some point the client wants to also use the original functionality it offered, will it be practical to still do so? If the answer is yes, extend the existing module, if it's no, build a new one.

In general, you should try your best to leverage and build on top of existing functionality. Never, I repeat, never, change sources directly. Always use inheritance. It might look slow at first, but you will get more robust and future proof modules.

Changes made directly to source code:

  • Don't automatically survive to product version upgrades
  • Are a lot harder to migrate to later product versions
  • In general are not considered good practices, and so will not be accepted for community contributions
Avatar
Buang
Post Terkait Replies Tampilan Aktivitas
1
Mar 15
8933
0
Des 23
1040
0
Sep 23
1770
3
Jun 17
17724
0
Agu 16
3958