10 lines
280 B
Python
10 lines
280 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class AccountAnalyticLine(models.Model):
|
|
_inherit = 'account.analytic.line'
|
|
|
|
category = fields.Selection(selection_add=[('picking_entry', 'Inventory Transfer')])
|