Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Estate Managament
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

Model relationship issue ( many2one - one2many ) in GUI v9

Odoberať

Get notified when there's activity on this post

This question has been flagged
many2oneone2manyguirelationshipsv9
1 Odpoveď
5392 Zobrazenia
Avatar
3piece

Hello, fellow odooer's.


I am editing models as a power user (no access to the terminal, unrestricted access to the GUI).

My aim is to have 'leads' (crm.lead) as child objects of 'projects' (project.project).


The relational link I have created doesn't work as anticipated.

The modules installed for this include Project and CRM from community V9.


The steps I have taken are below:


Edit the Lead/Opportunity (crm.lead) model

Settings>Technical>Database Structure>Models>crm.lead>edit

Added a field to the crm.lead model

"Add an Item">

		Field Name: 		x_project_id
		Field Label: 		Parent Project
		Field Type:		many2one
		Object Relation:	project.project
		On Delete:		Restrict
		Domain (Default):	[]
		Required (Default):	False
		Readonly (Default):	False
		Indexed:		True
		Copied (Default):	False

>Save(item)>Save(Model)


Edit the Project (project.project) model

Settings>Technical>Database Structure>Models>project.project>edit

Added a field to the project.project model

"Add an Item">

			Field Name: 		x_lead_ids
			Field Label: 		Leads / Opportunites
			Field Type:		one2many
			Object Relation:	crm.lead
			Relational Field:	x_project_id
			Domain (Default):	[]
			Required (Default):	False
			Readonly (Default):	False
			Indexed:		True
			Copied (Default):	False

>Save(item)>Save(Model)


Add the 'Parent Project' field to the 'CRM - Leads Form' form

Edit the 'CRM - Leads Form' (crm.crm_case_form_view_leads) form

Settings>Technical>User Interface>Views>CRM - Leads Form>edit

Insert the field '<field name="x_project_id"/>'

			<?xml version="1.0"?><form string="Leads Form">
			                <header>
			                    ...
			                </header>
			                <sheet>
			                    ...
			                    <group>
			                        <group>                            
			                            ...
			                            <field name="partner_name" string="Company Name"/>
			                            <field name="x_project_id"/>
			                            <label for="street" string="Address"/>
			                            ...
			                        </group>
			                        ....
			                    </group>
			                    <notebook>
			                     ....
			                    </notebook>
			                </sheet>
			                ....
            		</form>

>Save(View)


Add the 'Leads / Opportunites' field to the 'project.project.form' form

Edit the 'project.project.form' (project.edit_project) form

Settings>Technical>User Interface>Views>project.project.form>edit

Insert the field '<field name="x_lead_ids"/>'

				<?xml version="1.0"?>
				<form string="Project">
				                <header>
				                    ...
				                </header>
				                <sheet string="Project">
				                    ...
				                    <notebook>
				                       ...
				                        <page string="Details">
				                          ....
				                             <group string="Leads and Opportunities" name="Leads">
									<field name="x_lead_ids"/>
				                            </group>
				                        </page>
				                    </notebook>
				                </sheet>
				                ....
                		</form>

>Save(View)


The problem:

When opening up a Lead and changing the Parent Project. It changes the project on all leads.

Additionally, there are no leads in any of the Projects, and I can't add one.


I hope the question is comprehensive enough that anyone can follow it.

I would like to inspect the generated .py files, though I don't know how to do this from the GUI.


Any assistance with how to correctly create relationships would be of great value.



Best Regards,

James Moyle.

0
Avatar
Zrušiť
Avatar
3piece
Autor Best Answer

I have found discovered the issue.


All that was required was a restart of the odoo service.

I am not sure how to do this from the GUI (If it is possible).


Another point. If you are only using the GUI for making relational fields. using x_name as a field name is equivalent to name. This means that you should call the default field you want to display: 'x_name'

I believe this is the same as the old rec_name field.


Best Regards,

James

0
Avatar
Zrušiť
Enjoying the discussion? Don't just read, join in!

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

Registrácia
Related Posts Replies Zobrazenia Aktivita
Access One2many field from onchange in v9
many2one one2many v7 onchange v9
Avatar
0
júl 16
4516
How do I put One2many after Many2one defined? - transient module states reset
many2one one2many
Avatar
1
mar 23
3286
Odoo Studio how to set a chain of multiple and related Many2one within a One2many lines
many2one one2many
Avatar
0
dec 22
3888
filter according to comodel's fields
many2one one2many
Avatar
0
jún 21
3552
How to display other fields of a onetomany relation ?
many2one one2many
Avatar
0
jún 20
6421
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة 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 je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

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