You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

11 lines
304 B

# -*- coding: utf-8 -*-
from odoo import models, fields
class AccountJournal(models.Model):
_inherit = 'account.journal'
qif_date_format = fields.Selection([
('dmy', 'DD/MM/YYYY'),
('mdy', 'MM/DD/YYYY'),
('ymd', 'YYYY/MM/DD')], string='QIF Date format', default='dmy')