So, i have 1 field (price) from transaction. The type of the field is float. I want to use that field in another model (transaction.report). How to get the value from transaction and use it in transaction.report?
from odoo import api, fields, models, tools
class Transaction(models.Model):
_name = "transaction"
price = fields.Float(string='Price)