Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Managament
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Producție
    • Textile
    • Metal
    • Furnitures
    • Food
    • 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
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

Inherit a predefined view.

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
viewinherit
1 Răspunde
6461 Vizualizări
Imagine profil
Hussain Nagri

I am new to OpenERP and trying to understand it, What I am trying to do is that I create a new Module and then on that module I call a view of sale_order, but I want to customize the view the way I want. Lets say the default view shows five coloumns and I want only two out of those five coloumns to be displayed. I tried some coding but it shows the default view. Here is my code.

sale_order_duplicate_view.xml

<?xml version="1.0" encoding="UTF-8"?>
<openerp>
    <data>

        <menuitem name="Genrate Dictonary" id="menu_sale_order_duplicate1" />



        <record id="sale_order_duplicate_tree1" model="ir.ui.view">
        <field name="naame">sale.order.tree.inherit</field>
        <field name="model">sale.order</field>
        <field name="inherit_id" ref="sale.view_quotation_tree" />
        <field name="arch" type="xml">

                    <field name="date_order"/>
                    <field name="partner_id"/>
                    <field name="user_id"/>
        </field>
     </record>

        <record model="ir.actions.act_window" id="action_sale_order_duplicate1">
            <field name="name">Sale Order Duplicate</field>
            <field name="res_model">sale.order</field>
            <field name="view_id" ref="sale_order_duplicate_tree1"/>
        </record>

        <menuitem name="Duplicate" id="menu_sale_order_duplicate_submenu1" parent="menu_sale_order_duplicate1"/>
        <menuitem name="Sale Order Duplicate" id="menu_sale_order_sub_sub_menu1"
            parent="menu_sale_order_duplicate_submenu1" action="action_sale_order_duplicate1" />
    </data>
</openerp>

sale_order_duplicate.py

from openerp.osv import fields,osv
from openerp.addons.fleet.fleet import fleet_vehicle
from openerp.osv.fields import _column



class sale_order_duplicate(osv.osv):
    _inherit = 'sale.order'
    _description = "Sales Order"
    _columns = {

                }

sale_order_duplicate()

Can someone please tell me what else should I do and how this thing actually works. Thank you.

0
Imagine profil
Abandonează
Imagine profil
André Schenkels
Cel mai bun răspuns

You can take a look at the technical information provided by OpenERP itself. www.openerp.com/files/memento/OpenERP_Technical_Memento_latest.pdf

When you do an inherit of the view you should do a field replace/after/before or use xpath.

André Schenkels www.schenkels.nl

0
Imagine profil
Abandonează
Enjoying the discussion? Don't just read, join in!

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

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
How to create another type of Invoice with other sequence?
view inherit
Imagine profil
0
mar. 15
4855
How to inherit from view to add an element in it ?
view inherit
Imagine profil
Imagine profil
1
mar. 15
9421
v16: inherit view and add editable treeview in notebook
view inherit odoo16features
Imagine profil
1
nov. 23
2112
Creating new view from a old view Rezolvat
view res.partner inherit
Imagine profil
Imagine profil
11
ian. 24
14409
Why the same domain for the same field doesn't work at both places?
domain view inherit
Imagine profil
Imagine profil
Imagine profil
Imagine profil
Imagine profil
7
aug. 18
6995
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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