mirror of
https://github.com/guohuadeng/app-odoo.git
synced 2025-02-23 04:11:36 +02:00
11 lines
189 B
Python
11 lines
189 B
Python
# -*- coding: utf-8 -*-
|
||
|
||
from odoo import api, fields, models, tools, _
|
||
|
||
|
||
class Company(models.Model):
|
||
_inherit = "res.company"
|
||
|
||
# 注意,res.partner 有 parent_id 和 child_ids
|
||
|