forked from Mapan/odoo17e
25 lines
936 B
Python
25 lines
936 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import api, fields, models, _
|
|
|
|
from odoo.exceptions import ValidationError
|
|
|
|
|
|
class ResCompany(models.Model):
|
|
_inherit = 'res.company'
|
|
|
|
bacs_sun = fields.Char(string='Service User Number', help="Service user number of your company within BACS, given by the bank. Write 'HSBC' here if your bank does not provide one.")
|
|
|
|
@api.constrains('bacs_sun')
|
|
def validate_bacs_direct_credit_sun(self):
|
|
for record in self:
|
|
if not record.bacs_sun or record.bacs_sun == 'HSBC':
|
|
continue
|
|
|
|
if not record.bacs_sun.isdigit():
|
|
raise ValidationError(_("The service user number must be numeric, or 'HSBC' if you don't have any."))
|
|
|
|
if len(record.bacs_sun) != 6:
|
|
raise ValidationError(_("The service user number must be 6 characters long."))
|