10 lines
301 B
Python
10 lines
301 B
Python
from odoo import models, fields, _
|
|
|
|
|
|
class BrosseBankDeposits(models.Model):
|
|
_name = 'brosse.bank.deposits'
|
|
_description = 'Bank Deposits'
|
|
|
|
amount = fields.Monetary(string="Amount", currency_field='currency_id')
|
|
currency_id = fields.Many2one('res.currency', string='Account Currency')
|