跳至内容
Odoo 菜单
  • 登录
  • 免费试用
  • 应用程序
    财务
    • 会计
    • 发票
    • 费用
    • 电子表格 (BI)
    • 文档
    • 电子签名
    销售
    • 客户关系管理
    • 销售
    • POS 销售点管理-零售
    • POS 销售点管理 - 餐厅
    • 订阅
    • 租赁
    网站
    • 网站设计
    • 电子商务
    • 博客
    • 论坛
    • 在线客服
    • 在线学习
    供应链
    • 库存
    • 制造
    • 产品生命周期
    • 采购
    • 维护保养
    • 品控
    人力资源
    • 员工
    • 招聘
    • 休假
    • 评价
    • 内部推荐
    • 车队
    营销
    • 社媒营销
    • 电邮营销
    • 短信营销
    • 近期活动
    • 营销自动化
    • 网上调查
    服务
    • 项目管理
    • 工时单
    • 现场服务
    • 服务台
    • 排期
    • 预约
    生产力
    • 讨论
    • 批核
    • IoT物联网
    • VoIP
    • 知识库
    • WhatsApp
    第三方应用软件 Odoo 定制 Odoo云端平台
  • 行业
    零售
    • 书店
    • 服装店
    • 家具店
    • 食品杂货店
    • 五金店
    • 玩具店
    餐饮与酒店服务
    • 酒吧及酒馆
    • 餐厅
    • 快餐
    • 民宿
    • 饮品分销商
    • 酒店
    房地产
    • 房地产代理
    • 建筑师事务所
    • 建造业
    • 地产管理
    • 园艺
    • 业主协会
    咨询
    • 会计师事务所
    • Odoo合作伙伴
    • 市场推广公司
    • 律师事务所
    • 人才招聘
    • 审核 & 认证
    制造
    • 纺织
    • 金属
    • 家具
    • 食品
    • 啤酒厂
    • 企业礼品
    保健与健身
    • 体育俱乐部
    • 眼镜店
    • 健身中心
    • 健康从业者
    • 药房
    • 发型屋
    商贸服务
    • 维修人员
    • IT 硬件及支持
    • 太阳能系统
    • 鞋匠
    • 清洁服务
    • 暖通空调服务
    其他
    • 非营利组织
    • 环境机构
    • 广告牌租赁
    • 摄影服务
    • 自行车租赁
    • 软件经销商
    浏览所有行业
  • 社区
    学习
    • 教学视频
    • 文档
    • 认证
    • 培训
    • 博客
    • 播客
    赋能教育
    • 教育计划
    • Scale Up! 商业游戏
    • 参观Odoo
    获取软件
    • 下载
    • 版本对比
    • 发布
    合作
    • Github
    • 论坛
    • 近期活动
    • 翻译
    • 成为合作伙伴
    • 合作伙伴服务
    • 注册您的会计事务所
    获取服务
    • 寻找合作伙伴
    • 查找会计服务
    • 预约顾问咨询
    • 安装及推行服务
    • 客户参考
    • 支持
    • 升级
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    获取演示
  • 定价
  • 技术支持

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

  • 客户关系管理
  • e-Commerce
  • 会计
  • 库存
  • PoS
  • 项目
  • MRP
All apps
只限注册用戶才可与社群互动。
所有帖文 人 徽章
标签 (查看所有)
odoo accounting v14 pos v15
关于此论坛区
只限注册用戶才可与社群互动。
所有帖文 人 徽章
标签 (查看所有)
odoo accounting v14 pos v15
关于此论坛区
帮助

Invalid XML for View Architecture , problem with my new module

订阅

此帖文有活动时,接收通知

此问题已终结
modulenewmodule
4 回复
6498 查看
形象
sanaa tayb

Hello every one , i'm a new in the Openerp Community i have a problem with a module i just created , every time i try to install it the error appears : ValidateError Une erreur est apparue lors de la validation du/des champ(s) arch: Invalid XML for View Architecture! " .... Any ideas plzz ?

here is my code:

patient.py

from openerp import addons 
from osv import fields, osv
import time

class patient(osv.osv):
    _name='patient'
    _description='dossier administratif du patient'

    _columns={
                'name' : fields.char('numero d`adhesion', size=30, required=True),
                'cin_patient' : fields.char('CIN', size=30),
                'date_dinscription' : fields.date('Date d`inscription'),
                'num_dossier' : fields.char('numero de dossier', size=30, required=True),
                'nom' : fields.char('Nom', size=30, required=True),
                'prenom' : fields.char('Prenom', size=30, required=True),
                'date_de_naissance' : fields.date('Date de naissance'),
                'sexe' : fields.char('Sexe', size=30),
                'profession' : fields.char('profession', size=30, ),
                'niveau_scolaire' : fields.char('niveau scolaire', size=30),
                'status' : fields.selection([('Celibataire','celibataire'), ('Married','married')]),
                'nb_enfant' : fields.char('Nombre d enfants', size=30),
                'num_fix' : fields.char('Numero de Tel fix', size=30),
                'num_por' : fields.char('Numero de Tel Portable', size=30),
                'adresse' : fields.text('adresse'),
                'cin_assure' : fields.char('CIN de l assure', size=30),
                'non_assure' : fields.char('Nom de l assure', size=30),
                'prenon_assure' : fields.char('prenom de l assure', size=30),
                'type_relation' : fields.char(' ralation avec le patient', size=30),
                'num_assure' : fields.char('Numero d affiliation a une caisse d assurance ', size=30),
                'nom_mutuelle' : fields.char('le nom de la mutuelle', size=30),
                'date_fin' : fields.char('date de fin de la mutuelle ', size=30),
                'proprietaire' : fields.char('etes-vous proprietaire?', size=30),
                'nb_famille' : fields.char('nombre de famille sous le meme toit?', size=30),
                'nombre_chambre' : fields.char('nombre de chambre', size=30),
                'eau' : fields.char(' vous disposez deau?', size=30),
                'electricite' : fields.char('vous disposez delectricite? ', size=30),
                'television' : fields.char('vous disposez de television?', size=30),
                'refrig' : fields.char('vous disposez d un refrigerateur? ', size=30),


    }

patient()

xml file:

<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<menuitem name="Patient" id="menu_patients_parent"/>
<menuitem name="Patients" id="menu_patients_parent1" parent="menu_patients_parent"/>



<record model="ir.ui.view" id="patient_form_view">
        <field name="name">patient.form</field>
        <field name="model">patient</field>
        <field name="type">form</field>
        <field name="arch" type="xml">
            <form string="Patient" version="7.0">
                <sheet>

                        <notebook>
                            <page string="Public Information">
                                <group>
                                    <group string="Contact Information">
                                        <field name="name"/>
                                        <field name="cin_patient"/>
                                        <field name="date_dinscription"/>
                                        <field name="num_dossier"/>
                                        <field name="nom"/>
                                        <field name="prenom"/>
                                        <field name="date_de_naissance"/>
                                        <field name="sexe"/>
                                        <field name="profession"/>
                                        <field name="niveau_scolaire"/>
                                        <field name="status"/>
                                        <field name="nb_enfant"/>
                                        <field name="num_fix"/>
                                        <field name="num_por"/>
                                        <field name="adresse"/>
                                    </group>
                                </group>
                            </page>
                            <page string=" Information sur le logement">
                                <group>
                                    <group string=" Maison et logement">
                                        <field name="proprietaire"/>
                                        <field name="nb_famille"/>
                                        <field name="nombre_chambre"/>
                                        <field name="eau"/>
                                        <field name="electricite"/>
                                        <field name="television"/>
                                        <field name="refrig"/>

                                    </group>
                                </group>
                            </page>
                            <page string=" Assurence/prise en charge">
                                <group>
                                    <group string=" Information de l'assure">
                                        <field name="cin_assure"/>
                                        <field name="non_assure"/>
                                        <field name="prenon_assure"/>
                                        <field name="type_relation"/>
                                        <field name="num_assure"/>
                                        <field name="nom_mutuelle"/>
                                        <field name="date_fin"/>

                                    </group>
                                </group>
                            </page>
                        </notebook>
                </sheet>    
            </form>
        </field>
</record>

<record model="ir.actions.act_window" id="action_notebook_form">
    <field name="name">patient</field>
    <field name="res_model">patient</field>
</record>



<menuitem  parent="menu_patients_parent1" id="notebook_menu_mainform" action="action_notebook_form"/>
</data>
</openerp>
0
形象
丢弃
形象
AJ Schrafel Paper Corp
最佳答案

look in the log file, it should specifically tell you want the problem is. depending on your installation method it could be /var/log/openerp/ - filename -

Also stop - start your server, then upgrade your module to make sure you are running the latest version you uploaded

1
形象
丢弃
sanaa tayb
编写者

i installed the latest version of openerp (openerp 7) on my windows , could you plz tell me where i can find the log file ??

Thanks for your help and answer :)

Ray Carnes

server\openerp-server.log

sanaa tayb
编写者

File "C:\Program Files\OpenERP 7.0-20130422-232436\Server\server.\openerp\osv\orm.py", line 1937, in __view_look_dom_arch except_orm: ('View error', u"Can't find field 'code' in the following view parts composing the view of object model 'patient':\n * patient.tree\n\nEither you wrongly customized this view, or some modules bringing those views are not compatible with your current data model") 2013-05-10 16:34:24,046 1856 ERROR Avicennefr openerp.tools.convert: Parse error in file:///C:/Program%20Files/OpenERP%207.0-20130422-232436/Server/server/openerp/addons/Nouveau%20dossier%20%20d/patient

sanaa tayb
编写者

this is the error i found in the log file :s

形象
Ray Carnes
最佳答案

Can't find field 'code' in the following view parts composing the view of object model 'patient':\n * patient.tree

So the problem is in the treeview definition, which you didn't share with us. Your patient model has no code field, but your treeview is using it.

1
形象
丢弃
AJ Schrafel Paper Corp

i agree with ray

sanaa tayb
编写者

Thanks for your response...

形象
sanaa tayb
编写者 最佳答案

i installed the latest version of openerp (openerp 7) on my windows , could you plz tell me where i can find the log file ??

Thanks for your help and answer :)

0
形象
丢弃
形象
Borni DHIFI
最佳答案

I have tested your module it works without problem. restart your server and go Setting>>Modules>>Update Module List.

0
形象
丢弃
sanaa tayb
编写者

i did all those steps and it didn't work :s

喜欢讨论吗?不要只阅读,加入进来!

立即创建账户,享受专属功能,与我们的精彩社区互动!

注册
相关帖文 回复 查看 活动
Can anyone please help me with creating a simple module in openERP 7 and i kindly request for links for videos that explains abo
module newmodule
形象
形象
1
3月 15
2634
OpenERP module xml ValidateError
module newmodule
形象
形象
1
3月 15
8165
Please help me creating a simple module in open erp 7
module newmodule
形象
形象
1
3月 15
2656
Error "Invalid XML for View Architecture" in custom form view 已解决
module newmodule
形象
形象
形象
形象
形象
5
1月 24
16898
pictures fields on openerp7
module newmodule new
形象
形象
1
3月 15
4866
社区
  • 教学视频
  • 文档
  • 论坛
开源
  • 下载
  • Github
  • Runbot
  • 翻译
服务
  • Odoo.sh 托管
  • 支持
  • 升级
  • 自定义开发服务
  • 教育
  • 查找会计服务
  • 寻找合作伙伴
  • 成为合作伙伴
关于我们
  • 我们的公司
  • 品牌资产
  • 联系我们
  • 招聘
  • 近期活动
  • 播客
  • 博客
  • 客户
  • 法律 • 隐私
  • 安全
الْعَرَبيّة 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致力于为企业管理提供高效智能的开源解决方案,是全球业内高速成长的软件服务商之一,逾七百五十万用户选择Odoo进行数字化升级。通过一系列全业务链覆盖、高度集成、简单易用的商业应用,助力企业实现信息化改革、降本增效并释放公司增长潜力。

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