Skip to Content
Odoo Menu
  • Prisijungti
  • Išbandykite nemokamai
  • Programėlės
    Finansai
    • Apskaita
    • Pateikimas apmokėjimui
    • Sąnaudos
    • Skaičiuoklė (BI)
    • Dokumentai
    • Pasirašymas
    Pardavimai
    • CRM
    • Pardavimai
    • Kasų sistema - Parduotuvė
    • Kasų sistema - Restoranas
    • Prenumeratos
    • Nuoma
    Svetainės
    • Svetainių kūrėjimo įrankis
    • El. Prekyba
    • Internetinis Tinklaraštis
    • Forumas
    • Tiesioginis pokalbis
    • eMokymasis
    Tiekimo grandinė
    • Atsarga
    • Gamyba
    • PLM
    • Įsigijimai
    • Priežiūra
    • Kokybė
    Žmogaus ištekliai
    • Darbuotojai
    • Įdarbinimas
    • Atostogos
    • Įvertinimai
    • Rekomendacijos
    • Transporto priemonės
    Rinkodara
    • Socialinė rinkodara
    • Rinkodara el. paštu
    • SMS rinkodara
    • Renginiai
    • Rinkodaros automatizavimas
    • Apklausos
    Paslaugos
    • Projektas
    • Darbo laiko žiniaraščiai
    • Priežiūros tarnyba
    • Pagalbos tarnyba
    • Planavimas
    • Rezervacijos
    Produktyvumas
    • Diskucija
    • Patvirtinimai
    • IoT
    • VoIP
    • Žinių biblioteka
    • WhatsApp
    Trečiųjų šalių programos Odoo Studija Odoo debesijos platforma
  • Pramonės šakos
    Mažmeninė prekyba
    • Knygynas
    • Drabužių parduotuvė
    • Baldų parduotuvė
    • Maisto prekių parduotuvė
    • Techninės įrangos parduotuvė
    • Žaislų parduotuvė
    Food & Hospitality
    • Barai ir pub'ai
    • Restoranas
    • Greitasis maistas
    • Guest House
    • Gėrimų platintojas
    • Hotel
    Nekilnojamasis turtas
    • Real Estate Agency
    • Architektūros įmonė
    • Konstrukcija
    • Estate Managament
    • Sodininkauti
    • Turto savininkų asociacija
    Konsultavimas
    • Accounting Firm
    • Odoo Partneris
    • Marketing Agency
    • Teisinė firma
    • Talentų paieška
    • Auditai & sertifikavimas
    Gamyba
    • Textile
    • Metal
    • Furnitures
    • Maistas
    • Brewery
    • Įmonių dovanos
    Sveikata & Fitnesas
    • Sporto klubas
    • Akinių parduotuvė
    • Fitneso Centras
    • Sveikatos praktikai
    • Vaistinė
    • Kirpėjas
    Trades
    • Handyman
    • IT įranga ir palaikymas
    • Saulės energijos sistemos
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Kiti
    • Nonprofit Organization
    • Aplinkos agentūra
    • Reklaminių stendų nuoma
    • Fotografavimas
    • Dviračių nuoma
    • Programinės įrangos perpardavėjas
    Browse all Industries
  • Bendrija
    Mokykitės
    • Mokomosios medžiagos
    • Dokumentacija
    • Sertifikatai
    • Mokymai
    • Internetinis Tinklaraštis
    • Tinklalaidės
    Skatinkite švietinimą
    • Švietimo programa
    • Scale Up! Verslo žaidimas
    • Aplankykite Odoo
    Gaukite programinę įrangą
    • Atsisiųsti
    • Palyginkite versijas
    • Leidimai
    Bendradarbiauti
    • Github
    • Forumas
    • Renginiai
    • Vertimai
    • Tapkite partneriu
    • Services for Partners
    • Registruokite jūsų apskaitos įmonę
    Gaukite paslaugas
    • Susiraskite partnerį
    • Susirask buhalterį
    • Susitikti su konsultantu
    • Diegimo paslaugos
    • Klientų rekomendavimas
    • Palaikymas
    • Atnaujinimai
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Gaukite demo
  • Kainodara
  • Pagalba

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

  • CRM
  • e-Commerce
  • Apskaita
  • Atsarga
  • PoS
  • Projektas
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Žymos (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Žymos (View all)
odoo accounting v14 pos v15
About this forum
Pagalba

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

Prenumeruoti

Get notified when there's activity on this post

This question has been flagged
developementmodule
4385 Rodiniai
Portretas
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
Portretas
Atmesti
Enjoying the discussion? Don't just read, join in!

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

Registracija
Related Posts Replies Rodiniai Veikla
dependence on one development
developement module
Portretas
0
birž. 20
2817
How do I show event duration in Calendar.?
developement module calendar
Portretas
Portretas
Portretas
2
liep. 25
1437
Error when importing module Product Bidding In ECommerce in odoo 17
module
Portretas
Portretas
1
liep. 24
2692
Missing required value for the field 'Model' (model_id)
module
Portretas
Portretas
1
saus. 24
6738
UI All over the place
developement
Portretas
Portretas
Portretas
3
birž. 23
2972
Bendrija
  • Mokomosios medžiagos
  • Dokumentacija
  • Forumas
Atvirasis kodas
  • Atsisiųsti
  • Github
  • Runbot
  • Vertimai
Paslaugos
  • Odoo.sh talpinimas
  • Palaikymas
  • Atnaujinti
  • Pritaikytas programavimo kūrimas
  • Švietimas
  • Susirask buhalterį
  • Susiraskite partnerį
  • Tapkite partneriu
Apie mus
  • Mūsų įmonė
  • Prekės ženklo turtas
  • Susisiekite su mumis
  • Darbo pasiūlymai
  • Renginiai
  • Tinklalaidės
  • Internetinis Tinklaraštis
  • Klientai
  • Teisinis • Privatumas
  • Saugumas
الْعَرَبيّة 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 yra atvirojo kodo verslo programų rinkinys, kuris apima visas įmonės poreikius: CRM, El. Prekybą, Apskaitą, Atsargų, Kasų sistemą, Projektų valdymą ir kt.

Unikali Odoo vertės pasiūla – būti tuo pačiu metu labai lengvai naudojama ir visiškai integruota sistema.

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