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

Why openERP don't find my custom View ?

Abonare

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

Această întrebare a fost marcată
viewsqwebcustom
2 Răspunsuri
6787 Vizualizări
Imagine profil
justeUnPseudo

Hi,

I try to create a custom view in OpenERP V6.1. I've found few documentation online and i learn looking form existing view like ganttView, etc... but i've got a problem, openERP don't see my view.

validation error: value custom in not for the field "ir_ui_view.type" is not in selection.

Sources:

static/src/xml/customView.xml

<?xml version="1.0" encoding="UTF-8"?>
<templates id="template" xml:space="preserve">
    <t t-name="custom">
    <HTML> 
    <BODY>
    <h1>custom View</h1>
    </BODY> 
    </HTML> 
    </t>
</templates>

static/src/js/script.js

openerp.myaddons = function (openerp){   
    openerp.web.views.add('custom', 'openerp.myaddons.CustomView');

openerp.myaddons.CustomView = openerp.web.View.extend({
    display_name: 'custom',
    template: "custom",

    init: function() {
    this._super.apply(this, arguments)
    alert('load')
    },

    start: function() {
    alert("start custom")
    },
})

myaddonsView.xml

           <!-- VUES -->
    <record model="ir.ui.view" id="myaddons_module_custom">
        <field name="name">myaddons.module.custom</field>
        <field name="model">myaddons.module</field>
        <field name="type">custom</field>
    </record>    

    <!-- ACTIONS -->
    <record model="ir.actions.act_window" id="action_myaddons_module">
        <field name="name">Aff</field>
        <field name="res_model">myaddons.module</field>
        <field name="view_type">form</field>
        <field name="view_mode">form, custom</field>
    </record>

Thanks for your help, and if you have some tutorials or simple example don't hesitate ;)

EDIT:

__openerp__.py

{
    'name': "my module",
    'author': "truc",
    'category' : '',
    'description':'a module',
    'version': "1.0",
    'depends': ['web','base_setup'],
    'js': [ 'static/src/js/*' ],
    'qweb' : [  'static/src/xml/*'],
    'update_xml': ['myaddonsView.xml'],
    'installable': True,
    'auto_install': True,
}
0
Imagine profil
Abandonează
Imagine profil
Francesco OpenCode
Cel mai bun răspuns

There is your xml file in the __openerp__ file?

0
Imagine profil
Abandonează
justeUnPseudo
Autor

yes, the xml and js file 'qweb' : [ 'static/src/xml/'], 'js': [ 'static/src/js/' ]

Imagine profil
antoine
Cel mai bun răspuns

Same name template in your .js and .xml ?
 

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
Custom qweb report from sql view showing empty
qweb custom
Imagine profil
Imagine profil
2
ian. 20
9527
Conditionally extend template with Odoo QWeb
views qweb
Imagine profil
Imagine profil
Imagine profil
3
iul. 17
11397
Odoo 8: Disable Corporate Header for Selected Reports / Change Default Header
views qweb custom header report
Imagine profil
Imagine profil
1
oct. 18
9224
Xpath problems...Help me write this xpath
views qweb xpath
Imagine profil
Imagine profil
1
aug. 24
3234
Where are the barcode app's views?
views qweb barcode
Imagine profil
0
dec. 22
3429
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