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.
10 lines
305 B
10 lines
305 B
# -*- coding: utf-8 -*-
|
|
from odoo import models, fields
|
|
|
|
|
|
class CompanySequence(models.Model):
|
|
_inherit = 'res.company'
|
|
|
|
customer_code = fields.Integer(string='Customer code', required=True)
|
|
supp_code = fields.Integer(string='Supplier code')
|
|
next_code = fields.Integer(string='Next code')
|
|
|