blob: c567bfc8f8c99334dc5e5008882dfd879e97434a (
plain)
1
2
3
4
5
6
7
8
9
10
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class ResUsers(models.Model):
_inherit = 'res.users'
target_sales_invoiced = fields.Integer('Invoiced in Sales Orders Target')
|