Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

How can I pass on an attribute to childs and then after various sub relations make a select for the "add" tab of a sub sub sub c

Subscribe

Get notified when there's activity on this post

This question has been flagged
developementmodule
4377 Views
Avatar
Sascha Pfeiffer

Hi,

thanks to all who are reading and trying to help. I have a very complicated structure of tables and relation but it looks like:

res.partner -- o2m --> invoiceposition -- o2m --> invoiceversion -- m2m --> shortcodes <-- o2m -- res,partner

When I assign a shortcode to a invoiceversion, I only want to show those shortcodes, where :

res.partner.shortcode.partner_id = res.partner.invoicepositon.invoiceversion.partner_id

Below are my module and my xml file shortened to the essential parts. Would be awesome if someone could tell me how to alter them. Please keep in mind that this is my first openerp module, so a code example and where to put it exactly would be SUPER helpful.

 

class sh_partnerdetails(osv.osv):
    _name='res.partner'
    _inherit='res.partner'

    _columns = {
        [...]
        'invoiceposition': fields.one2many('sh.invoiceposition','company','Invoiceposition', help='Invoiceposition of this user.'),
        'shortcodes': fields.one2many('sh.shortcodes','shortcodecompany','Assigned Shortcodes', help='A list of assigned shortcodes.')
    }

class sh_invoiceposition(osv.osv):
    _name = 'sh.invoiceposition'

    _columns = {
        'company': fields.many2one('res.partner', 'Company', help="Belongs to which company / partner?", required=True),
        
        'comment': fields.char('Comment', size=120, help='Why did you update the billing details?', required=True),
        
        'invoicepositionversions': fields.one2many('sh.invoicepositionversions','isinvoicepositionversionof','Invoiceposition Version', help='A list of assigned invoiceposition versions.')
    }
    
sh_invoiceposition()

class sh_invoicepositionversions(osv.osv):
    _name = 'sh.invoicepositionversions'
    
    _columns = {
        'isinvoicepositionversionof': fields.many2one('sh.invoiceposition','Is invoicepositionversion of', help='This invoiceposition version Belongs to which invoiceposition?'),
        
        [...]
        
        'shortcodes': fields.many2many('sh.shortcodes', 'sh_invoicepositionversions_shortcodes_rel', 'operatorshowinvoicesetting_id', 'shortcode_id', 'Assign shortcode', help='A List of shortcodes assigned to this Version')
    }
sh_invoicepositionversions()

[...]


class sh_shortcodes(osv.osv):
    _name = 'sh.shortcodes'

    _columns = {
        'shortcodecompany': fields.many2one('res.partner','Is shortcode of which company', help='This shortcode number belongs to which company?', required=True),
        'isassignedinwhichoperatorinvoiceversion': fields.many2many('sh.invoicepositionversions', 'sh_invoicepositionversions_shortcodes_rel', 'shortcode_id', 'operatorshowinvoicesetting_id','Is used in which operatorinvoiceversion?', help='This shortcode is used in which operator invoice version?'),
        
        [...]
    }
    
    _sql_constraints = [
        ('uniq_number', 'unique(number)', "This shortcode number alraedy exists. A shortcode can only be assigned to one company")
    ]

sh_shortcodes()

 

my xml file looks like this:

 

<record id="sunhill_partnerdetails" model="ir.ui.view">
    <field name="name">res.partner.form</field>
    <field name="model">res.partner</field>
    <field name="type">form</field>
    <field name="inherit_id" ref="base.view_partner_form" />
    <field name="arch" type="xml">
        <notebook position="inside">
            <page string="Billing Details" attrs="{'invisible': [('is_company','=',False),('parent_id','!=',False)]}">
                [...]
                <separator string="Invoicepositions" colspan="4"/>
                <field name="invoiceposition" widget="one2many_list" nolabel="1" class="oe_inline oe_no_button" context="{'default_company': active_id}">
                    <tree string="invoiceposition">
                        <field name="comment"/>
                    </tree>
                </field>
                
                <separator string="Shortcodes" colspan="4"/>
                <field name="shortcodes" widget="one2many_list" nolabel="1" class="oe_inline oe_no_button" context="{'default_shortcodecompany': active_id}">
                    <tree string="shortcodes">
                        <field name="number"/>
                        <field name="description" />
                    </tree>
                </field>
            </page>
        </notebook>
    </field>
</record>

 

<!-- Start invoiceposition-->
<record model="ir.ui.view" id="invoiceposition_form">
    <field name="name">invoiceposition</field>
    <field name="model">sh.invoiceposition</field>
    <field name="type">form</field>
    <field name="arch" type="xml">
        <form string="invoiceposition">
            <field name="company" domain="[('is_company', '=', True)]"/>
            <field name="comment"/>
            <separator string="Invoiceposition Versions:" colspan="4"/>
            <field name="invoicepositionversions" colspan="4" widget="one2many_list" nolabel="1" context="{'default_isinvoicepositionversionof': active_id}">
                <tree string="invoiceposition Version">
                    [...]
                </tree>
            </field>
        </form>
    </field>
</record>

<record model="ir.ui.view" id="invoiceposition_tree">
    <field name="name">invoiceposition</field>
    <field name="model">sh.invoiceposition</field>
    <field name="type">tree</field>
    <field name="arch" type="xml">
        <tree string="invoiceposition">
            <field name="company" domain="[('is_company', '=', True)]"/>
            [...]
        </tree>
    </field>
</record>

<record model="ir.actions.act_window" id="action_invoiceposition">
    <field name="name">invoiceposition</field>
    <field name="res_model">sh.invoiceposition</field>
    <field name="view_type">form</field>
    <field name="view_mode">tree,form</field>
</record>
<!-- End-->


<!-- Start invoicepositionversions-->
<record model="ir.ui.view" id="invoicepositionversions_form">
    <field name="name">invoiceposition Versions</field>
    <field name="model">sh.invoicepositionversions</field>
    <field name="type">form</field>
    <field name="arch" type="xml">
        <form string="invoiceposition Versions">
            [...]
            <separator string="Assigned Shortcodes:" colspan="4"/>
            <field name="shortcodes" colspan="4" widget="many2many_list" nolabel="1" context="{'isassignedinwhichoperatorinvoiceversion': active_id}">
                <tree string="Assigned Shortcodes">
                    [...]
                </tree>
            </field>
        </form>
    </field>
</record>

<record model="ir.ui.view" id="invoicepositionversions_tree">
    <field name="name">invoiceposition Versions</field>
    <field name="model">sh.invoicepositionversions</field>
    <field name="type">tree</field>
    <field name="arch" type="xml">
        <tree string="invoiceposition Versions">
            [...]
        </tree>
    </field>
</record>

<record model="ir.actions.act_window" id="action_invoicepositionversions">
    <field name="name">invoiceposition Versions</field>
    <field name="res_model">sh.invoicepositionversions</field>
    <field name="view_type">form</field>
    <field name="view_mode">tree,form</field>
</record>
<!-- End-->


<!-- Start Shortcodes -->
<record model="ir.ui.view" id="shortcodes_form">
    <field name="name">Shortcodes</field>
    <field name="model">sh.shortcodes</field>
    <field name="type">form</field>
    <field name="arch" type="xml">
        <form string="Shortcodes">
            [...]
            <field name="shortcodecompany" domain="[('is_company', '=', True)]"/>
        </form>
    </field>
</record>

<record model="ir.ui.view" id="shortcodes_tree">
    <field name="name">Shortcodes</field>
    <field name="model">sh.shortcodes</field>
    <field name="type">tree</field>
    <field name="arch" type="xml">
        <tree string="Shortcodes">
            <field name="shortcodecompany" domain="[('is_company', '=', True)]"/>
            [...]
        </tree>
    </field>
</record>

<record model="ir.actions.act_window" id="action_shortcodes">
    <field name="name">Shortcodes</field>
    <field name="res_model">sh.shortcodes</field>
    <field name="view_type">form</field>
    <field name="view_mode">tree,form</field>
</record>
<!-- End-->

 

Thanks alot!

 

 

 

0
Avatar
Discard
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Sign up
Related Posts Replies Views Activity
dependence on one development
developement module
Avatar
0
Jun 20
2817
How do I show event duration in Calendar.?
developement module calendar
Avatar
Avatar
Avatar
2
Jul 25
1435
Error when importing module Product Bidding In ECommerce in odoo 17
module
Avatar
Avatar
1
Jul 24
2691
Missing required value for the field 'Model' (model_id)
module
Avatar
Avatar
1
Jan 24
6727
UI All over the place
developement
Avatar
Avatar
Avatar
3
Jun 23
2972
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now