Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    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 Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & 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
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

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

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

how fixed thies error :Invalid XML for View Architecture!

Subscribe

Get notified when there's activity on this post

This question has been flagged
architectureinvalid
7088 Views
Avatar
Muaz

whine i install my module show this error: (('ValidateError', u'Error occurred while validating the field(s) arch: Invalid XML for View Architecture!'))

my files:

accbalance.py:

from osv import fields, osv
import time
class accbalance(osv.osv):
_name = 'account.account'
_inherit = 'account.account'
_description = 'Simple accountiec'
_columns = {

    }
accbalance()

accbalance_view.xml:

<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="view_accaccount_form" model="ir.ui.view">
        <field name="name">account.account.form</field>
        <field name="model">account.account</field>
        <field name="arch" type="xml">
            <form string="Account" version="7.0">
                    <group>
                        <field name="parent_id"/>
                        <field name="type"/>
                        <field name="user_type"/>
                        <field name="active"/>
                        <field name="company_id" widget="selection" groups="base.group_multi_company"/>
                    </group>
            </form>
        </field>
    </record>

    <record id="view_accaccount_tree" model="ir.ui.view">
        <field name="name">account.account.tree</field>
        <field name="model">account.account</field>
        <field name="arch" type="xml">
            <tree string="Chart of accounts" toolbar="1" >
                <field name="parent_id"/>
                <field name="type"/>
                <field name="user_type"/>
                <field name="active"/>
                <field name="company_id"/>
            </tree>
        </field>
    </record>

    <record id="accaction_account_form" model="ir.actions.act_window">
        <field name="name">Accounts</field>
        <field name="res_model">account.account</field>
        <field name="view_type">form</field>
        <field name="view_id" ref="view_accaccount_tree"/>
    </record>

</data> </openerp>

wizard file:

account_balance_report.py:

from openerp.osv import fields, osv

 class account_balance_report(osv.osv_memory):
_inherit = "account.common.account.report"
_name = 'account.balance.report'
_description = 'Trial Balance Report'

_columns = {
    'journal_ids': fields.many2many('account.journal', 'account_balance_report_journal_rel', 'account_id', 'journal_id', 'Journals', required=True),
}

_defaults = {
    'journal_ids': [],
}

def _print_report(self, cr, uid, ids, data, context=None):
    data = self.pre_print_report(cr, uid, ids, data, context=context)
    return {'type': 'ir.actions.report.xml', 'report_name': 'account.account.balance', 'datas': data}

account_balance_report()

account_report_account_accbalance_view.xml:

<?xml version="1.0" encoding="utf-8"?>

<openerp> <data>

    <record id="account_report_accbalance_view" model="ir.ui.view">
      <field name="name">Balance</field>
      <field name="model">account.balance.report</field>
      <field name="inherit_id" ref="account.account_common_report_view" />
      <field name="arch" type="xml">
        <data>
        <xpath expr="//notebook/page[@string='Journals']" position="replace">
        </xpath>
        <xpath expr="//field[@name='target_move']" position="after">
            <field name="display_account"/>
            <newline/>
        </xpath>
        </data>
      </field>
    </record>

    <record id="action_account_accbalance_menu" model="ir.actions.act_window">
        <field name="name">Trial Balance</field>
        <field name="type">ir.actions.act_window</field>
        <field name="res_model">account.balance.report</field>
        <field name="view_type">form</field>
        <field name="view_mode">form</field>
        <field name="view_id" ref="account_report_accbalance_view"/>
        <field name="target">new</field>
    </record>

    <menuitem
            name="acc Trial Balance"
            parent="account.final_accounting_reports"
            action="action_account_accbalance_menu"
            id="menu_general_accBalance_report"
           />

    <record model="ir.values" id="action_account_accbalance_report_values1">
        <field name="model_id" ref="account.model_account_account" />
        <field name="name">acc Trial Balance</field>
        <field name="key2">client_print_multi</field>
        <field name="value" eval="'ir.actions.act_window,' +str(ref('action_account_accbalance_menu'))" />
        <field name="key">action</field>
        <field name="model">account.account</field>
    </record>

    <record id="action_account_accbalance2_menu" model="ir.actions.act_window">
        <field name="name">Trial Balance</field>
        <field name="type">ir.actions.act_window</field>
        <field name="res_model">account.balance.report</field>
        <field name="view_type">form</field>
        <field name="view_mode">form</field>
        <field name="view_id" ref="account_report_accbalance_view"/>
        <field name="target">new</field>
    </record>

</data>

</openerp>

report files: account_balance.py:

import time

from openerp.report import report_sxw
from common_report_header import common_report_header

 class account_balance(report_sxw.rml_parse, common_report_header):
_name = 'report.account.account.balance'

def __init__(self, cr, uid, name, context=None):
    super(account_balance, self).__init__(cr, uid, name, context=context)
    self.sum_debit = 0.00
    self.sum_credit = 0.00
    self.date_lst = []
    self.date_lst_string = ''
    self.result_acc = []
    self.localcontext.update({
        'time': time,
        'lines': self.lines,
        'sum_debit': self._sum_debit,
        'sum_credit': self._sum_credit,
        'get_fiscalyear':self._get_fiscalyear,
        'get_filter': self._get_filter,
        'get_start_period': self.get_start_period,
        'get_end_period': self.get_end_period ,
        'get_account': self._get_account,
        'get_journal': self._get_journal,
        'get_start_date':self._get_start_date,
        'get_end_date':self._get_end_date,
        'get_target_move': self._get_target_move,
    })
    self.context = context

def set_context(self, objects, data, ids, report_type=None):
    new_ids = ids
    if (data['model'] == 'ir.ui.menu'):
        new_ids = 'chart_account_id' in data['form'] and [data['form']['chart_account_id']] or []
        objects = self.pool.get('account.account').browse(self.cr, self.uid, new_ids)
    return super(account_balance, self).set_context(objects, data, new_ids, report_type=report_type)

#def _add_header(self, node, header=1):
#    if header == 0:
#        self.rml_header = ""
#    return True

def _get_account(self, data):
    if data['model']=='account.account':
        return self.pool.get('account.account').browse(self.cr, self.uid, data['form']['id']).company_id.name
    return super(account_balance ,self)._get_account(data)

def lines(self, form, ids=None, done=None):
    def _process_child(accounts, disp_acc, parent):
            account_rec = [acct for acct in accounts if acct['id']==parent][0]
            currency_obj = self.pool.get('res.currency')
            acc_id = self.pool.get('account.account').browse(self.cr, self.uid, account_rec['id'])
            currency = acc_id.currency_id and acc_id.currency_id or acc_id.company_id.currency_id
            res = {
                'id': account_rec['id'],
                'type': account_rec['type'],
                'code': account_rec['code'],
                'name': account_rec['name'],
                'level': account_rec['level'],
                'debit': account_rec['debit'],
                'credit': account_rec['credit'],
                'balance': account_rec['balance'],
                'parent_id': account_rec['parent_id'],
                'bal_type': '',
            }
            self.sum_debit += account_rec['debit']
            self.sum_credit += account_rec['credit']
            if disp_acc == 'movement':
                if not currency_obj.is_zero(self.cr, self.uid, currency, res['credit']) or not currency_obj.is_zero(self.cr, self.uid, currency, res['debit']) or not currency_obj.is_zero(self.cr, self.uid, currency, res['balance']):
                    self.result_acc.append(res)
            elif disp_acc == 'not_zero':
                if not currency_obj.is_zero(self.cr, self.uid, currency, res['balance']):
                    self.result_acc.append(res)
            else:
                self.result_acc.append(res)
            if account_rec['child_id']:
                for child in account_rec['child_id']:
                    _process_child(accounts,disp_acc,child)

    obj_account = self.pool.get('account.account')
    if not ids:
        ids = self.ids
    if not ids:
        return []
    if not done:
        done={}

    ctx = self.context.copy()

    ctx['fiscalyear'] = form['fiscalyear_id']
    if form['filter'] == 'filter_period':
        ctx['period_from'] = form['period_from']
        ctx['period_to'] = form['period_to']
    elif form['filter'] == 'filter_date':
        ctx['date_from'] = form['date_from']
        ctx['date_to'] =  form['date_to']
    ctx['state'] = form['target_move']
    parents = ids
    child_ids = obj_account._get_children_and_consol(self.cr, self.uid, ids, ctx)
    if child_ids:
        ids = child_ids
    accounts = obj_account.read(self.cr, self.uid, ids, ['type','code','name','debit','credit','balance','parent_id','level','child_id'], ctx)

    for parent in parents:
            if parent in done:
                continue
            done[parent] = 1
            _process_child(accounts,form['display_account'],parent)
    return self.result_acc

  report_sxw.report_sxw('report.account.account.accbalance', 'account.account', 'addons/account/report/account_balance.rml', parser=account_balance, header="internal")

account_report.xml:

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

    <report auto="False" id="account_account_accbalance" menu="False" model="account.account" name="account.account.accbalance" rml="accbalance/report/account_balance.rml" string="Trial Balance"/>



</data>

</openerp>

0
Avatar
Discard
Enjoying the discussion? Don't just read, join in!

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

Sign up
Related Posts Replies Views Activity
OPENERP: ValidateError Error occurred while validating the field(s) arch: Invalid XML for View Architecture
xml architecture invalid validateerror
Avatar
Avatar
Avatar
2
Mar 15
9804
Can't install custom module -> arch: Invalid XML for View Architecture! Solved
module xml install architecture invalid
Avatar
Avatar
Avatar
4
Nov 15
6745
Invalid XML for View Architecture on Account Banking Payment export module install
export xml account architecture invalid
Avatar
Avatar
1
Mar 15
6680
Multi instance sharing same database
architecture databases
Avatar
Avatar
1
Sep 24
6560
invalid signup token
invalid token
Avatar
0
Aug 22
1328
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة 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 is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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