2014-06-02 11:47 GMT+02:00 Paul Leverett <[email protected]>: > But looking again at example it seems that the underscore ("_") is > reserved for extending existing modules - is this correct? >
It is the usual approach, though nothing enforces it. > Is this a programming rule in Tryton, or only a convention (or custom)? > More of a convention. What matters is that the module name (the one you use in the __init__ file) matches the folder name. And when you extend view, the reference to the inherited view must be : "<module_name>.<view_id>" where <module_name> matches the folder name / module name where the parent view was first defined. Jean Cavallo *Coopengo*
