Due an elaboration reason, I should create a field that store values for each record compared with other values of the same kind (odoo v8).
So as result I should have something as a table:
The record are A1, A2, A3, ...
The values:
A1 A2 A3
A1 1 5 9
A2 1/5 1 7
A3 1/9 1/7 1
How should I structure the ORM to store this kind of data?
May be i could just create a function that reads all the values store in ORM (A1 A2 A3) and then allows the user to input the confrontation values (1, 5, 9,7, ....).