mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-23 22:32:00 +02:00
Initial commit: Core packages
This commit is contained in:
commit
12c29a983b
9512 changed files with 8379910 additions and 0 deletions
|
|
@ -0,0 +1,15 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class AccountAnalyticApplicability(models.Model):
|
||||
_inherit = 'account.analytic.applicability'
|
||||
_description = "Analytic Plan's Applicabilities"
|
||||
|
||||
business_domain = fields.Selection(
|
||||
selection_add=[
|
||||
('purchase_order', 'Purchase Order'),
|
||||
],
|
||||
ondelete={'purchase_order': 'cascade'},
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue