Skip ke Konten
Odoo Menu
  • Login
  • Uji coba gratis
  • Aplikasi
    Keuangan
    • Akuntansi
    • Faktur
    • Pengeluaran
    • Spreadsheet (BI)
    • Dokumen
    • Tanda Tangan
    Sales
    • CRM
    • Sales
    • POS Toko
    • POS Restoran
    • Langganan
    • Rental
    Website
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Rantai Pasokan
    • Inventaris
    • Manufaktur
    • PLM
    • Purchase
    • Maintenance
    • Kualitas
    Sumber Daya Manusia
    • Karyawan
    • Rekrutmen
    • Cuti
    • Appraisal
    • Referensi
    • Armada
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Acara
    • Otomatisasi Marketing
    • Survei
    Layanan
    • Project
    • Timesheet
    • Layanan Lapangan
    • Meja Bantuan
    • Planning
    • Appointment
    Produktivitas
    • Diskusi
    • Approval
    • IoT
    • VoIP
    • Pengetahuan
    • WhatsApp
    Aplikasi pihak ketiga Odoo Studio Platform Odoo Cloud
  • Industri-Industri
    Retail
    • Toko Buku
    • Toko Baju
    • Toko Furnitur
    • Toko Kelontong
    • Toko Hardware
    • Toko Mainan
    Makanan & Hospitality
    • Bar dan Pub
    • Restoran
    • Fast Food
    • Rumah Tamu
    • Distributor Minuman
    • Hotel
    Real Estate
    • Agensi Real Estate
    • Firma Arsitektur
    • Konstruksi
    • Estate Management
    • Perkebunan
    • Asosiasi Pemilik Properti
    Konsultansi
    • Firma Akuntansi
    • Mitra Odoo
    • Agensi Marketing
    • Firma huku
    • Talent Acquisition
    • Audit & Sertifikasi
    Manufaktur
    • Tekstil
    • Logam
    • Perabotan
    • Makanan
    • Brewery
    • Corporate Gift
    Kesehatan & Fitness
    • Sports Club
    • Toko Kacamata
    • Fitness Center
    • Wellness Practitioners
    • Farmasi
    • Salon Rambut
    Perdagangan
    • Handyman
    • IT Hardware & Support
    • Sistem-Sistem Energi Surya
    • Pembuat Sepatu
    • Cleaning Service
    • Layanan HVAC
    Lainnya
    • Organisasi Nirlaba
    • Agen Lingkungan
    • Rental Billboard
    • Fotografi
    • Penyewaan Sepeda
    • Reseller Software
    Browse semua Industri
  • Komunitas
    Belajar
    • Tutorial-tutorial
    • Dokumentasi
    • Sertifikasi
    • Pelatihan
    • Blog
    • Podcast
    Empower Education
    • Program Edukasi
    • Game Bisnis 'Scale Up!'
    • Kunjungi Odoo
    Dapatkan Softwarenya
    • Download
    • Bandingkan Edisi
    • Daftar Rilis
    Kolaborasi
    • Github
    • Forum
    • Acara
    • Terjemahan
    • Menjadi Partner
    • Layanan untuk Partner
    • Daftarkan perusahaan Akuntansi Anda.
    Dapatkan Layanan
    • Temukan Mitra
    • Temukan Akuntan
    • Temui penasihat
    • Layanan Implementasi
    • Referensi Pelanggan
    • Bantuan
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dapatkan demo
  • Harga
  • Bantuan

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

  • CRM
  • e-Commerce
  • Akuntansi
  • Inventaris
  • PoS
  • Project
  • MRP
All apps
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Help

Odoo 10 | How to pass context from "ir.actions.act_window.view" to one2many field

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
openerpodoo10.0
14944 Tampilan
Avatar
Wiem

Hi,

in account.invoice i have done:

class AccountInvoice(models.Model):

    _inherit = "account.invoice"

   invoice_type = fields.Selection([

            ('simple_invoice','Simple Invoice'),

            ('progress_invoice','Progress Invoice'),

        ], string = "Invoice Type", readonly=True, index=True, change_default=True,

        default=lambda self: self._context.get('invoice_type', 'simple_invoice'),

        track_visibility='always')

class AccountInvoiceLine(models.Model):    

    _inherit = "account.invoice.line"

    amount_net_ht = fields.Monetary(string='Amount Net of the month HT', store=True, readonly=True)

    previous_amount_ht = fields.Monetary(string='Previous Cumulative amount HT', store=True, readonly=True)


in xml i made new action and new menuitem for that action that displays account invoice form for progress_invoice type that i added : 

<record id="account.action_invoice_tree1" model="ir.actions.act_window">

            <field name="name">Simple Invoices</field>

            <field name="res_model">account.invoice</field>

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

            <field name="view_mode">tree,kanban,form,calendar,pivot,graph</field>

            <field eval="False" name="view_id"/>

            <field name="domain">[('type','in',['out_invoice', 'out_refund']), ('invoice_type','=','simple_invoice')]</field>

            <field name="context">{'type':'out_invoice', 'journal_type': 'sale'}</field>

            <field name="search_view_id" ref="account.view_account_invoice_filter"/>

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

              <p class="oe_view_nocontent_create">

                Click to create a simple invoice.

              </p>

            </field>

        </record>

        

        <record id="action_situation_invoice" model="ir.actions.act_window">  # new action added for Progress Invoice

            <field name="name">Progress Invoices</field>

            <field name="res_model">account.invoice</field>

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

            <field name="view_mode">tree,kanban,form,calendar,pivot,graph</field>

            <field eval="False" name="view_id"/>

            <field name="domain">[('type','in',['out_invoice', 'out_refund']), ('invoice_type','=','progress_invoice')]</field>

            <field name="context">{'invoice_type':'progress_invoice'}</field> 

            <field name="search_view_id" ref="account.view_account_invoice_filter"/>

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

              <p class="oe_view_nocontent_create"> 

                Click to create a progress invoice.

              </p>

            </field>

        </record>


        <record id="action_situation_invoice_view1" model="ir.actions.act_window.view">

            <field eval="1" name="sequence"/>

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

            <field name="view_id" ref="account.invoice_tree"/>

            <field name="act_window_id" ref="action_situation_invoice"/>

        </record>


        <record id="action_situation_invoice_view2" model="ir.actions.act_window.view">

            <field eval="2" name="sequence"/>

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

            <field name="view_id" ref="account.invoice_form"/>

            <field name="act_window_id" ref="action_situation_invoice"/>

        </record>

Now what i want is when in tree field i want to show 

Now, i want to show the two fields amount_net_ht and previous_amount_ht (added in account.invoice.line) in invoice_line_ids when  invoice_type is progress_invoice and hide them when  invoice_type is simple_invoice. For that i added context in the action of Progress Invoice and using xpath i did:

<xpath expr="//form/sheet/notebook/page/field/tree/field[@name='price_subtotal']" position="after">

            <field name="cumulative_amount_ht" invisible="context.get('invoice_type','simple_invoice')"/>

                        <field name="previous_amount_ht" invisible="context.get('invoice_type','simple_invoice')"/>

                        <field name="amount_net_ht" invisible="context.get('invoice_type','simple_invoice')"/>

</xpath>


but this does not work, the two field are always shown in Simple invoice form ( not in progress invoice like i want)

I know i can achieve this by creating completely new form for Progress Invoice ( similar to the default odoo invoice form ) and adding to it the new fields but it would be a lot of duplicated code. So i want to achieve this with context if it is possible.

Thanks. 

0
Avatar
Buang
Wiem
Penulis

Problem solved, from here i get the answer : http://vitraining.com/show-hide-columns-in-openerp-tree-view-xml/

Menikmati diskusi? Jangan hanya membaca, ikuti!

Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!

Daftar
Post Terkait Replies Tampilan Aktivitas
Chinese(HK) Language Pack Diselesaikan
openerp odoo10.0
Avatar
Avatar
1
Okt 18
7631
count number of records based on condition Diselesaikan
odoo10.0
Avatar
Avatar
1
Nov 24
21095
How to install odoo 10 in ubuntu 20.04? Diselesaikan
odoo10.0
Avatar
Avatar
1
Sep 23
3923
Create selection type field dynamically?
openerp
Avatar
Avatar
Avatar
2
Sep 23
8519
Question about action_confirm
odoo10.0
Avatar
Avatar
Avatar
3
Mei 23
6505
Komunitas
  • Tutorial-tutorial
  • Dokumentasi
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Terjemahan
Layanan
  • Odoo.sh Hosting
  • Bantuan
  • Peningkatan
  • Custom Development
  • Pendidikan
  • Temukan Akuntan
  • Temukan Mitra
  • Menjadi Partner
Tentang Kami
  • Perusahaan kami
  • Aset Merek
  • Hubungi kami
  • Tugas
  • Acara
  • Podcast
  • Blog
  • Pelanggan
  • Hukum • Privasi
  • Keamanan
الْعَرَبيّة 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 adalah rangkaian aplikasi bisnis open source yang mencakup semua kebutuhan perusahaan Anda: CRM, eCommerce, akuntansi, inventaris, point of sale, manajemen project, dan seterusnya.

Mudah digunakan dan terintegrasi penuh pada saat yang sama adalah value proposition unik Odoo.

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