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

tree issue : unable to edit in place ?

Odoberať

Get notified when there's activity on this post

This question has been flagged
editableviewtree
1 Odpoveď
5510 Zobrazenia
Avatar
Alkivi SAS

Hi there,

I'm trying to make an editable tree, but after dozain of tries, I'm unable to do so ...

Test I've made :

  • added all the columns of the class in the tree as invisible
  • added/removed readonly attributes from both class/xml
  • various other test

Any pointers would be appreciated :)

xml data :

     <!-- Accounts Search View-->
    <record model="ir.ui.view" id="view_linxo_account_search">
        <field name="name">linxo.account.search</field>
        <field name="model">linxo.account</field>
        <field name="arch" type="xml">
            <search string="Linxo Bank Accounts">
                <field name="name" string="Account"/>
                <field name="account_number" string="Account Number"/>
            </search>
        </field>
    </record>

    <!-- Account Tree View -->
    <record model="ir.ui.view" id="view_linxo_account_tree">
        <field name="name">linxo.account.tree</field>
        <field name="model">linxo.account</field>
        <field name="type">tree</field>
        <field name="test">
            <tree string="Linxo Bank Accounts" editable="bottom">
                <field name="name" />
                <field name="linxo_id" invisible="True" />
                <field name="journal_id" />
                <field name="account_group_name" invisible="True" />
                <field name="account_number" />
                <field name="type" invisible="True" />
            </tree>
        </field>
    </record>

    <!-- Account Action -->
    <record model="ir.actions.act_window" id="action_linxo_account">
        <field name="name">Linxo Bank Accounts</field>
        <field name="res_model">linxo.account</field>
        <field name="view_type">tree</field>
        <field name="view_mode">tree</field>
        <field name="search_view_id" ref="view_linxo_account_search"/>
    </record>

Python data :

class linxo_account(osv.osv):
""" Bank Account stored on Linxo """
_name = "linxo.account"
_description = "Linxo Bank Account"
_columns = {
    'name': fields.char('Account Name', size=120, required=True),
    'linxo_id' : fields.integer('Linxo Account ID', required=True),
    'journal_id': fields.many2one('account.journal', 'OpenERP Journal Id', ondelete='cascade'),
    'account_group_name': fields.char('Account Group Name', size=30, required=True),
    'account_number': fields.char('Account Number', size=30, required=True),
    'type': fields.char('Account Type', size=30, required=True),
}
_sql_constraints = [
    ('name', 'unique(name)', 'The name of the bank account must be unique'),
    ('account_number', 'unique(account_number)', 'The account number must be unique'),
    ('linxo_id', 'unique(linxo_id)', 'The account number must be unique')
]
_order = 'name asc'
linxo_account()
0
Avatar
Zrušiť
Avatar
Hiral Patel (hip)
Best Answer

Hello,

Update the xml code :

<record model="ir.ui.view" id="view_linxo_account_search">
        <field name="name">linxo.account.search</field>
        <field name="model">linxo.account</field>
        <field name="arch" type="xml">
            <search string="Linxo Bank Accounts">
                <field name="name" string="Account"/>
                <field name="account_number" string="Account Number"/>
            </search>
        </field>
    </record>

    <!-- Account Tree View -->
    <record model="ir.ui.view" id="view_linxo_account_tree">
        <field name="name">linxo.account.tree</field>
        <field name="model">linxo.account</field>
        <field name="arch" type="xml">
            <tree string="Linxo Bank Accounts" editable="bottom">
                <field name="name" />
                <field name="linxo_id" invisible="True" />
                <field name="journal_id" />
                <field name="account_group_name" invisible="True" />
                <field name="account_number" />
                <field name="type" invisible="True" />
            </tree>
        </field>
    </record>

    <!-- Account Action -->
    <record model="ir.actions.act_window" id="action_linxo_account">
        <field name="name">Linxo Bank Accounts</field>
        <field name="res_model">linxo.account</field>
        <field name="view_type">form</field>
        <field name="view_mode">tree</field>
        <field name="search_view_id" ref="view_linxo_account_search"/>
    </record>

After updating xml, update the module.

Thanks.

1
Avatar
Zrušiť
Alkivi SAS
Autor

Thanks a lot for the reactivity and the correct answer :)

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
Can i make a field editable in a tree view ? Solved
editable view field tree
Avatar
Avatar
Avatar
2
dec 23
21629
How to add css to any row in a tree view based on a condition Solved
view tree
Avatar
Avatar
1
mar 15
12967
There is a fix for dynamic tree glitch?
view tree
Avatar
0
mar 15
4841
Can users switch One2Many editable tree to form?
editable form view one2many tree
Avatar
Avatar
1
mar 15
11950
How to color a field in tree view? Solved
view tree color
Avatar
Avatar
Avatar
2
okt 24
13549
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