Odoo permission: odoo permission
<Record id = "group_lm_apply" model = "res. groups"> <-- id is the permission group id, which can be called elsewhere. The model points to res. groups, which has the res_groups table in the database and contains the relevant information -->
<Field name = "name"> business department </field>
<Field name = "category_id" ref = "legalmanagement. module_category_legal_sample"/> <-- category_id specifies the application (module) to which the Group belongs -->
<Field name = "implied_ids" eval = "[(4, ref ('legalmanagement. group_lm_sample ')]"/> <-- see -->
<Field name = "comment"> lm apply </field>
</Record>
Eval Parsing
(4,ID)
Add a master-slave link to an object with id = ID.
(3,ID)
Removes the master-slave link between the object and id = ID, but does not delete the object.
(2,ID)
Remove the master-slave link between the object and id = ID, and delete the object (call the unlink method)
(5)
Remove all links, that is, loop all Slave Data and call (3, ID)
(6,0,[IDs])
Replace the original link record with the record in IDs, that is, execute(5)
Recycling IDs execution(4,ID)