Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Jídlo a pohostinství
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Penzion
    • Distributor nápojů
    • Hotel
    Nemovitost
    • Realitní kancelář
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Poradenství
    • Účetní firma
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textil
    • Kov
    • Nábytek
    • Jídlo
    • Pivovar
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • Podpora IT & hardware
    • Systémy solární energie
    • Výrobce obuvi
    • Úklidové služby
    • Služby HVAC
    Ostatní
    • Nezisková organizace
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Procházet všechna odvětví
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Služby pro partnery
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účetnictví
  • Sklad
  • PoS
  • Projekty
  • MRP
All apps
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

How to return a tree view from a python function

Odebírat

Get notified when there's activity on this post

This question has been flagged
10 Odpovědi
23188 Zobrazení
Avatar
MIADI

Hello, I asked on this forum how to put 2 actions for 1 menuitem but someone answers that I don't need to put 2 actions for 1 menuitem but I've to return the tree view in my python function which is called in my action server in my XML file.


This is my python code :

class miadi_poidsConditionnement(models.Model):

    _name = 'miadi.poidsconditionnement'

    # _order = 'conditionnement_id asc'

    conditionnement_id = fields.Many2one('miadi.packaging', 'Packaging', default='', required=True)

    produit_id = fields.Many2one('product.product', 'Product', default='', required=True)

    nb_articles = fields.Integer(string='Number of products', default=0)

    poids = fields.Float(string='Packaging Weight', default=0)

    _sql_constraints = [

    ('uniq_id', 'unique(produit_id, conditionnement_id)', 'A product already exists with this packaging !'),

    ]

    @api.multi

    @api.model

    def chargement_ratio(self):

        productRatio = self.env['miadi.poidsconditionnement']

        conditionnements = self._cr.execute("SELECT id FROM miadi_packaging")

        query_cond = self.env.cr.dictfetchall()

        produits = self._cr.execute("SELECT id FROM product_product")

        query_prod = self.env.cr.dictfetchall()

        for conditionnements in query_cond:

            nom_conditionnement = conditionnements['id']

            for produits in query_prod:

                product = produits['id']

                if_exist = self._cr.execute("SELECT * FROM miadi_poidsConditionnement WHERE conditionnement_id=%s AND produit_id=%s", (nom_conditionnement, product))

                if not if_exist:

                    Ratio = productRatio.create({'conditionnement_id': nom_conditionnement, 'produit_id': product})

                    return {'type': 'ir.actions.act_window', 'view_type': 'tree', 'view_mode': 'tree', 'res_model': 'miadi.poidsconditionnement', 'res_id': miadi.poidsconditionnement.id, 'view_id': self.env.ref('action_miadi_poidsConditionnement').id, 'target': 'current',}


And this is my XML :

<?xml version="1.0" encoding="utf-8"?>

<openerp>

 <data>

  <record id="miadi_poidsConditionnement_form" model="ir.ui.view">

   <field name="name">miadi.poidsconditionnement.form</field>

   <field name="model">miadi.poidsconditionnement</field>

   <field name="arch" type="xml">

    <form string="Weight/number ratio">

     <group col="4">

      <field name="produit_id" widget="selection" eval="ref('product.product.attribute_value_ids')" />

      <!-- <field name="produit_id" /> -->

      <field name="conditionnement_id" widget="selection" eval="ref('miadi.packaging.conditionnement_id')" />

      <!-- <field name="conditionnement_id" /> -->

      <field name="nb_articles" />

      <field name="poids" />

     </group>

    </form>

   </field>

  </record>

  <record id="miadi_poidsConditionnement_tree" model="ir.ui.view">

   <field name="name">miadi.poidsconditionnement.tree</field>

   <field name="model">miadi.poidsconditionnement</field>

   <field name="arch" type="xml">

    <tree string="Weight/number ratio">

     <field name="produit_id" ref="product.product.attribute_value_ids" />

     <field name="conditionnement_id" ref="miadi.packaging.conditionnement_id" />

     <field name="nb_articles" />

     <field name="poids" />

    </tree>

   </field>

  </record>

  <record model="ir.ui.view" id="miadi_poidsConditionnement_search">

   <field name="name">miadi.poidsconditionnement.search</field>

   <field name="model">miadi.poidsconditionnement</field>

   <field name="arch" type="xml">

    <search string="Weight/number ratio">

     <field name="produit_id" />

     <group expand="0" string="Group by">

      <filter string="Product" domain="[]" context="{'group_by':'produit_id'}"/>

      <filter string="Packaging" domain="[]" context="{'group_by':'conditionnement_id'}"/>

     </group>

    </search>

   </field>

  </record>

  <record model="ir.actions.act_window" id="action_miadi_poidsConditionnement">

   <field name="name">Weight/number ratio</field>

   <field name="type">ir.actions.act_window</field>

   <field name="res_model">miadi.poidsconditionnement</field>

   <field name="view_type">form</field>

   <field name="view_mode">tree,form</field>

   <field name="view_id" ref="miadi_poidsConditionnement_tree"/>

   <field name="help" type="html">

    <p class="oe_view_nocontent_create">Click here to create a weight/number ratio.</p>

   </field>

  </record>

  <record id="action_chargement_ratio" model="ir.actions.server">

   <field name="name">Chargement Ratio</field>

   <field name="res_model">action_miadi_poidsConditionnement</field>

   <field name="type">ir.actions.server</field>

   <field name="model_id" ref="model_miadi_poidsconditionnement"/>

   <field name="code">chargementRatio = env['miadi.poidsconditionnement'].browse(context.get('active_id'));chargementRatio.chargement_ratio()</field>

  </record>

  <menuitem name="Weight/number ratio" id="menu_miadi_poidsConditionnement" parent="menu_miadi_packaging" sequence="15" groups="sales_team.group_sale_manager" action="action_chargement_ratio" />

 </data>

</openerp>


And it gives me an issue :

ValueError: <type 'exceptions.NameError'>: "global name 'miadi' is not defined" while evaluating
u"chargementRatio = env['miadi.poidsconditionnement'].browse(context.get('active_id'));chargementRatio.chargement_ratio()"


I want to return the tree view (action_miadi_packaging) and I want my python function is called when I click on the menuitem

How can I resolve this issue ?


And if I write "'res_id': productRatio.id" (where productRatio = self.env['miadi.poidsconditionnement']), instead of "'res_id': miadi.poidsconditionnement.id" the error is :

ValueError: <type 'exceptions.ValueError'>: "need more than 1 value to unpack" while evaluating
u"chargementRatio = env['miadi.poidsconditionnement'].browse(context.get('active_id'));chargementRatio.chargement_ratio()"

Thanks for answers


PS : I'm on Odoo 10

0
Avatar
Zrušit
Avatar
Niyas Raphy (Walnut Software Solutions)
Nejlepší odpověď

Hi Miadi,

You can return a view from python code like this, you have to mention the correct view id

return {
'name': _('test'),
'view_type': 'tree',
'view_mode': 'tree',
'view_id': self.env.ref('account.invoice_tree').id,
'res_model': 'account.invoice',
'context': "{'type':'out_invoice'}",
'type': 'ir.actions.act_window',
'target': 'new',
}
2
Avatar
Zrušit
MIADI
Autor

Hi Niyas,

my view_id is correct (if you look my XML code and my Python code, you can see that the view id is correct

MIADI
Autor

I update my code with your answer and it's works, my tree view is display BUT, what I put in my code before the return doesn't happen...

MIADI
Autor

No, finally it doesn't works, it gives me this issue : ValueError: <type 'exceptions.NameError'>: "global name '_' is not defined" while evaluating

u"chargementRatio = env['miadi.poidsconditionnement'];chargementRatio.chargement_ratio()"

MIADI
Autor

and if I remove 'name': _('test'), the view is not display

MIADI
Autor

I wrote this :

return {

'name': _('test'),

'view_type': 'tree',

'view_mode': 'tree',

'view_id': self.env.ref('miadi_packaging.miadi_poidsConditionnement_tree').id,

'res_model': 'miadi.poidsconditionnement',

'type': 'ir.actions.act_window',

'target': 'new',

}

It should work no ?

MIADI
Autor

In the action of the menuitem, I've to put the server action id no ?

If yes, it should work but my tree view is not display...

Can you help me ?

MIADI
Autor

Looking at my codes, can you tell me if my view_id is good ? Because nothing happens when I click on the menu

MIADI
Autor

I fix the problem, the error was in my XLM code

But the result is not really that I want...

When I click on the menuitem, I have a popup^with the tree view but I can't modify the records and what I really want is to have a tree view but not in a popup, I want a "normal" tree view

Niyas Raphy (Walnut Software Solutions)

Hai Miadi, A simplecorrection , not XLM code its XML code

Aslam Up

Hi Niyas,

Can we return this view by some grouping ( A grouped view by state/year/salesperson) ??

joyanto

thanks its work

Avatar
MIADI
Autor Nejlepší odpověď

Hi,

It works and I have a treeview but it's not the tree view that I want because I've a tree view in a popup (and I can't chage any record) and what I want is a "normal" tree view

What I have : https://www.hostingpics.net/viewer.php?id=358419Capturetreeview.png


What I want : https://www.hostingpics.net/viewer.php?id=947270Capturetreeview2.png


Or I want to be able to modify some fields in this popup treeview. Is it possible ? If yes, how can I do it ?


If someone can help me, it will be very good

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

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

Přihlásit se
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة 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 balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

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