Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Estate Managament
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • 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
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

ParseError: "Wrong value for ir.ui.view.type: 'data'"

Odoberať

Get notified when there's activity on this post

This question has been flagged
ir.ui.view
4 Replies
24846 Zobrazenia
Avatar
Nada MES

I just created a module using this code :

<record id="cym_form" model="ir.ui.view">
      <field name="name">CYM Tag</field>
      <field name="model">cym.tag</field>
      <field name="priority">1</field>
      <field name="arch" type="xml">
	<data><field name="cym_tag"/>
	<field name="modules" widget="one2many_tags"/>
      </data></field>
    </record>

And when I try to istall it I get this error :

ParseError: "Wrong value for ir.ui.view.type: 'data'" while parsing /home/production/odoo/addons/crm_cym/form_cym_view.xml:4

I really don't understand where it came from. Is it the use of wigdet ? The model ?

Here is my py code :

class ir_module(osv.osv):
    _inherit = 'ir.module.module'
    _columns = {
        'tag_id': fields.many2one('cym.tag', 'tag_name'),
    }

class cym_tag(osv.osv):
    _name = 'cym.tag'
    _order = 'name asc'

    _columns = {
        'tag_name': fields.char(u'Nom du Tag', size=128, required=True),
        'modules': fields.one2many('ir.module.module', 'tag_id', 'Modules'),
    }

1
Avatar
Zrušiť
Avatar
Ajeet Yadav (Softprime Consulting Pvt Ltd)
Best Answer

I think you use data tag  after <field name="arch" type="xml">.
You can use below code-

<record id="cym_form" model="ir.ui.view">
      <field name="name">CYM Tag</field>
      <field name="model">cym.tag</field>
      <field name="priority">1</field>
      <field name="arch" type="xml">
	<form><field name="cym_tag"/>
	<field name="modules" widget="one2many_tags"/>
      </form></field>
    </record>


3
Avatar
Zrušiť
Avatar
Nada MES
Autor Best Answer

Actually I didn't notice it but in my code there is no data tag after

<field name="arch" type="xml"> but it's written in the error when I want to install my module !

1
Avatar
Zrušiť
Avatar
Umang Patel (upa)
Best Answer
You can try like this:
<record id="cym_form" model="ir.ui.view">
    <field name="name">CYM Tag</field>
    <field name="model">cym.tag</field>
    <field name="priority">1</field>
    <field name="arch" type="xml">
        <form>
            <sheet>
                <group>
                    <field name="cym_tag"/>
                    <field name="modules" widget="one2many_tags"/>
                </group>
            </sheet>
        </form>
    </field>
</record>
This will solve your problem.
0
Avatar
Zrušiť
Avatar
EDISA
Best Answer

Estuve revisando ,, y yo tenia el mismo error....... lo que trata de decir odoo..... el error es que te falta un dato ........ el dato que te falta es .

<form>

</form>

precisamente donde aparece el """data""" ahi pon eso entonces debera funcionar bien el modulo


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

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

Registrácia
Related Posts Replies Zobrazenia Aktivita
Tree view problem
ir.ui.view
Avatar
Avatar
1
máj 22
3471
Odoo v.11 - Can not upgrade Website Builder
ir.ui.view
Avatar
1
sep 18
3427
[Solved] ParseError: "Wrong value for ir.ui.view.type: 'field'" Solved
windows ir.ui.view
Avatar
Avatar
1
máj 15
24736
what is the newn column name of view_template_id odoo 14 in odoo 15?
ir.ui.view v14 v15
Avatar
Avatar
1
júl 25
3249
Expected singleton error when trying to navigate toother pager
action ir.ui.view ir.actions.act
Avatar
0
mar 24
1586
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة 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 sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

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