Skip to Content
Odoo Menu
  • Prijavi
  • Try it free
  • Aplikacije
    Finance
    • Knjigovodstvo
    • Obračun
    • Stroški
    • Spreadsheet (BI)
    • Dokumenti
    • Podpisovanje
    Prodaja
    • CRM
    • Prodaja
    • POS Shop
    • POS Restaurant
    • Naročnine
    • Najem
    Spletne strani
    • Website Builder
    • Spletna trgovina
    • Blog
    • Forum
    • Pogovor v živo
    • eUčenje
    Dobavna veriga
    • Zaloga
    • Proizvodnja
    • PLM
    • Nabava
    • Vzdrževanje
    • Kakovost
    Kadri
    • Kadri
    • Kadrovanje
    • Odsotnost
    • Ocenjevanja
    • Priporočila
    • Vozni park
    Marketing
    • Družbeno Trženje
    • Email Marketing
    • SMS Marketing
    • Dogodki
    • Avtomatizacija trženja
    • Ankete
    Storitve
    • Projekt
    • Časovnice
    • Storitve na terenu
    • Služba za pomoč
    • Načrtovanje
    • Termini
    Produktivnost
    • Razprave
    • Artificial Intelligence
    • IoT
    • Voip
    • Znanje
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industrije
    Trgovina na drobno
    • Book Store
    • Trgovina z oblačili
    • Trgovina s pohištvom
    • Grocery Store
    • Trgovina s strojno opremo računalnikov
    • Trgovina z igračami
    Food & Hospitality
    • Bar and Pub
    • Restavracija
    • Hitra hrana
    • Guest House
    • Beverage Distributor
    • Hotel
    Nepremičnine
    • Real Estate Agency
    • Arhitekturno podjetje
    • Gradbeništvo
    • Property Management
    • Vrtnarjenje
    • Združenje lastnikov nepremičnin
    Svetovanje
    • Računovodsko podjetje
    • Odoo Partner
    • Marketinška agencija
    • Law firm
    • Pridobivanje talentov
    • Audit & Certification
    Proizvodnja
    • Tekstil
    • Metal
    • Pohištvo
    • Hrana
    • Brewery
    • Poslovna darila
    Health & Fitness
    • Športni klub
    • Trgovina z očali
    • Fitnes center
    • Wellness Practitioners
    • Lekarna
    • Frizerski salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Sistemi sončne energije
    • Izdelovalec čevljev
    • Čistilne storitve
    • HVAC Services
    Ostali
    • Neprofitna organizacija
    • Agencija za okolje
    • Najem oglasnih panojev
    • Fotografija
    • Najem koles
    • Prodajalec programske opreme
    Browse all Industries
  • Skupnost
    Learn
    • Tutorials
    • Dokumentacija
    • Certifikati
    • Šolanje
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Prenesi
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Dogodki
    • Prevodi
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Sklici kupca
    • Podpora
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Določanje cen
  • Pomoč
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
Pomoč

returning view with all records

Naroči se

Get notified when there's activity on this post

This question has been flagged
viewsreturn
6375 Prikazi
Avatar
Grf

So i made a menu that is calling a method that makes some logic and creates records in product.assortment.remove and after all record are created it returns a view. But my problem is that I get the view with 0 records.

My goal is that my method should return a view with all records created and a user can remove some records( with trash icon like in average tree view) how can i acheave that?

class AssortmentProductRemoval(models.TransientModel):
    _name = 'assortment.product.removal.wiz'
    _description = "Wizard for removing assortment product"

    prod_assort_rem_ids = fields.One2many(
        'product.assortment.remove', 'product_id',
        string='Product Assortmen Remove',)

@api.multi
def _check_assortment_items(self):
     <-- some logic here -->
     assort_rem_obj = self.env['product.assortment.remove']
     vals = ({'qty_sold': qty,
              'product_id': product.id,
              'profit': profit})
        assort_rem_obj.create(vals)
    view = self.env.ref('config_hetlita.assortment_product_removal')
    return {
        'type': 'ir.actions.act_window',
        'view_type': 'form',
        'view_mode': 'form',
        'res_model': 'assortment.product.removal.wiz',
        'views': [(view.id, 'form'), (False, 'tree')],
        'res_id': self.id,
        'target': 'new'
    }

class ProductAssortmentRemove(models.Model):
    _name = 'product.assortment.remove'

    product_id = fields.Many2one(
        'product.template', string='Product',
        domain=[],
        required=False)
    turnover = fields.Float(string='Turnover', required=False)
    profit = fields.Float(string='Profit', required=False)
    qty_sold = fields.Float(string='Quantity sold', required=False)
<record model="ir.ui.view" id="assortment_product_removal">
            <field name="name">view.name</field>
            <field name="model">assortment.product.removal.wiz</field>
            <field name="arch" type="xml">
               <form string="Update Set">
                <field name="prod_assort_rem_ids" >
                    <tree editable="bottom">
                        <field name="product_id"/>
                        <field name="turnover"/>
                        <field name="qty_sold"/>
                    </tree>
                </field>
                <footer>
                    <button string="Cancel" icon="gtk-cancel" special="cancel" />
                    or
                    <button name="action_save_sol" string="Save" type="object" icon="gtk-ok"/>
                </footer>
            </form>
            </field>
        </record>


        <record id="action_test2" model="ir.actions.server">
            <field name="name">Assortment product removal</field>
            <field name="model_id" ref="model_assortment_product_removal_wiz"/>
            <field name="state">code</field>
              <field name="code">action = self._check_assortment_items(cr, uid, context.get('active_ids'), context=context)</field>
        </record>

        <menuitem id="your_menu_id12" action="action_test2" parent="base.menu_sale_config"  name="Assort remove"  sequence="1"/>
0
Avatar
Opusti
Enjoying the discussion? Don't just read, join in!

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

Prijavi
Related Posts Odgovori Prikazi Aktivnost
Is it possible to redirect user an external url & open view at the same function ?
views view return
Avatar
0
apr. 20
5631
Select multiple elements with XPath Solved
views
Avatar
Avatar
Avatar
Avatar
Avatar
5
dec. 25
51616
Filter out (hide) lines in tree component Solved
views
Avatar
Avatar
Avatar
2
apr. 24
5052
What are the different types of views available in Odoo? Solved
views
Avatar
Avatar
Avatar
Avatar
3
jun. 23
10527
view layout (two fields on the same row within an xpath) Solved
views
Avatar
Avatar
2
jun. 23
7501
Community
  • Tutorials
  • Dokumentacija
  • Forum
Open Source
  • Prenesi
  • Github
  • Runbot
  • Prevodi
Services
  • Odoo.sh Hosting
  • Podpora
  • Nadgradnja
  • Custom Developments
  • Izobraževanje
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Sredstva blagovne znamke
  • Kontakt
  • Zaposlitve
  • Dogodki
  • Podcast
  • Blog
  • Stranke
  • Pravno • Zasebnost
  • Varnost
الْعَرَبيّة 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 Svenska ภาษาไทย 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