#TrytonTips Use widget many2many on One2Many & vice versa. many2many replaces create/delete by add/remove, one2many can have both with add_remove
#TrytonTips You can update any lines inside a One2Many via on_change calls because even non-saved lines have id
#TrytonTips Don't care about the number of ids when browsing, the LRU cache will keep memory usage low
#TrytonTips You can display the same field many times in the same view with different widgets.
#TrytonTips Always use the Tryton module name for the folder (even with prefix) because of https://github.com/pypa/setuptools/issues/230 https://github.com/pypa/pip/issues/3160
#TrytonTips You can display the same field many times in the same view with different widgets.
#TrytonTips Use the automatic option in the reconciliation wizard to reconcile all suggestions automatically
#TrytonTips You can define read and write access per fields, the server will remove or read-only the fields on the fly
#TrytonTips When defining a list/tree view make non-essential columns optional so users can choose whether to display them
#TrytonTips trytond ensures XML records and database records are always in sync
#TrytonTips Use the automatic option in the reconciliation wizard to reconcile all suggestions automatically
#TrytonTips You can define icons used by the client in your module on the server side
#TrytonTips The client automatically hide the relation field in One2Many widget so no need of specific view definition
#TrytonTips When you delete/remove a line in a One2Many or Many2Many widget, the line stays crossed out to allow you to undo the deletion until you save the record
#TrytonTips The client automatically hide the relation field in One2Many widget so no need of specific view definition
#TrytonTips A factor can be applied when displaying a numeric field: https://trytond.readthedocs.org/en/latest/topics/views/index.html#common-attributes-factor
#TrytonTips You can define icons used by the client in your module on the server side
#TrytonTips Install unaccent function on your database to get search performed without accent
#TrytonTips A factor can be applied when displaying a numeric field: https://trytond.readthedocs.org/en/latest/topics/views/index.html#common-attributes-factor
#TrytonTips You can display the same field many times in the same view with different widgets.