first commit

This commit is contained in:
root
2026-03-14 09:42:12 +00:00
commit 0adbd20c2c
10991 changed files with 1646955 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.

View File

@@ -0,0 +1,455 @@
from collections import defaultdict
from decimal import Decimal
from functools import wraps
from itertools import groupby, zip_longest
from operator import attrgetter
from dateutil.relativedelta import relativedelta
from sql.conditionals import Coalesce
from trytond.i18n import gettext
from trytond.model import (
ModelSQL, ModelView, fields, sequence_ordered, sum_tree, tree)
from trytond.modules.currency.fields import Monetary
from trytond.pool import Pool, PoolMeta
from trytond.pyson import Bool, Eval, If
from trytond.report import Report
from trytond.transaction import Transaction
from .exceptions import InvoiceConsolidationCompanyError
def with_currency_date(func):
@wraps(func)
def wrapper(*args, **kwargs):
pool = Pool()
Date = pool.get('ir.date')
today = Date.today()
transaction = Transaction()
context = transaction.context
with transaction.set_context(
date=context.get('date', context.get('to_date', today))):
return func(*args, **kwargs)
return wrapper
class Type(metaclass=PoolMeta):
__name__ = 'account.account.type'
consolidation = fields.Many2One(
'account.consolidation', "Consolidation",
domain=[
('statement', '=', Eval('statement')),
If(Eval('statement') == 'balance',
('assets', '=', Eval('assets', False)),
()),
])
class Move(metaclass=PoolMeta):
__name__ = 'account.move'
consolidation_company = fields.Many2One(
'company.company', "Consolidation Company",
domain=[
('id', '!=', Eval('company', -1)),
])
@classmethod
def __setup__(cls):
super().__setup__()
cls._check_modify_exclude.add('consolidation_company')
class MoveLine(metaclass=PoolMeta):
__name__ = 'account.move.line'
consolidation_company = fields.Function(fields.Many2One(
'company.company', "Consolidation Company"),
'get_move_field',
setter='set_move_field',
searcher='search_move_field')
@classmethod
def __setup__(cls):
super().__setup__()
cls._check_modify_exclude.add('consolidation_company')
@classmethod
def query_get(cls, table):
pool = Pool()
Move = pool.get('account.move')
move = Move.__table__()
context = Transaction().context
query, fiscalyear_id = super().query_get(table)
if context.get('consolidated') and context.get('companies'):
query &= table.move.in_(move.select(move.id, where=~Coalesce(
move.consolidation_company, -1).in_(context['companies'])))
return query, fiscalyear_id
class Invoice(metaclass=PoolMeta):
__name__ = 'account.invoice'
consolidation_company = fields.Many2One(
'company.company', "Consolidation Company",
domain=[
('party', '=', Eval('party', -1)),
('id', '!=', Eval('company', -1)),
],
states={
'readonly': Eval('state') != 'draft',
})
@fields.depends('party', 'company', 'consolidation_company')
def on_change_party(self):
pool = Pool()
Company = pool.get('company.company')
super().on_change_party()
if self.party:
companies = Company.search([
('party', '=', self.party.id),
('id', '!=', self.company.id if self.company else None),
])
if len(companies) == 1:
self.consolidation_company, = companies
@classmethod
def set_number(cls, invoices):
pool = Pool()
Company = pool.get('company.company')
super().set_number(invoices)
companies = Company.search([], order=[('party', None)])
party2company = {
party: list(companies)
for party, companies in groupby(companies, attrgetter('party'))}
for invoice in invoices:
if not invoice.consolidation_company:
companies = party2company.get(invoice.party, [])
if len(companies) == 1:
invoice.consolidation_company, = companies
elif companies:
raise InvoiceConsolidationCompanyError(
gettext('account_consolidation.'
'msg_invoice_consolidation_company_ambiguous',
invoice=invoice.rec_name,
party=invoice.party.rec_name))
cls.save(invoices)
def get_move(self):
previous_move = self.move
move = super().get_move()
if move != previous_move:
move.consolidation_company = self.consolidation_company
return move
class Consolidation(
sequence_ordered(), tree(separator='\\'), ModelSQL, ModelView):
__name__ = 'account.consolidation'
parent = fields.Many2One(
'account.consolidation', "Parent", ondelete="RESTRICT",
domain=['OR',
If(Eval('statement') == 'off-balance',
('statement', '=', 'off-balance'),
If(Eval('statement') == 'balance',
('statement', '=', 'balance'),
('statement', '!=', 'off-balance')),
),
('statement', '=', None),
])
name = fields.Char("Name", required=True)
statement = fields.Selection([
(None, ""),
('balance', "Balance"),
('income', "Income"),
('off-balance', "Off-Balance"),
], "Statement",
states={
'required': Bool(Eval('parent')),
})
assets = fields.Boolean(
"Assets",
states={
'invisible': Eval('statement') != 'balance',
})
types = fields.One2Many(
'account.account.type', 'consolidation', "Types",
domain=[
('statement', '=', Eval('statement')),
If(Eval('statement') == 'balance',
('assets', '=', Eval('assets', False)),
()),
],
add_remove=[
('consolidation', '=', None),
])
children = fields.One2Many('account.consolidation', 'parent', "Children")
amount = fields.Function(Monetary(
"Amount", currency='currency', digits='currency'),
'get_amount')
currency = fields.Function(fields.Many2One(
'currency.currency', 'Currency'), 'get_currency')
amount_cmp = fields.Function(Monetary(
"Amount", currency='currency', digits='currency'),
'get_amount_cmp')
@classmethod
def default_assets(cls):
return False
@fields.depends('parent', '_parent_parent.statement')
def on_change_parent(self):
if self.parent:
self.statement = self.parent.statement
def get_currency(self, name):
return Transaction().context.get('currency')
@classmethod
@with_currency_date
def get_amount(cls, consolidations, name):
pool = Pool()
AccountType = pool.get('account.account.type')
Currency = pool.get('currency.currency')
User = pool.get('res.user')
transaction = Transaction()
context = transaction.context
user = User(transaction.user)
children = cls.search([
('parent', 'child_of', [c.id for c in consolidations]),
])
types = sum((c.types for c in children), ())
key = attrgetter('company')
companies = set(context.get('companies', [])).intersection(
map(int, user.companies))
id2types = {}
for company, types in groupby(sorted(types, key=key), key):
if company.id not in companies:
company = None
else:
company = company.id
with transaction.set_context(company=company, consolidated=True):
types = AccountType.browse(types)
id2types.update((t.id, t) for t in types)
values = defaultdict(Decimal)
for consolidation in children:
currency = consolidation.currency
if not currency:
continue
for type_ in consolidation.types:
type_ = id2types[type_.id]
if type_.company.id not in companies:
continue
value = type_.amount
if type_.statement == 'balance' and type_.assets:
value *= -1
if type_.company.currency != currency:
value = Currency.compute(
type_.company.currency, value, currency, round=False)
values[consolidation.id] += value
result = sum_tree(children, values)
for consolidation in consolidations:
if consolidation.currency:
result[consolidation.id] = consolidation.currency.round(
result[consolidation.id])
if consolidation.statement == 'balance' and consolidation.assets:
result[consolidation.id] *= -1
return result
@classmethod
def get_amount_cmp(cls, consolidations, name):
transaction = Transaction()
current = transaction.context
if not current.get('comparison'):
return dict.fromkeys([c.id for c in consolidations], None)
new = {}
for key, value in current.items():
if key.endswith('_cmp'):
new[key[:-4]] = value
with transaction.set_context(new):
return cls.get_amount(consolidations, name)
@classmethod
def view_attributes(cls):
return super().view_attributes() + [
('/tree/field[@name="amount_cmp"]', 'tree_invisible',
~Eval('comparison', False)),
]
@classmethod
def copy(cls, consolidations, default=None):
if default is None:
default = {}
else:
default = default.copy()
default.setdefault('types', None)
return super().copy(consolidations, default=default)
class ConsolidationBalanceSheetContext(ModelView):
__name__ = 'account.consolidation.balance_sheet.context'
date = fields.Date("Date", required=True)
posted = fields.Boolean("Posted Moves", help="Only include posted moves.")
companies = fields.Many2Many('company.company', None, None, "Companies")
currency = fields.Many2One('currency.currency', "Currency", required=True)
comparison = fields.Boolean("Comparison")
date_cmp = fields.Date(
"Date",
states={
'required': Eval('comparison', False),
'invisible': ~Eval('comparison', False),
})
@classmethod
def default_date(cls):
Date = Pool().get('ir.date')
return Transaction().context.get('date', Date.today())
@classmethod
def default_posted(cls):
return Transaction().context.get('posted', False)
@classmethod
def default_currency(cls):
pool = Pool()
Company = pool.get('company.company')
company_id = Transaction().context.get('company')
if company_id is not None and company_id >= 0:
return Company(company_id).currency.id
@classmethod
def default_companies(cls):
context = Transaction().context
return context.get(
'companies',
[context['company']] if context.get('company') else None)
@classmethod
def default_comparison(cls):
return False
@fields.depends('comparison', 'date', 'date_cmp')
def on_change_comparison(self):
self.date_cmp = None
if self.comparison and self.date:
self.date_cmp = self.date - relativedelta(years=1)
@classmethod
def view_attributes(cls):
return super().view_attributes() + [
('/form/separator[@id="comparison"]', 'states', {
'invisible': ~Eval('comparison', False),
}),
]
class ConsolidationIncomeStatementContext(ModelView):
__name__ = 'account.consolidation.income_statement.context'
from_date = fields.Date(
"From Date",
domain=[
If(Eval('to_date') & Eval('from_date'),
('from_date', '<=', Eval('to_date')),
()),
])
to_date = fields.Date(
"To Date",
domain=[
If(Eval('from_date') & Eval('to_date'),
('to_date', '>=', Eval('from_date')),
()),
])
companies = fields.Many2Many('company.company', None, None, "Companies")
currency = fields.Many2One('currency.currency', "Currency", required=True)
posted = fields.Boolean('Posted Moves', help="Only include posted moves.")
comparison = fields.Boolean('Comparison')
from_date_cmp = fields.Date(
"From Date",
domain=[
If(Eval('to_date_cmp') & Eval('from_date_cmp'),
('from_date_cmp', '<=', Eval('to_date_cmp')),
()),
],
states={
'invisible': ~Eval('comparison', False),
})
to_date_cmp = fields.Date(
"To Date",
domain=[
If(Eval('from_date_cmp') & Eval('to_date_cmp'),
('to_date_cmp', '>=', Eval('from_date_cmp')),
()),
],
states={
'invisible': ~Eval('comparison', False),
})
@classmethod
def default_posted(cls):
return False
@classmethod
def default_comparison(cls):
return False
@classmethod
def default_currency(cls):
pool = Pool()
Company = pool.get('company.company')
company_id = Transaction().context.get('company')
if company_id is not None and company_id >= 0:
return Company(company_id).currency.id
@classmethod
def default_companies(cls):
context = Transaction().context
return context.get(
'companies',
[context['company']] if context.get('company') else None)
@classmethod
def view_attributes(cls):
return super().view_attributes() + [
('/form/separator[@id="comparison"]', 'states', {
'invisible': ~Eval('comparison', False),
}),
]
class ConsolidationStatement(Report):
__name__ = 'account.consolidation.statement'
@classmethod
def get_context(cls, records, header, data):
pool = Pool()
Company = pool.get('company.company')
User = pool.get('res.user')
transaction = Transaction()
context = transaction.context
user = User(transaction.user)
report_context = super().get_context(records, header, data)
companies = set(context.get('companies', [])).intersection(
map(int, user.companies))
report_context['companies'] = Company.browse(companies)
if data.get('model_context') is not None:
Context = pool.get(data['model_context'])
values = {}
for field in Context._fields:
if field in context:
values[field] = context[field]
report_context['ctx'] = Context(**values)
report_context['consolidations'] = zip_longest(
records, data.get('paths') or [], fillvalue=[])
return report_context

View File

@@ -0,0 +1,219 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<tryton>
<data>
<record model="ir.ui.view" id="account_type_view_form">
<field name="model">account.account.type</field>
<field name="inherit" ref="account.account_type_view_form"/>
<field name="name">account_type_form</field>
</record>
<record model="ir.ui.view" id="account_type_view_list">
<field name="model">account.account.type</field>
<field name="inherit" ref="account.account_type_view_list"/>
<field name="name">account_type_list</field>
</record>
<record model="ir.ui.view" id="move_view_form">
<field name="model">account.move</field>
<field name="inherit" ref="account.move_view_form"/>
<field name="name">move_form</field>
</record>
<record model="ir.ui.view" id="move_view_list">
<field name="model">account.move</field>
<field name="inherit" ref="account.move_view_tree"/>
<field name="name">move_list</field>
</record>
<record model="ir.ui.view" id="move_line_view_form">
<field name="model">account.move.line</field>
<field name="inherit" ref="account.move_line_view_form"/>
<field name="name">move_line_form</field>
</record>
<record model="ir.ui.view" id="move_line_view_list">
<field name="model">account.move.line</field>
<field name="inherit" ref="account.move_line_view_tree"/>
<field name="name">move_line_list</field>
</record>
<record model="ir.ui.view" id="consolidation_view_form">
<field name="model">account.consolidation</field>
<field name="type">form</field>
<field name="name">consolidation_form</field>
</record>
<record model="ir.ui.view" id="consolidation_view_tree">
<field name="model">account.consolidation</field>
<field name="type">tree</field>
<field name="priority" eval="20"/>
<field name="field_childs">children</field>
<field name="name">consolidation_tree</field>
</record>
<record model="ir.ui.view" id="consolidation_view_list">
<field name="model">account.consolidation</field>
<field name="type">tree</field>
<field name="priority" eval="10"/>
<field name="name">consolidation_list</field>
</record>
<record model="ir.action.act_window" id="act_consolidation_tree">
<field name="name">Account Consolidations</field>
<field name="res_model">account.consolidation</field>
<field name="domain" eval="[('parent', '=', None)]" pyson="1"/>
</record>
<record model="ir.action.act_window.view" id="act_consolidation_tree_view1">
<field name="sequence" eval="10"/>
<field name="view" ref="consolidation_view_tree"/>
<field name="act_window" ref="act_consolidation_tree"/>
</record>
<record model="ir.action.act_window.view" id="act_consolidation_tree_view2">
<field name="sequence" eval="20"/>
<field name="view" ref="consolidation_view_form"/>
<field name="act_window" ref="act_consolidation_tree"/>
</record>
<menuitem
parent="account.menu_general_account_configuration"
action="act_consolidation_tree"
sequence="10"
id="menu_consolidation_tree"/>
<record model="ir.action.act_window" id="act_consolidation_list">
<field name="name">Account Consolidations</field>
<field name="res_model">account.consolidation</field>
</record>
<record model="ir.action.act_window.view" id="act_consolidation_list_view1">
<field name="sequence" eval="10"/>
<field name="view" ref="consolidation_view_list"/>
<field name="act_window" ref="act_consolidation_list"/>
</record>
<record model="ir.action.act_window.view" id="act_consolidation_list_view2">
<field name="sequence" eval="20"/>
<field name="view" ref="consolidation_view_form"/>
<field name="act_window" ref="act_consolidation_list"/>
</record>
<menuitem
parent="menu_consolidation_tree"
action="act_consolidation_list"
sequence="10"
id="menu_consolidation_list"/>
<record model="ir.model.access" id="access_consolidation">
<field name="model">account.consolidation</field>
<field name="perm_read" eval="False"/>
<field name="perm_write" eval="False"/>
<field name="perm_create" eval="False"/>
<field name="perm_delete" eval="False"/>
</record>
<record model="ir.model.access" id="access_consolidation_account">
<field name="model">account.consolidation</field>
<field name="group" ref="account.group_account"/>
<field name="perm_read" eval="True"/>
<field name="perm_write" eval="False"/>
<field name="perm_create" eval="False"/>
<field name="perm_delete" eval="False"/>
</record>
<record model="ir.model.access" id="access_consolidation_account_admin">
<field name="model">account.consolidation</field>
<field name="group" ref="account.group_account_admin"/>
<field name="perm_read" eval="True"/>
<field name="perm_write" eval="True"/>
<field name="perm_create" eval="True"/>
<field name="perm_delete" eval="True"/>
</record>
<record model="ir.ui.view" id="consolidation_balance_sheet_view_tree">
<field name="model">account.consolidation</field>
<field name="type">tree</field>
<field name="field_childs">children</field>
<field name="name">consolidation_balance_sheet_tree</field>
</record>
<record model="ir.action.act_window" id="act_consolidation_balance_sheet_tree">
<field name="name">Consolidated Balance Sheet</field>
<field name="res_model">account.consolidation</field>
<field name="context_model">account.consolidation.balance_sheet.context</field>
<field name="domain"
eval="[('statement', '=', 'balance'), ['OR', ('parent', '=', None), ('parent.statement', '!=', 'balance'), ('parent.statement', '=', None)]]"
pyson="1"/>
<field name="context" eval="{'cumulate': True}" pyson="1"/>
</record>
<record model="ir.action.act_window.view" id="act_consolidation_balance_sheet_view1">
<field name="sequence" eval="10"/>
<field name="view" ref="consolidation_balance_sheet_view_tree"/>
<field name="act_window" ref="act_consolidation_balance_sheet_tree"/>
</record>
<menuitem
parent="account.menu_reporting"
action="act_consolidation_balance_sheet_tree"
sequence="40"
id="menu_open_consolidation_balance_sheet"/>
<record model="ir.ui.view" id="consolidation_balance_sheet_context_view_form">
<field name="model">account.consolidation.balance_sheet.context</field>
<field name="type">form</field>
<field name="name">consolidation_balance_sheet_context_form</field>
</record>
<record model="ir.ui.view" id="consolidation_income_statement_view_tree">
<field name="model">account.consolidation</field>
<field name="type">tree</field>
<field name="field_childs">children</field>
<field name="name">consolidation_income_statement_tree</field>
</record>
<record model="ir.action.act_window" id="act_consolidation_income_statement_tree">
<field name="name">Consolidated Income Statement</field>
<field name="res_model">account.consolidation</field>
<field name="context_model">account.consolidation.income_statement.context</field>
<field name="domain"
eval="[('statement', '=', 'income'), ['OR', ('parent', '=', None), ('parent.statement', '!=', 'income'), ('parent.statement', '=', None)]]"
pyson="1"/>
</record>
<record model="ir.action.act_window.view" id="act_consolidation_income_statement_view1">
<field name="sequence" eval="10"/>
<field name="view" ref="consolidation_income_statement_view_tree"/>
<field name="act_window" ref="act_consolidation_income_statement_tree"/>
</record>
<menuitem
parent="account.menu_reporting"
action="act_consolidation_income_statement_tree"
sequence="40"
id="menu_open_consolidation_income_statement"/>
<record model="ir.ui.view" id="consolidation_income_statement_context_view_form">
<field name="model">account.consolidation.income_statement.context</field>
<field name="type">form</field>
<field name="name">consolidation_income_statement_context_form</field>
</record>
<record model="ir.action.report" id="report_consolidation_statement">
<field name="name">Statement</field>
<field name="records">listed</field>
<field name="model">account.consolidation</field>
<field name="report_name">account.consolidation.statement</field>
<field name="report">account_consolidation/consolidation_statement.fodt</field>
</record>
<record model="ir.action.keyword" id="report_consolidation_statement_keyword">
<field name="keyword">form_print</field>
<field name="model">account.consolidation,-1</field>
<field name="action" ref="report_consolidation_statement"/>
</record>
<record model="ir.action-res.group" id="report_consolidation_statement_group_account">
<field name="action" ref="report_consolidation_statement"/>
<field name="group" ref="account.group_account"/>
</record>
</data>
<data depends="account_invoice">
<record model="ir.ui.view" id="invoice_view_form">
<field name="model">account.invoice</field>
<field name="inherit" ref="account_invoice.invoice_view_form"/>
<field name="name">invoice_form</field>
</record>
</data>
</tryton>

View File

@@ -0,0 +1,597 @@
<?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:officeooo="http://openoffice.org/2009/office" xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rpt="http://openoffice.org/2005/report" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:xforms="http://www.w3.org/2002/xforms" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:generator>LibreOffice/7.3.6.2$Linux_X86_64 LibreOffice_project/30$Build-2</meta:generator><meta:creation-date>2008-06-07T15:26:41</meta:creation-date><dc:date>2008-08-27T17:03:36</dc:date><meta:editing-cycles>1</meta:editing-cycles><meta:editing-duration>PT0S</meta:editing-duration><meta:document-statistic meta:table-count="3" meta:image-count="0" meta:object-count="0" meta:page-count="2" meta:paragraph-count="34" meta:word-count="95" meta:character-count="1053" meta:non-whitespace-character-count="992"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:settings>
<config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">25269</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">24026</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">3840</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">5020</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">25268</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">24024</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">100</config:config-item>
<config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item>
<config:config-item config:name="KeepRatio" config:type="boolean">false</config:config-item>
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
</config:config-item-map-entry>
</config:config-item-map-indexed>
</config:config-item-set>
<config:config-item-set config:name="ooo:configuration-settings">
<config:config-item config:name="PrintProspect" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintReversed" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintSingleJobs" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintLeftPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintTables" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintControls" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintPageBackground" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintDrawings" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintBlackFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintAnnotationMode" config:type="short">0</config:config-item>
<config:config-item config:name="PrintTextPlaceholder" config:type="boolean">false</config:config-item>
<config:config-item config:name="ProtectFields" config:type="boolean">false</config:config-item>
<config:config-item config:name="ProtectBookmarks" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmptyDbFieldHidesPara" config:type="boolean">false</config:config-item>
<config:config-item config:name="DisableOffPagePositioning" config:type="boolean">false</config:config-item>
<config:config-item config:name="SubtractFlysAnchoredAtFlys" config:type="boolean">true</config:config-item>
<config:config-item config:name="PropLineSpacingShrinksFirstLine" config:type="boolean">false</config:config-item>
<config:config-item config:name="ApplyParagraphMarkFormatToNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="GutterAtTop" config:type="boolean">false</config:config-item>
<config:config-item config:name="TreatSingleColumnBreakAsPageBreak" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedSystemFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedComplexScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedAsianScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedLatinScriptFonts" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedOnlyUsedFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="ContinuousEndnotes" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="ClippedPictures" config:type="boolean">false</config:config-item>
<config:config-item config:name="FloattableNomargins" config:type="boolean">false</config:config-item>
<config:config-item config:name="UnbreakableNumberings" config:type="boolean">false</config:config-item>
<config:config-item config:name="HeaderSpacingBelowLastPara" config:type="boolean">false</config:config-item>
<config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseOldPrinterMetrics" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabOverMargin" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabsRelativeToIndent" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseOldNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
<config:config-item config:name="CurrentDatabaseCommandType" config:type="int">0</config:config-item>
<config:config-item config:name="LinkUpdateMode" config:type="short">1</config:config-item>
<config:config-item config:name="AddParaSpacingToTableCells" config:type="boolean">true</config:config-item>
<config:config-item config:name="FrameAutowidthWithMorePara" config:type="boolean">false</config:config-item>
<config:config-item config:name="CurrentDatabaseCommand" config:type="string"/>
<config:config-item config:name="PrinterIndependentLayout" config:type="string">high-resolution</config:config-item>
<config:config-item config:name="ApplyUserData" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintFaxName" config:type="string"/>
<config:config-item config:name="CurrentDatabaseDataSource" config:type="string"/>
<config:config-item config:name="ClipAsCharacterAnchoredWriterFlyFrames" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item>
<config:config-item config:name="SaveThumbnail" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseFormerTextWrapping" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddExternalLeading" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddParaTableSpacing" config:type="boolean">true</config:config-item>
<config:config-item config:name="StylesNoDefault" config:type="boolean">false</config:config-item>
<config:config-item config:name="ChartAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrinterSetup" config:type="base64Binary"/>
<config:config-item config:name="AddParaTableSpacingAtStart" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">4095656</config:config-item>
<config:config-item config:name="EmbeddedDatabaseName" config:type="string"/>
<config:config-item config:name="FieldAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="OutlineLevelYieldsNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="FootnoteInColumnToPageEnd" config:type="boolean">true</config:config-item>
<config:config-item config:name="AlignTabStopPosition" config:type="boolean">true</config:config-item>
<config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
<config:config-item config:name="PrinterName" config:type="string"/>
<config:config-item config:name="SaveGlobalDocumentLinks" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseFormerLineSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddParaLineSpacingToTableCells" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseFormerObjectPositioning" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintGraphics" config:type="boolean">true</config:config-item>
<config:config-item config:name="SurroundTextWrapSmall" config:type="boolean">false</config:config-item>
<config:config-item config:name="ConsiderTextWrapOnObjPos" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="TabOverSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="IgnoreFirstLineIndentInNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="RedlineProtectionKey" config:type="base64Binary"/>
<config:config-item config:name="DoNotJustifyLinesWithManualBreak" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintProspectRTL" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintEmptyPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="DoNotResetParaAttrsForNumFont" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddFrameOffsets" config:type="boolean">false</config:config-item>
<config:config-item config:name="IgnoreTabsAndBlanksForLineCalculation" config:type="boolean">false</config:config-item>
<config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
<config:config-item config:name="DoNotCaptureDrawObjsOnPage" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddVerticalFrameOffsets" config:type="boolean">false</config:config-item>
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsLabelDocument" config:type="boolean">false</config:config-item>
<config:config-item config:name="TableRowKeep" config:type="boolean">false</config:config-item>
<config:config-item config:name="RsidRoot" config:type="int">2070049</config:config-item>
<config:config-item config:name="PrintHiddenText" config:type="boolean">false</config:config-item>
<config:config-item config:name="ProtectForm" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompMinLineHeightByFly" config:type="boolean">false</config:config-item>
<config:config-item config:name="BackgroundParaOverDrawings" config:type="boolean">false</config:config-item>
<config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">false</config:config-item>
<config:config-item config:name="SmallCapsPercentage66" config:type="boolean">true</config:config-item>
<config:config-item config:name="CollapseEmptyCellPara" config:type="boolean">true</config:config-item>
<config:config-item config:name="TabOverflow" config:type="boolean">false</config:config-item>
</config:config-item-set>
</office:settings>
<office:scripts>
<office:script script:language="ooo:Basic">
<ooo:libraries xmlns:ooo="http://openoffice.org/2004/office" xmlns:xlink="http://www.w3.org/1999/xlink"/>
</office:script>
</office:scripts>
<office:font-face-decls>
<style:font-face style:name="Andale Sans UI" svg:font-family="&apos;Andale Sans UI&apos;" style:font-family-generic="system" style:font-pitch="variable"/>
<style:font-face style:name="DejaVu Sans" svg:font-family="&apos;DejaVu Sans&apos;" style:font-family-generic="system" style:font-pitch="variable"/>
<style:font-face style:name="Liberation Sans" svg:font-family="&apos;Liberation Sans&apos;" style:font-adornments="Regular" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="Liberation Serif" svg:font-family="&apos;Liberation Serif&apos;" style:font-adornments="Bold" style:font-family-generic="roman" style:font-pitch="variable"/>
<style:font-face style:name="Liberation Serif1" svg:font-family="&apos;Liberation Serif&apos;" style:font-adornments="Regular" style:font-family-generic="roman" style:font-pitch="variable"/>
<style:font-face style:name="StarSymbol" svg:font-family="StarSymbol"/>
<style:font-face style:name="Thorndale AMT" svg:font-family="&apos;Thorndale AMT&apos;" style:font-family-generic="roman" style:font-pitch="variable"/>
</office:font-face-decls>
<office:styles>
<style:default-style style:family="graphic">
<style:graphic-properties svg:stroke-color="#000000" draw:fill-color="#99ccff" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.3cm" draw:shadow-offset-y="0.3cm" draw:start-line-spacing-horizontal="0.283cm" draw:start-line-spacing-vertical="0.283cm" draw:end-line-spacing-horizontal="0.283cm" draw:end-line-spacing-vertical="0.283cm" style:flow-with-text="false"/>
<style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:font-independent-line-spacing="false">
<style:tab-stops/>
</style:paragraph-properties>
<style:text-properties style:use-window-font-color="true" loext:opacity="0%" style:font-name="Thorndale AMT" fo:font-size="12pt" fo:language="en" fo:country="US" style:letter-kerning="true" style:font-name-asian="Andale Sans UI" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-name-complex="Andale Sans UI" style:font-size-complex="12pt" style:language-complex="zxx" style:country-complex="none"/>
</style:default-style>
<style:default-style style:family="paragraph">
<style:paragraph-properties fo:hyphenation-ladder-count="no-limit" style:text-autospace="ideograph-alpha" style:punctuation-wrap="hanging" style:line-break="strict" style:tab-stop-distance="1.251cm" style:writing-mode="lr-tb"/>
<style:text-properties style:use-window-font-color="true" loext:opacity="0%" style:font-name="Thorndale AMT" fo:font-size="12pt" fo:language="en" fo:country="US" style:letter-kerning="true" style:font-name-asian="Andale Sans UI" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-name-complex="Andale Sans UI" style:font-size-complex="12pt" style:language-complex="zxx" style:country-complex="none" fo:hyphenate="false" fo:hyphenation-remain-char-count="2" fo:hyphenation-push-char-count="2" loext:hyphenation-no-caps="false"/>
</style:default-style>
<style:default-style style:family="table">
<style:table-properties table:border-model="collapsing"/>
</style:default-style>
<style:default-style style:family="table-row">
<style:table-row-properties fo:keep-together="auto"/>
</style:default-style>
<style:style style:name="Standard" style:family="paragraph" style:class="text">
<style:text-properties style:font-name="Liberation Sans" fo:font-family="&apos;Liberation Sans&apos;" style:font-style-name="Regular" style:font-family-generic="swiss" style:font-pitch="variable" style:font-size-asian="10.5pt"/>
</style:style>
<style:style style:name="Heading" style:family="paragraph" style:parent-style-name="Standard" style:next-style-name="Text_20_body" style:class="text">
<style:paragraph-properties fo:margin-top="0.423cm" fo:margin-bottom="0.212cm" style:contextual-spacing="false" fo:keep-with-next="always"/>
<style:text-properties style:font-name="Liberation Serif1" fo:font-family="&apos;Liberation Serif&apos;" style:font-style-name="Regular" style:font-family-generic="roman" style:font-pitch="variable" fo:font-size="16pt" style:font-name-asian="DejaVu Sans" style:font-family-asian="&apos;DejaVu Sans&apos;" style:font-family-generic-asian="system" style:font-pitch-asian="variable" style:font-size-asian="14pt" style:font-name-complex="DejaVu Sans" style:font-family-complex="&apos;DejaVu Sans&apos;" style:font-family-generic-complex="system" style:font-pitch-complex="variable" style:font-size-complex="14pt"/>
</style:style>
<style:style style:name="Text_20_body" style:display-name="Text body" style:family="paragraph" style:parent-style-name="Standard" style:class="text">
<style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0.212cm" style:contextual-spacing="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-family="&apos;Liberation Sans&apos;" style:font-style-name="Regular" style:font-family-generic="swiss" style:font-pitch="variable" style:font-size-asian="10.5pt"/>
</style:style>
<style:style style:name="List" style:family="paragraph" style:parent-style-name="Text_20_body" style:class="list">
<style:text-properties style:font-size-asian="12pt"/>
</style:style>
<style:style style:name="Caption" style:family="paragraph" style:parent-style-name="Standard" style:class="extra">
<style:paragraph-properties fo:margin-top="0.212cm" fo:margin-bottom="0.212cm" style:contextual-spacing="false" text:number-lines="false" text:line-number="0"/>
<style:text-properties fo:font-size="12pt" fo:font-style="italic" style:font-size-asian="12pt" style:font-style-asian="italic" style:font-size-complex="12pt" style:font-style-complex="italic"/>
</style:style>
<style:style style:name="Index" style:family="paragraph" style:parent-style-name="Standard" style:class="index">
<style:paragraph-properties text:number-lines="false" text:line-number="0"/>
<style:text-properties style:font-size-asian="12pt"/>
</style:style>
<style:style style:name="Table_20_Contents" style:display-name="Table Contents" style:family="paragraph" style:parent-style-name="Standard" style:class="extra">
<style:paragraph-properties text:number-lines="false" text:line-number="0"/>
<style:text-properties style:font-size-asian="10.5pt"/>
</style:style>
<style:style style:name="Heading_20_1" style:display-name="Heading 1" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="text">
<style:text-properties fo:font-size="16pt" fo:font-weight="bold" style:font-size-asian="115%" style:font-weight-asian="bold" style:font-size-complex="115%" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="Table_20_Heading" style:display-name="Table Heading" style:family="paragraph" style:parent-style-name="Table_20_Contents" style:class="extra">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" text:number-lines="false" text:line-number="0"/>
<style:text-properties style:font-name="Liberation Serif" fo:font-family="&apos;Liberation Serif&apos;" style:font-style-name="Bold" style:font-family-generic="roman" style:font-pitch="variable" fo:font-weight="bold" style:font-size-asian="10.5pt" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="Horizontal_20_Line" style:display-name="Horizontal Line" style:family="paragraph" style:parent-style-name="Standard" style:next-style-name="Text_20_body" style:class="html">
<style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0.499cm" style:contextual-spacing="false" style:border-line-width-bottom="0.002cm 0.035cm 0.002cm" fo:padding="0cm" fo:border-left="none" fo:border-right="none" fo:border-top="none" fo:border-bottom="1.11pt double #808080" text:number-lines="false" text:line-number="0" style:join-border="false"/>
<style:text-properties fo:font-size="6pt" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
</style:style>
<style:style style:name="Header_20_and_20_Footer" style:display-name="Header and Footer" style:family="paragraph" style:parent-style-name="Standard" style:class="extra">
<style:paragraph-properties text:number-lines="false" text:line-number="0">
<style:tab-stops>
<style:tab-stop style:position="8.5cm" style:type="center"/>
<style:tab-stop style:position="17cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
</style:style>
<style:style style:name="Header" style:family="paragraph" style:parent-style-name="Standard" style:class="extra">
<style:paragraph-properties text:number-lines="false" text:line-number="0">
<style:tab-stops>
<style:tab-stop style:position="8.795cm" style:type="center"/>
<style:tab-stop style:position="17.59cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties fo:font-size="9pt" style:font-size-asian="10.5pt"/>
</style:style>
<style:style style:name="Heading_20_2" style:display-name="Heading 2" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="text">
<style:text-properties fo:font-size="14pt" fo:font-style="italic" fo:font-weight="bold" style:font-size-asian="14pt" style:font-style-asian="italic" style:font-weight-asian="bold" style:font-size-complex="14pt" style:font-style-complex="italic" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="Footer" style:family="paragraph" style:parent-style-name="Standard" style:class="extra">
<style:paragraph-properties text:number-lines="false" text:line-number="0">
<style:tab-stops>
<style:tab-stop style:position="8.795cm" style:type="center"/>
<style:tab-stop style:position="17.59cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties fo:font-size="9pt" style:font-size-asian="10.5pt"/>
</style:style>
<style:style style:name="Heading_20_3" style:display-name="Heading 3" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="text">
<style:text-properties fo:font-size="14pt" fo:font-weight="bold" style:font-size-asian="14pt" style:font-weight-asian="bold" style:font-size-complex="14pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="Text_20_body_20_indent" style:display-name="Text body indent" style:family="paragraph" style:parent-style-name="Text_20_body" style:class="text">
<style:paragraph-properties fo:margin-left="0.499cm" fo:margin-right="0cm" fo:margin-top="0cm" fo:margin-bottom="0cm" style:contextual-spacing="false" fo:text-indent="0cm" style:auto-text-indent="false"/>
</style:style>
<style:style style:name="Quotations" style:family="paragraph" style:parent-style-name="Standard" style:class="html">
<style:paragraph-properties fo:margin-left="1cm" fo:margin-right="1cm" fo:margin-top="0cm" fo:margin-bottom="0.499cm" style:contextual-spacing="false" fo:text-indent="0cm" style:auto-text-indent="false"/>
</style:style>
<style:style style:name="Title" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="chapter">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties fo:font-size="28pt" fo:font-weight="bold" style:font-size-asian="28pt" style:font-weight-asian="bold" style:font-size-complex="28pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="Subtitle" style:family="paragraph" style:parent-style-name="Heading" style:next-style-name="Text_20_body" style:class="chapter">
<style:paragraph-properties fo:margin-top="0.106cm" fo:margin-bottom="0.212cm" style:contextual-spacing="false" fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties fo:font-size="18pt" style:font-size-asian="18pt" style:font-size-complex="18pt"/>
</style:style>
<style:style style:name="Placeholder" style:family="text">
<style:text-properties fo:font-variant="small-caps" fo:color="#008080" loext:opacity="100%" style:text-underline-style="dotted" style:text-underline-width="auto" style:text-underline-color="font-color"/>
</style:style>
<style:style style:name="Bullet_20_Symbols" style:display-name="Bullet Symbols" style:family="text">
<style:text-properties style:font-name="StarSymbol" fo:font-family="StarSymbol" fo:font-size="9pt" style:font-name-asian="StarSymbol" style:font-family-asian="StarSymbol" style:font-size-asian="9pt" style:font-name-complex="StarSymbol" style:font-family-complex="StarSymbol" style:font-size-complex="9pt"/>
</style:style>
<text:outline-style style:name="Outline">
<text:outline-level-style text:level="1" loext:num-list-format="%1%" style:num-format="">
<style:list-level-properties text:min-label-distance="0.381cm"/>
</text:outline-level-style>
<text:outline-level-style text:level="2" loext:num-list-format="%2%" style:num-format="">
<style:list-level-properties text:min-label-distance="0.381cm"/>
</text:outline-level-style>
<text:outline-level-style text:level="3" loext:num-list-format="%3%" style:num-format="">
<style:list-level-properties text:min-label-distance="0.381cm"/>
</text:outline-level-style>
<text:outline-level-style text:level="4" loext:num-list-format="%4%" style:num-format="">
<style:list-level-properties text:min-label-distance="0.381cm"/>
</text:outline-level-style>
<text:outline-level-style text:level="5" loext:num-list-format="%5%" style:num-format="">
<style:list-level-properties text:min-label-distance="0.381cm"/>
</text:outline-level-style>
<text:outline-level-style text:level="6" loext:num-list-format="%6%" style:num-format="">
<style:list-level-properties text:min-label-distance="0.381cm"/>
</text:outline-level-style>
<text:outline-level-style text:level="7" loext:num-list-format="%7%" style:num-format="">
<style:list-level-properties text:min-label-distance="0.381cm"/>
</text:outline-level-style>
<text:outline-level-style text:level="8" loext:num-list-format="%8%" style:num-format="">
<style:list-level-properties text:min-label-distance="0.381cm"/>
</text:outline-level-style>
<text:outline-level-style text:level="9" loext:num-list-format="%9%" style:num-format="">
<style:list-level-properties text:min-label-distance="0.381cm"/>
</text:outline-level-style>
<text:outline-level-style text:level="10" loext:num-list-format="%10%" style:num-format="">
<style:list-level-properties text:min-label-distance="0.381cm"/>
</text:outline-level-style>
</text:outline-style>
<text:notes-configuration text:note-class="footnote" style:num-format="1" text:start-value="0" text:footnotes-position="page" text:start-numbering-at="document"/>
<text:notes-configuration text:note-class="endnote" style:num-format="i" text:start-value="0"/>
<text:linenumbering-configuration text:number-lines="false" text:offset="0.499cm" style:num-format="1" text:number-position="left" text:increment="5"/>
</office:styles>
<office:automatic-styles>
<style:style style:name="Table2" style:family="table">
<style:table-properties style:width="17.59cm" table:align="margins"/>
</style:style>
<style:style style:name="Table2.A" style:family="table-column">
<style:table-column-properties style:column-width="5.863cm" style:rel-column-width="21845*"/>
</style:style>
<style:style style:name="Table2.A1" style:family="table-cell">
<style:table-cell-properties fo:background-color="transparent" fo:padding="0.097cm" fo:border="none">
<style:background-image/>
</style:table-cell-properties>
</style:style>
<style:style style:name="Table1" style:family="table">
<style:table-properties style:width="17.59cm" table:align="margins"/>
</style:style>
<style:style style:name="Table1.A" style:family="table-column">
<style:table-column-properties style:column-width="8.795cm" style:rel-column-width="32768*"/>
</style:style>
<style:style style:name="Table1.B" style:family="table-column">
<style:table-column-properties style:column-width="8.795cm" style:rel-column-width="32767*"/>
</style:style>
<style:style style:name="Table1.A1" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border="none"/>
</style:style>
<style:style style:name="Table2" style:family="table">
<style:table-properties style:width="17.59cm" table:align="margins"/>
</style:style>
<style:style style:name="Table2.A" style:family="table-column">
<style:table-column-properties style:column-width="5.863cm" style:rel-column-width="21845*"/>
</style:style>
<style:style style:name="Table2.A1" style:family="table-cell">
<style:table-cell-properties fo:background-color="transparent" fo:padding="0.097cm" fo:border="none">
<style:background-image/>
</style:table-cell-properties>
</style:style>
<style:style style:name="Table1" style:family="table">
<style:table-properties style:width="17.59cm" table:align="margins"/>
</style:style>
<style:style style:name="Table1.A" style:family="table-column">
<style:table-column-properties style:column-width="8.795cm" style:rel-column-width="32768*"/>
</style:style>
<style:style style:name="Table1.B" style:family="table-column">
<style:table-column-properties style:column-width="8.795cm" style:rel-column-width="32767*"/>
</style:style>
<style:style style:name="Table1.A1" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border="none"/>
</style:style>
<style:style style:name="Types" style:family="table">
<style:table-properties style:width="17.59cm" table:align="margins"/>
</style:style>
<style:style style:name="Types.A" style:family="table-column">
<style:table-column-properties style:column-width="12.79cm" style:rel-column-width="47652*"/>
</style:style>
<style:style style:name="Types.B" style:family="table-column">
<style:table-column-properties style:column-width="4.8cm" style:rel-column-width="17883*"/>
</style:style>
<style:style style:name="Types.A1" style:family="table-cell">
<style:table-cell-properties fo:padding="0.049cm" fo:border="none" style:writing-mode="page"/>
</style:style>
<style:style style:name="Types.B2" style:family="table-cell">
<style:table-cell-properties style:vertical-align="middle" fo:padding="0.049cm" fo:border="none" style:writing-mode="page"/>
</style:style>
<style:style style:name="P1" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
</style:style>
<style:style style:name="P2" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
</style:style>
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Footer">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
</style:style>
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false" fo:keep-together="always" fo:keep-with-next="always"/>
</style:style>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="9pt" officeooo:rsid="003d390d" officeooo:paragraph-rsid="003d390d" style:font-size-asian="10.5pt"/>
</style:style>
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:paragraph-properties fo:keep-together="always" style:shadow="none" fo:keep-with-next="always"/>
</style:style>
<style:style style:name="P7" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:paragraph-properties fo:keep-together="always" fo:keep-with-next="always"/>
</style:style>
<style:style style:name="P8" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" fo:keep-together="always" style:shadow="none" fo:keep-with-next="always"/>
<style:text-properties fo:font-size="12pt" fo:font-weight="bold" style:font-size-asian="12pt" style:font-weight-asian="bold" style:font-size-complex="12pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P9" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:text-properties fo:font-size="12pt" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="10.5pt" style:font-weight-asian="normal" style:font-size-complex="12pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:font-size="12pt" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="10.5pt" style:font-weight-asian="normal" style:font-size-complex="12pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P11" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties fo:font-size="12pt" style:font-size-complex="12pt"/>
</style:style>
<style:style style:name="P12" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties fo:font-size="12pt" style:font-size-complex="12pt"/>
</style:style>
<style:style style:name="P13" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" fo:keep-together="always" fo:keep-with-next="always"/>
<style:text-properties style:font-size-asian="10.5pt"/>
</style:style>
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" fo:keep-together="always" fo:keep-with-next="always"/>
<style:text-properties style:font-size-asian="10.5pt"/>
</style:style>
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" fo:keep-together="always" fo:keep-with-next="always"/>
<style:text-properties officeooo:paragraph-rsid="002aca3c" style:font-size-asian="10.5pt"/>
</style:style>
<style:style style:name="P16" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" fo:keep-together="always" fo:keep-with-next="always"/>
</style:style>
<style:style style:name="P17" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" fo:keep-together="always" fo:keep-with-next="always"/>
<style:text-properties fo:font-size="11pt" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
</style:style>
<style:style style:name="P18" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false" fo:keep-together="always" fo:keep-with-next="always"/>
<style:text-properties fo:font-size="11pt" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
</style:style>
<style:style style:name="P19" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" fo:keep-together="always" fo:keep-with-next="always"/>
<style:text-properties fo:font-size="11pt" style:text-underline-style="none" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
</style:style>
<style:style style:name="P20" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" fo:keep-together="always" fo:keep-with-next="always"/>
<style:text-properties style:text-underline-style="none"/>
</style:style>
<style:style style:name="P21" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" fo:keep-together="always" fo:keep-with-next="always"/>
<style:text-properties style:text-underline-style="none" officeooo:paragraph-rsid="00251ac8"/>
</style:style>
<style:style style:name="P22" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:text-underline-style="none"/>
</style:style>
<style:style style:name="P23" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" fo:keep-together="always" fo:keep-with-next="always"/>
<style:text-properties style:text-underline-style="none" officeooo:paragraph-rsid="00251ac8" fo:background-color="transparent"/>
</style:style>
<style:style style:name="P24" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:text-properties style:text-underline-style="none"/>
</style:style>
<style:style style:name="P25" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:break-before="page"/>
<style:text-properties style:text-underline-style="none"/>
</style:style>
<style:style style:name="P26" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:text-properties officeooo:paragraph-rsid="0037c304"/>
</style:style>
<style:style style:name="P27" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:text-properties officeooo:paragraph-rsid="003a045d"/>
</style:style>
<style:style style:name="P28" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:text-properties officeooo:rsid="003955ec" officeooo:paragraph-rsid="003a045d"/>
</style:style>
<style:style style:name="P29" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:text-properties officeooo:rsid="003955ec" officeooo:paragraph-rsid="003d390d"/>
</style:style>
<style:style style:name="P30" style:family="paragraph" style:parent-style-name="Heading_20_1">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color"/>
</style:style>
<style:style style:name="P31" style:family="paragraph" style:parent-style-name="Heading_20_1">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Serif1" fo:font-size="16pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="003d390d" officeooo:paragraph-rsid="003d390d" style:font-name-asian="DejaVu Sans" style:font-size-asian="16.1000003814697pt" style:font-weight-asian="bold" style:font-name-complex="DejaVu Sans" style:font-size-complex="16.1000003814697pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P32" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Serif" fo:font-weight="bold" style:font-size-asian="10.5pt" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="T1" style:family="text">
<style:text-properties officeooo:rsid="0037c304"/>
</style:style>
<style:style style:name="T2" style:family="text">
<style:text-properties officeooo:rsid="0039b016"/>
</style:style>
<style:style style:name="T3" style:family="text">
<style:text-properties officeooo:rsid="003d390d"/>
</style:style>
<style:style style:name="T4" style:family="text">
<style:text-properties officeooo:rsid="003e77e5"/>
</style:style>
<style:page-layout style:name="pm1">
<style:page-layout-properties fo:page-width="21.59cm" fo:page-height="27.94cm" style:num-format="1" style:print-orientation="portrait" fo:margin-top="2cm" fo:margin-bottom="2cm" fo:margin-left="2cm" fo:margin-right="2cm" style:writing-mode="lr-tb" style:layout-grid-color="#c0c0c0" style:layout-grid-lines="44" style:layout-grid-base-height="0.55cm" style:layout-grid-ruby-height="0cm" style:layout-grid-mode="none" style:layout-grid-ruby-below="false" style:layout-grid-print="true" style:layout-grid-display="true" style:footnote-max-height="0cm" loext:margin-gutter="0cm">
<style:footnote-sep style:width="0.018cm" style:distance-before-sep="0.101cm" style:distance-after-sep="0.101cm" style:line-style="none" style:adjustment="left" style:rel-width="25%" style:color="#000000"/>
</style:page-layout-properties>
<style:header-style>
<style:header-footer-properties fo:min-height="0cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-bottom="0.499cm"/>
</style:header-style>
<style:footer-style>
<style:header-footer-properties fo:min-height="0cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0.499cm"/>
</style:footer-style>
</style:page-layout>
<style:style style:name="dp1" style:family="drawing-page">
<style:drawing-page-properties draw:background-size="full"/>
</style:style>
</office:automatic-styles>
<office:master-styles>
<style:master-page style:name="Standard" style:page-layout-name="pm1" draw:style-name="dp1">
<style:header>
<table:table table:name="Table2" table:style-name="Table2">
<table:table-column table:style-name="Table2.A" table:number-columns-repeated="3"/>
<table:table-row>
<table:table-cell table:style-name="Table2.A1" office:value-type="string">
<text:p text:style-name="Header">Companies: <text:placeholder text:placeholder-type="text">&lt;&apos;, &apos;.join(c.rec_name for c in companies)&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Table2.A1" office:value-type="string">
<text:p text:style-name="P5">Statement</text:p>
</table:table-cell>
<table:table-cell table:style-name="Table2.A1" office:value-type="string">
<text:p text:style-name="P2">Print Date: <text:placeholder text:placeholder-type="text">&lt;format_date(datetime.date.today(), user.language)&gt;</text:placeholder><text:s/>at <text:placeholder text:placeholder-type="text">&lt;datetime.datetime.now().strftime(&apos;%H:%M:%S&apos;)&gt;</text:placeholder></text:p>
</table:table-cell>
</table:table-row>
</table:table>
</style:header>
<style:footer>
<table:table table:name="Table1" table:style-name="Table1">
<table:table-column table:style-name="Table1.A"/>
<table:table-column table:style-name="Table1.B"/>
<table:table-row>
<table:table-cell table:style-name="Table1.A1" office:value-type="string">
<text:p text:style-name="Footer">User: <text:placeholder text:placeholder-type="text">&lt;user.rec_name&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Table1.A1" office:value-type="string">
<text:p text:style-name="P3"><text:page-number text:select-page="current">2</text:page-number>/<text:page-count>2</text:page-count></text:p>
</table:table-cell>
</table:table-row>
</table:table>
</style:footer>
</style:master-page>
</office:master-styles>
<office:body>
<office:text text:use-soft-page-breaks="true">
<office:forms form:automatic-focus="false" form:apply-design-mode="false"/>
<text:sequence-decls>
<text:sequence-decl text:display-outline-level="0" text:name="Illustration"/>
<text:sequence-decl text:display-outline-level="0" text:name="Table"/>
<text:sequence-decl text:display-outline-level="0" text:name="Text"/>
<text:sequence-decl text:display-outline-level="0" text:name="Drawing"/>
<text:sequence-decl text:display-outline-level="0" text:name="Figure"/>
</text:sequence-decls>
<text:p text:style-name="P27"><text:placeholder text:placeholder-type="text">&lt;choose&gt;</text:placeholder></text:p>
<text:p text:style-name="P27"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;data.get(&apos;model_context&apos;) == &apos;account.consolidation.income_statement.context&apos;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P31">Income Statement</text:p>
<text:p text:style-name="P27"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;ctx.from_date or ctx.to_date&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P28">From Date: <text:placeholder text:placeholder-type="text">&lt;format_date(ctx.from_date, user.language) if ctx.from_date else &apos;&apos;&gt;</text:placeholder><text:s/>To <text:placeholder text:placeholder-type="text">&lt;format_date(ctx.to_date, user.language) if ctx.to_date else &apos;&apos;&gt;</text:placeholder></text:p>
<text:p text:style-name="P27"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p>
<text:p text:style-name="P27"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p>
<text:p text:style-name="P27"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;data.get(&apos;model_context&apos;) == &apos;account.consolidation.balance_sheet.context&apos;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P31">Balance Sheet</text:p>
<text:p text:style-name="P29">Date: <text:placeholder text:placeholder-type="text">&lt;format_date(ctx.date, user.language) if ctx.date else &apos;&apos;&gt;</text:placeholder></text:p>
<text:p text:style-name="P27"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p>
<text:p text:style-name="P27"><text:placeholder text:placeholder-type="text">&lt;otherwise&gt;</text:placeholder></text:p>
<text:p text:style-name="P31">Statement</text:p>
<text:p text:style-name="P27"><text:placeholder text:placeholder-type="text">&lt;/otherwise&gt;</text:placeholder></text:p>
<text:p text:style-name="P27"><text:placeholder text:placeholder-type="text">&lt;/choose&gt;</text:placeholder></text:p>
<table:table table:name="Types" table:style-name="Types">
<table:table-column table:style-name="Types.A"/>
<table:table-column table:style-name="Types.B"/>
<table:table-row>
<table:table-cell table:style-name="Types.A1" office:value-type="string">
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;consolidation, path in consolidations&quot;&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Types.A1" office:value-type="string">
<text:p text:style-name="P11"/>
</table:table-cell>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Types.A1" office:value-type="string">
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;choose&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;len(path) &lt;= 1&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="Heading_20_2"><text:placeholder text:placeholder-type="text">&lt;consolidation.name&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;len(path) == 2&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="Heading_20_3"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;_ in range(len(path) -1)&quot;&gt;</text:placeholder><text:s/><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder><text:placeholder text:placeholder-type="text">&lt;consolidation.name&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;otherwise&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;_ in range(len(path) -1)&quot;&gt;</text:placeholder><text:s/><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder><text:placeholder text:placeholder-type="text">&lt;consolidation.name&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;/otherwise&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:soft-page-break/><text:placeholder text:placeholder-type="text">&lt;/choose&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Types.B2" office:value-type="string">
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;format_currency(consolidation.amount, user.language, consolidation.currency) if consolidation.currency else &apos;&apos;&gt;</text:placeholder></text:p>
</table:table-cell>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Types.A1" office:value-type="string">
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Types.A1" office:value-type="string">
<text:p text:style-name="P11"/>
</table:table-cell>
</table:table-row>
</table:table>
<text:p text:style-name="P9"/>
</office:text>
</office:body>
</office:document>

View File

@@ -0,0 +1,8 @@
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
from trytond.model.exceptions import ValidationError
class InvoiceConsolidationCompanyError(ValidationError):
pass

View File

@@ -0,0 +1,227 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.account.type,consolidation:"
msgid "Consolidation"
msgstr ""
msgctxt "field:account.consolidation,amount:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,amount_cmp:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,assets:"
msgid "Assets"
msgstr ""
msgctxt "field:account.consolidation,children:"
msgid "Children"
msgstr ""
msgctxt "field:account.consolidation,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation,name:"
msgid "Name"
msgstr ""
msgctxt "field:account.consolidation,parent:"
msgid "Parent"
msgstr ""
msgctxt "field:account.consolidation,statement:"
msgid "Statement"
msgstr ""
msgctxt "field:account.consolidation,types:"
msgid "Types"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date_cmp:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date_cmp:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date:"
msgid "To Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date_cmp:"
msgid "To Date"
msgstr ""
msgctxt "field:account.invoice,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move.line,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "help:account.consolidation.balance_sheet.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "help:account.consolidation.income_statement.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "model:account.consolidation,string:"
msgid "Account Consolidation"
msgstr ""
msgctxt "model:account.consolidation.balance_sheet.context,string:"
msgid "Account Consolidation Balance Sheet Context"
msgstr ""
msgctxt "model:account.consolidation.income_statement.context,string:"
msgid "Account Consolidation Income Statement Context"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_balance_sheet_tree"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_income_statement_tree"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:report_consolidation_statement"
msgid "Statement"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_balance_sheet"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_income_statement"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "/"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Balance Sheet"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Companies:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "From Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Print Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "To"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "User:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "at"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Balance"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Income"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Off-Balance"
msgstr ""
msgctxt "view:account.consolidation:"
msgid "Comparison"
msgstr ""

View File

@@ -0,0 +1,227 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.account.type,consolidation:"
msgid "Consolidation"
msgstr "Consolidació"
msgctxt "field:account.consolidation,amount:"
msgid "Amount"
msgstr "Import"
msgctxt "field:account.consolidation,amount_cmp:"
msgid "Amount"
msgstr "Import"
msgctxt "field:account.consolidation,assets:"
msgid "Assets"
msgstr "Actius"
msgctxt "field:account.consolidation,children:"
msgid "Children"
msgstr "Fills"
msgctxt "field:account.consolidation,currency:"
msgid "Currency"
msgstr "Moneda"
msgctxt "field:account.consolidation,name:"
msgid "Name"
msgstr "Nom"
msgctxt "field:account.consolidation,parent:"
msgid "Parent"
msgstr "Pare"
msgctxt "field:account.consolidation,statement:"
msgid "Statement"
msgstr "Extracte"
msgctxt "field:account.consolidation,types:"
msgid "Types"
msgstr "Tipus"
msgctxt "field:account.consolidation.balance_sheet.context,companies:"
msgid "Companies"
msgstr "Empreses"
msgctxt "field:account.consolidation.balance_sheet.context,comparison:"
msgid "Comparison"
msgstr "Comparació"
msgctxt "field:account.consolidation.balance_sheet.context,currency:"
msgid "Currency"
msgstr "Moneda"
msgctxt "field:account.consolidation.balance_sheet.context,date:"
msgid "Date"
msgstr "Data"
msgctxt "field:account.consolidation.balance_sheet.context,date_cmp:"
msgid "Date"
msgstr "Data"
msgctxt "field:account.consolidation.balance_sheet.context,posted:"
msgid "Posted Moves"
msgstr "Assentaments comptabilitzats"
msgctxt "field:account.consolidation.income_statement.context,companies:"
msgid "Companies"
msgstr "Empreses"
msgctxt "field:account.consolidation.income_statement.context,comparison:"
msgid "Comparison"
msgstr "Comparació"
msgctxt "field:account.consolidation.income_statement.context,currency:"
msgid "Currency"
msgstr "Moneda"
msgctxt "field:account.consolidation.income_statement.context,from_date:"
msgid "From Date"
msgstr "Des de la data"
msgctxt "field:account.consolidation.income_statement.context,from_date_cmp:"
msgid "From Date"
msgstr "Des de la data"
msgctxt "field:account.consolidation.income_statement.context,posted:"
msgid "Posted Moves"
msgstr "Assentaments comptabilitzats"
msgctxt "field:account.consolidation.income_statement.context,to_date:"
msgid "To Date"
msgstr "Fins a la data"
msgctxt "field:account.consolidation.income_statement.context,to_date_cmp:"
msgid "To Date"
msgstr "Fins a la data"
msgctxt "field:account.invoice,consolidation_company:"
msgid "Consolidation Company"
msgstr "Empresa consolidació"
msgctxt "field:account.move,consolidation_company:"
msgid "Consolidation Company"
msgstr "Empresa consolidació"
msgctxt "field:account.move.line,consolidation_company:"
msgid "Consolidation Company"
msgstr "Empresa consolidació"
msgctxt "help:account.consolidation.balance_sheet.context,posted:"
msgid "Only include posted moves."
msgstr "Mostra només assentaments comptabilitzats."
msgctxt "help:account.consolidation.income_statement.context,posted:"
msgid "Only include posted moves."
msgstr "Mostra només assentaments comptabilitzats."
msgctxt "model:account.consolidation,string:"
msgid "Account Consolidation"
msgstr "Consolidació comptable"
msgctxt "model:account.consolidation.balance_sheet.context,string:"
msgid "Account Consolidation Balance Sheet Context"
msgstr "Context del balanç consolidat"
msgctxt "model:account.consolidation.income_statement.context,string:"
msgid "Account Consolidation Income Statement Context"
msgstr "Context del pérdues i guanys consolidat"
msgctxt "model:ir.action,name:act_consolidation_balance_sheet_tree"
msgid "Consolidated Balance Sheet"
msgstr "Balanç consolidat"
msgctxt "model:ir.action,name:act_consolidation_income_statement_tree"
msgid "Consolidated Income Statement"
msgstr "Pèrdues i guanys consolidat"
msgctxt "model:ir.action,name:act_consolidation_list"
msgid "Account Consolidations"
msgstr "Comptes consolidats"
msgctxt "model:ir.action,name:act_consolidation_tree"
msgid "Account Consolidations"
msgstr "Comptes consolidats"
msgctxt "model:ir.action,name:report_consolidation_statement"
msgid "Statement"
msgstr "Extracte"
msgctxt "model:ir.ui.menu,name:menu_consolidation_list"
msgid "Account Consolidations"
msgstr "Comptes consolidats"
msgctxt "model:ir.ui.menu,name:menu_consolidation_tree"
msgid "Account Consolidations"
msgstr "Comptes consolidats"
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_balance_sheet"
msgid "Consolidated Balance Sheet"
msgstr "Balanç consolidat"
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_income_statement"
msgid "Consolidated Income Statement"
msgstr "Pèrdues i guanys consolidat"
msgctxt "report:account.consolidation.statement:"
msgid "/"
msgstr "/"
msgctxt "report:account.consolidation.statement:"
msgid "Balance Sheet"
msgstr "Balanç de situació"
msgctxt "report:account.consolidation.statement:"
msgid "Companies:"
msgstr "Empreses:"
msgctxt "report:account.consolidation.statement:"
msgid "Date:"
msgstr "Data:"
msgctxt "report:account.consolidation.statement:"
msgid "From Date:"
msgstr "Des de la data:"
msgctxt "report:account.consolidation.statement:"
msgid "Income Statement"
msgstr "Pèrdues i guanys"
msgctxt "report:account.consolidation.statement:"
msgid "Print Date:"
msgstr "Data d'impressió:"
msgctxt "report:account.consolidation.statement:"
msgid "Statement"
msgstr "Extracte"
msgctxt "report:account.consolidation.statement:"
msgid "To"
msgstr "A"
msgctxt "report:account.consolidation.statement:"
msgid "User:"
msgstr "Usuari:"
msgctxt "report:account.consolidation.statement:"
msgid "at"
msgstr "a les"
msgctxt "selection:account.consolidation,statement:"
msgid "Balance"
msgstr "Balanç"
msgctxt "selection:account.consolidation,statement:"
msgid "Income"
msgstr "Pèrdues i guanys"
msgctxt "selection:account.consolidation,statement:"
msgid "Off-Balance"
msgstr "Fora de balanç"
msgctxt "view:account.consolidation:"
msgid "Comparison"
msgstr "Comparació"

View File

@@ -0,0 +1,227 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.account.type,consolidation:"
msgid "Consolidation"
msgstr ""
msgctxt "field:account.consolidation,amount:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,amount_cmp:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,assets:"
msgid "Assets"
msgstr ""
msgctxt "field:account.consolidation,children:"
msgid "Children"
msgstr ""
msgctxt "field:account.consolidation,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation,name:"
msgid "Name"
msgstr ""
msgctxt "field:account.consolidation,parent:"
msgid "Parent"
msgstr ""
msgctxt "field:account.consolidation,statement:"
msgid "Statement"
msgstr ""
msgctxt "field:account.consolidation,types:"
msgid "Types"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date_cmp:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date_cmp:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date:"
msgid "To Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date_cmp:"
msgid "To Date"
msgstr ""
msgctxt "field:account.invoice,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move.line,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "help:account.consolidation.balance_sheet.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "help:account.consolidation.income_statement.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "model:account.consolidation,string:"
msgid "Account Consolidation"
msgstr ""
msgctxt "model:account.consolidation.balance_sheet.context,string:"
msgid "Account Consolidation Balance Sheet Context"
msgstr ""
msgctxt "model:account.consolidation.income_statement.context,string:"
msgid "Account Consolidation Income Statement Context"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_balance_sheet_tree"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_income_statement_tree"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:report_consolidation_statement"
msgid "Statement"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_balance_sheet"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_income_statement"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "/"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Balance Sheet"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Companies:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "From Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Print Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "To"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "User:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "at"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Balance"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Income"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Off-Balance"
msgstr ""
msgctxt "view:account.consolidation:"
msgid "Comparison"
msgstr ""

View File

@@ -0,0 +1,227 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.account.type,consolidation:"
msgid "Consolidation"
msgstr "Konsolidierung"
msgctxt "field:account.consolidation,amount:"
msgid "Amount"
msgstr "Betrag"
msgctxt "field:account.consolidation,amount_cmp:"
msgid "Amount"
msgstr "Betrag"
msgctxt "field:account.consolidation,assets:"
msgid "Assets"
msgstr "Anlagen"
msgctxt "field:account.consolidation,children:"
msgid "Children"
msgstr "Untergeordnet (Konsolidierung)"
msgctxt "field:account.consolidation,currency:"
msgid "Currency"
msgstr "Währung"
msgctxt "field:account.consolidation,name:"
msgid "Name"
msgstr "Name"
msgctxt "field:account.consolidation,parent:"
msgid "Parent"
msgstr "Übergeordnet (Konsolidierung)"
msgctxt "field:account.consolidation,statement:"
msgid "Statement"
msgstr "Geschäftsbericht"
msgctxt "field:account.consolidation,types:"
msgid "Types"
msgstr "Typen"
msgctxt "field:account.consolidation.balance_sheet.context,companies:"
msgid "Companies"
msgstr "Unternehmen"
msgctxt "field:account.consolidation.balance_sheet.context,comparison:"
msgid "Comparison"
msgstr "Vergleich"
msgctxt "field:account.consolidation.balance_sheet.context,currency:"
msgid "Currency"
msgstr "Währung"
msgctxt "field:account.consolidation.balance_sheet.context,date:"
msgid "Date"
msgstr "Datum"
msgctxt "field:account.consolidation.balance_sheet.context,date_cmp:"
msgid "Date"
msgstr "Datum"
msgctxt "field:account.consolidation.balance_sheet.context,posted:"
msgid "Posted Moves"
msgstr "Nur festgeschriebene Buchungssätze"
msgctxt "field:account.consolidation.income_statement.context,companies:"
msgid "Companies"
msgstr "Unternehmen"
msgctxt "field:account.consolidation.income_statement.context,comparison:"
msgid "Comparison"
msgstr "Vergleich"
msgctxt "field:account.consolidation.income_statement.context,currency:"
msgid "Currency"
msgstr "Währung"
msgctxt "field:account.consolidation.income_statement.context,from_date:"
msgid "From Date"
msgstr "Von Datum"
msgctxt "field:account.consolidation.income_statement.context,from_date_cmp:"
msgid "From Date"
msgstr "Von Datum"
msgctxt "field:account.consolidation.income_statement.context,posted:"
msgid "Posted Moves"
msgstr "Nur festgeschriebene Buchungssätze"
msgctxt "field:account.consolidation.income_statement.context,to_date:"
msgid "To Date"
msgstr "Bis Datum"
msgctxt "field:account.consolidation.income_statement.context,to_date_cmp:"
msgid "To Date"
msgstr "Bis Datum"
msgctxt "field:account.invoice,consolidation_company:"
msgid "Consolidation Company"
msgstr "Mutterunternehmen"
msgctxt "field:account.move,consolidation_company:"
msgid "Consolidation Company"
msgstr "Mutterunternehmen"
msgctxt "field:account.move.line,consolidation_company:"
msgid "Consolidation Company"
msgstr "Mutterunternehmen"
msgctxt "help:account.consolidation.balance_sheet.context,posted:"
msgid "Only include posted moves."
msgstr "Nur festgeschriebene Buchungssätze berücksichtigen."
msgctxt "help:account.consolidation.income_statement.context,posted:"
msgid "Only include posted moves."
msgstr "Nur festgeschriebene Buchungssätze berücksichtigen."
msgctxt "model:account.consolidation,string:"
msgid "Account Consolidation"
msgstr "Buchhaltung Konsolidierung"
msgctxt "model:account.consolidation.balance_sheet.context,string:"
msgid "Account Consolidation Balance Sheet Context"
msgstr "Buchhaltung Konsolidierung Bilanz Kontext"
msgctxt "model:account.consolidation.income_statement.context,string:"
msgid "Account Consolidation Income Statement Context"
msgstr "Buchhaltung Konsolidierung Gewinn- und Verlustrechnung Kontext"
msgctxt "model:ir.action,name:act_consolidation_balance_sheet_tree"
msgid "Consolidated Balance Sheet"
msgstr "Konsolidierte Bilanz"
msgctxt "model:ir.action,name:act_consolidation_income_statement_tree"
msgid "Consolidated Income Statement"
msgstr "Konsolidierte Gewinn- und Verlustrechnung"
msgctxt "model:ir.action,name:act_consolidation_list"
msgid "Account Consolidations"
msgstr "Konsolidierungen"
msgctxt "model:ir.action,name:act_consolidation_tree"
msgid "Account Consolidations"
msgstr "Konsolidierungen"
msgctxt "model:ir.action,name:report_consolidation_statement"
msgid "Statement"
msgstr "Geschäftsbericht"
msgctxt "model:ir.ui.menu,name:menu_consolidation_list"
msgid "Account Consolidations"
msgstr "Konsolidierungen"
msgctxt "model:ir.ui.menu,name:menu_consolidation_tree"
msgid "Account Consolidations"
msgstr "Konsolidierungen"
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_balance_sheet"
msgid "Consolidated Balance Sheet"
msgstr "Konsolidierte Bilanz"
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_income_statement"
msgid "Consolidated Income Statement"
msgstr "Konsolidierte Gewinn- und Verlustrechnung"
msgctxt "report:account.consolidation.statement:"
msgid "/"
msgstr "/"
msgctxt "report:account.consolidation.statement:"
msgid "Balance Sheet"
msgstr "Bilanz"
msgctxt "report:account.consolidation.statement:"
msgid "Companies:"
msgstr "Unternehmen:"
msgctxt "report:account.consolidation.statement:"
msgid "Date:"
msgstr "Datum:"
msgctxt "report:account.consolidation.statement:"
msgid "From Date:"
msgstr "Von Datum:"
msgctxt "report:account.consolidation.statement:"
msgid "Income Statement"
msgstr "Gewinn- und Verlustrechnung (GuV)"
msgctxt "report:account.consolidation.statement:"
msgid "Print Date:"
msgstr "Druckdatum:"
msgctxt "report:account.consolidation.statement:"
msgid "Statement"
msgstr "Geschäftsbericht"
msgctxt "report:account.consolidation.statement:"
msgid "To"
msgstr "Bis"
msgctxt "report:account.consolidation.statement:"
msgid "User:"
msgstr "Benutzer:"
msgctxt "report:account.consolidation.statement:"
msgid "at"
msgstr "um"
msgctxt "selection:account.consolidation,statement:"
msgid "Balance"
msgstr "Bilanz"
msgctxt "selection:account.consolidation,statement:"
msgid "Income"
msgstr "Gewinn- und Verlustrechnung (GuV)"
msgctxt "selection:account.consolidation,statement:"
msgid "Off-Balance"
msgstr "Bilanzneutrale Positionen"
msgctxt "view:account.consolidation:"
msgid "Comparison"
msgstr "Vergleich"

View File

@@ -0,0 +1,227 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.account.type,consolidation:"
msgid "Consolidation"
msgstr "Consolidación"
msgctxt "field:account.consolidation,amount:"
msgid "Amount"
msgstr "Importe"
msgctxt "field:account.consolidation,amount_cmp:"
msgid "Amount"
msgstr "Importe"
msgctxt "field:account.consolidation,assets:"
msgid "Assets"
msgstr "Activos"
msgctxt "field:account.consolidation,children:"
msgid "Children"
msgstr "Hijos"
msgctxt "field:account.consolidation,currency:"
msgid "Currency"
msgstr "Moneda"
msgctxt "field:account.consolidation,name:"
msgid "Name"
msgstr "Nombre"
msgctxt "field:account.consolidation,parent:"
msgid "Parent"
msgstr "Padre"
msgctxt "field:account.consolidation,statement:"
msgid "Statement"
msgstr "Extracto"
msgctxt "field:account.consolidation,types:"
msgid "Types"
msgstr "Tipos"
msgctxt "field:account.consolidation.balance_sheet.context,companies:"
msgid "Companies"
msgstr "Empresas"
msgctxt "field:account.consolidation.balance_sheet.context,comparison:"
msgid "Comparison"
msgstr "Comparación"
msgctxt "field:account.consolidation.balance_sheet.context,currency:"
msgid "Currency"
msgstr "Moneda"
msgctxt "field:account.consolidation.balance_sheet.context,date:"
msgid "Date"
msgstr "Fecha"
msgctxt "field:account.consolidation.balance_sheet.context,date_cmp:"
msgid "Date"
msgstr "Fecha"
msgctxt "field:account.consolidation.balance_sheet.context,posted:"
msgid "Posted Moves"
msgstr "Asientos contabilizados"
msgctxt "field:account.consolidation.income_statement.context,companies:"
msgid "Companies"
msgstr "Empresas"
msgctxt "field:account.consolidation.income_statement.context,comparison:"
msgid "Comparison"
msgstr "Comparación"
msgctxt "field:account.consolidation.income_statement.context,currency:"
msgid "Currency"
msgstr "Moneda"
msgctxt "field:account.consolidation.income_statement.context,from_date:"
msgid "From Date"
msgstr "Desde la fecha"
msgctxt "field:account.consolidation.income_statement.context,from_date_cmp:"
msgid "From Date"
msgstr "Desde la fecha"
msgctxt "field:account.consolidation.income_statement.context,posted:"
msgid "Posted Moves"
msgstr "Asientos contabilizados"
msgctxt "field:account.consolidation.income_statement.context,to_date:"
msgid "To Date"
msgstr "Hasta la fecha"
msgctxt "field:account.consolidation.income_statement.context,to_date_cmp:"
msgid "To Date"
msgstr "Hasta la fecha"
msgctxt "field:account.invoice,consolidation_company:"
msgid "Consolidation Company"
msgstr "Empresa consolidación"
msgctxt "field:account.move,consolidation_company:"
msgid "Consolidation Company"
msgstr "Empresa consolidación"
msgctxt "field:account.move.line,consolidation_company:"
msgid "Consolidation Company"
msgstr "Empresa consolidación"
msgctxt "help:account.consolidation.balance_sheet.context,posted:"
msgid "Only include posted moves."
msgstr "Incluir solo asientos contabilizados."
msgctxt "help:account.consolidation.income_statement.context,posted:"
msgid "Only include posted moves."
msgstr "Incluir solo asientos contabilizados."
msgctxt "model:account.consolidation,string:"
msgid "Account Consolidation"
msgstr "Consolidación contable"
msgctxt "model:account.consolidation.balance_sheet.context,string:"
msgid "Account Consolidation Balance Sheet Context"
msgstr "Contexto del balance consolidado"
msgctxt "model:account.consolidation.income_statement.context,string:"
msgid "Account Consolidation Income Statement Context"
msgstr "Contexto del pérdidas y ganancias consolidado"
msgctxt "model:ir.action,name:act_consolidation_balance_sheet_tree"
msgid "Consolidated Balance Sheet"
msgstr "Balance consolidado"
msgctxt "model:ir.action,name:act_consolidation_income_statement_tree"
msgid "Consolidated Income Statement"
msgstr "Pérdidas y ganancias consolidado"
msgctxt "model:ir.action,name:act_consolidation_list"
msgid "Account Consolidations"
msgstr "Cuentas consolidadas"
msgctxt "model:ir.action,name:act_consolidation_tree"
msgid "Account Consolidations"
msgstr "Cuentas consolidadas"
msgctxt "model:ir.action,name:report_consolidation_statement"
msgid "Statement"
msgstr "Extracto"
msgctxt "model:ir.ui.menu,name:menu_consolidation_list"
msgid "Account Consolidations"
msgstr "Cuentas consolidadas"
msgctxt "model:ir.ui.menu,name:menu_consolidation_tree"
msgid "Account Consolidations"
msgstr "Cuentas consolidadas"
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_balance_sheet"
msgid "Consolidated Balance Sheet"
msgstr "Balance consolidado"
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_income_statement"
msgid "Consolidated Income Statement"
msgstr "Pérdidas y ganancias consolidado"
msgctxt "report:account.consolidation.statement:"
msgid "/"
msgstr "/"
msgctxt "report:account.consolidation.statement:"
msgid "Balance Sheet"
msgstr "Balance de situación"
msgctxt "report:account.consolidation.statement:"
msgid "Companies:"
msgstr "Empresas:"
msgctxt "report:account.consolidation.statement:"
msgid "Date:"
msgstr "Fecha:"
msgctxt "report:account.consolidation.statement:"
msgid "From Date:"
msgstr "Desde la fecha:"
msgctxt "report:account.consolidation.statement:"
msgid "Income Statement"
msgstr "Pérdidas y ganancias"
msgctxt "report:account.consolidation.statement:"
msgid "Print Date:"
msgstr "Fecha impresión:"
msgctxt "report:account.consolidation.statement:"
msgid "Statement"
msgstr "Extracto"
msgctxt "report:account.consolidation.statement:"
msgid "To"
msgstr "A"
msgctxt "report:account.consolidation.statement:"
msgid "User:"
msgstr "Usuario:"
msgctxt "report:account.consolidation.statement:"
msgid "at"
msgstr "a las"
msgctxt "selection:account.consolidation,statement:"
msgid "Balance"
msgstr "Balance"
msgctxt "selection:account.consolidation,statement:"
msgid "Income"
msgstr "Pérdidas y ganancias"
msgctxt "selection:account.consolidation,statement:"
msgid "Off-Balance"
msgstr "Fuera balance"
msgctxt "view:account.consolidation:"
msgid "Comparison"
msgstr "Comparación"

View File

@@ -0,0 +1,227 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.account.type,consolidation:"
msgid "Consolidation"
msgstr ""
msgctxt "field:account.consolidation,amount:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,amount_cmp:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,assets:"
msgid "Assets"
msgstr ""
msgctxt "field:account.consolidation,children:"
msgid "Children"
msgstr ""
msgctxt "field:account.consolidation,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation,name:"
msgid "Name"
msgstr ""
msgctxt "field:account.consolidation,parent:"
msgid "Parent"
msgstr ""
msgctxt "field:account.consolidation,statement:"
msgid "Statement"
msgstr ""
msgctxt "field:account.consolidation,types:"
msgid "Types"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date_cmp:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date_cmp:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date:"
msgid "To Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date_cmp:"
msgid "To Date"
msgstr ""
msgctxt "field:account.invoice,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move.line,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "help:account.consolidation.balance_sheet.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "help:account.consolidation.income_statement.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "model:account.consolidation,string:"
msgid "Account Consolidation"
msgstr ""
msgctxt "model:account.consolidation.balance_sheet.context,string:"
msgid "Account Consolidation Balance Sheet Context"
msgstr ""
msgctxt "model:account.consolidation.income_statement.context,string:"
msgid "Account Consolidation Income Statement Context"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_balance_sheet_tree"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_income_statement_tree"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:report_consolidation_statement"
msgid "Statement"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_balance_sheet"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_income_statement"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "/"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Balance Sheet"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Companies:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "From Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Print Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "To"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "User:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "at"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Balance"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Income"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Off-Balance"
msgstr ""
msgctxt "view:account.consolidation:"
msgid "Comparison"
msgstr ""

View File

@@ -0,0 +1,227 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.account.type,consolidation:"
msgid "Consolidation"
msgstr ""
msgctxt "field:account.consolidation,amount:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,amount_cmp:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,assets:"
msgid "Assets"
msgstr ""
msgctxt "field:account.consolidation,children:"
msgid "Children"
msgstr ""
msgctxt "field:account.consolidation,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation,name:"
msgid "Name"
msgstr ""
msgctxt "field:account.consolidation,parent:"
msgid "Parent"
msgstr ""
msgctxt "field:account.consolidation,statement:"
msgid "Statement"
msgstr ""
msgctxt "field:account.consolidation,types:"
msgid "Types"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date_cmp:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date_cmp:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date:"
msgid "To Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date_cmp:"
msgid "To Date"
msgstr ""
msgctxt "field:account.invoice,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move.line,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "help:account.consolidation.balance_sheet.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "help:account.consolidation.income_statement.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "model:account.consolidation,string:"
msgid "Account Consolidation"
msgstr ""
msgctxt "model:account.consolidation.balance_sheet.context,string:"
msgid "Account Consolidation Balance Sheet Context"
msgstr ""
msgctxt "model:account.consolidation.income_statement.context,string:"
msgid "Account Consolidation Income Statement Context"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_balance_sheet_tree"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_income_statement_tree"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:report_consolidation_statement"
msgid "Statement"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_balance_sheet"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_income_statement"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "/"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Balance Sheet"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Companies:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "From Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Print Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "To"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "User:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "at"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Balance"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Income"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Off-Balance"
msgstr ""
msgctxt "view:account.consolidation:"
msgid "Comparison"
msgstr ""

View File

@@ -0,0 +1,227 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.account.type,consolidation:"
msgid "Consolidation"
msgstr ""
msgctxt "field:account.consolidation,amount:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,amount_cmp:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,assets:"
msgid "Assets"
msgstr ""
msgctxt "field:account.consolidation,children:"
msgid "Children"
msgstr ""
msgctxt "field:account.consolidation,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation,name:"
msgid "Name"
msgstr ""
msgctxt "field:account.consolidation,parent:"
msgid "Parent"
msgstr ""
msgctxt "field:account.consolidation,statement:"
msgid "Statement"
msgstr ""
msgctxt "field:account.consolidation,types:"
msgid "Types"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date_cmp:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date_cmp:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date:"
msgid "To Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date_cmp:"
msgid "To Date"
msgstr ""
msgctxt "field:account.invoice,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move.line,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "help:account.consolidation.balance_sheet.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "help:account.consolidation.income_statement.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "model:account.consolidation,string:"
msgid "Account Consolidation"
msgstr ""
msgctxt "model:account.consolidation.balance_sheet.context,string:"
msgid "Account Consolidation Balance Sheet Context"
msgstr ""
msgctxt "model:account.consolidation.income_statement.context,string:"
msgid "Account Consolidation Income Statement Context"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_balance_sheet_tree"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_income_statement_tree"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:report_consolidation_statement"
msgid "Statement"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_balance_sheet"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_income_statement"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "/"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Balance Sheet"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Companies:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "From Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Print Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "To"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "User:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "at"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Balance"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Income"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Off-Balance"
msgstr ""
msgctxt "view:account.consolidation:"
msgid "Comparison"
msgstr ""

View File

@@ -0,0 +1,227 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.account.type,consolidation:"
msgid "Consolidation"
msgstr ""
msgctxt "field:account.consolidation,amount:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,amount_cmp:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,assets:"
msgid "Assets"
msgstr ""
msgctxt "field:account.consolidation,children:"
msgid "Children"
msgstr ""
msgctxt "field:account.consolidation,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation,name:"
msgid "Name"
msgstr ""
msgctxt "field:account.consolidation,parent:"
msgid "Parent"
msgstr ""
msgctxt "field:account.consolidation,statement:"
msgid "Statement"
msgstr ""
msgctxt "field:account.consolidation,types:"
msgid "Types"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date_cmp:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date_cmp:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date:"
msgid "To Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date_cmp:"
msgid "To Date"
msgstr ""
msgctxt "field:account.invoice,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move.line,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "help:account.consolidation.balance_sheet.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "help:account.consolidation.income_statement.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "model:account.consolidation,string:"
msgid "Account Consolidation"
msgstr ""
msgctxt "model:account.consolidation.balance_sheet.context,string:"
msgid "Account Consolidation Balance Sheet Context"
msgstr ""
msgctxt "model:account.consolidation.income_statement.context,string:"
msgid "Account Consolidation Income Statement Context"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_balance_sheet_tree"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_income_statement_tree"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:report_consolidation_statement"
msgid "Statement"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_balance_sheet"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_income_statement"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "/"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Balance Sheet"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Companies:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "From Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Print Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "To"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "User:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "at"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Balance"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Income"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Off-Balance"
msgstr ""
msgctxt "view:account.consolidation:"
msgid "Comparison"
msgstr ""

View File

@@ -0,0 +1,227 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.account.type,consolidation:"
msgid "Consolidation"
msgstr "Consolidation"
msgctxt "field:account.consolidation,amount:"
msgid "Amount"
msgstr "Montant"
msgctxt "field:account.consolidation,amount_cmp:"
msgid "Amount"
msgstr "Montant"
msgctxt "field:account.consolidation,assets:"
msgid "Assets"
msgstr "Actifs"
msgctxt "field:account.consolidation,children:"
msgid "Children"
msgstr "Enfants"
msgctxt "field:account.consolidation,currency:"
msgid "Currency"
msgstr "Devise"
msgctxt "field:account.consolidation,name:"
msgid "Name"
msgstr "Nom"
msgctxt "field:account.consolidation,parent:"
msgid "Parent"
msgstr "Parent"
msgctxt "field:account.consolidation,statement:"
msgid "Statement"
msgstr "Raport"
msgctxt "field:account.consolidation,types:"
msgid "Types"
msgstr "Types"
msgctxt "field:account.consolidation.balance_sheet.context,companies:"
msgid "Companies"
msgstr "Sociétés"
msgctxt "field:account.consolidation.balance_sheet.context,comparison:"
msgid "Comparison"
msgstr "Comparaison"
msgctxt "field:account.consolidation.balance_sheet.context,currency:"
msgid "Currency"
msgstr "Devise"
msgctxt "field:account.consolidation.balance_sheet.context,date:"
msgid "Date"
msgstr "Date"
msgctxt "field:account.consolidation.balance_sheet.context,date_cmp:"
msgid "Date"
msgstr "Date"
msgctxt "field:account.consolidation.balance_sheet.context,posted:"
msgid "Posted Moves"
msgstr "Mouvements comptabilisés"
msgctxt "field:account.consolidation.income_statement.context,companies:"
msgid "Companies"
msgstr "Sociétés"
msgctxt "field:account.consolidation.income_statement.context,comparison:"
msgid "Comparison"
msgstr "Comparaison"
msgctxt "field:account.consolidation.income_statement.context,currency:"
msgid "Currency"
msgstr "Devise"
msgctxt "field:account.consolidation.income_statement.context,from_date:"
msgid "From Date"
msgstr "Date de début"
msgctxt "field:account.consolidation.income_statement.context,from_date_cmp:"
msgid "From Date"
msgstr "Date de début"
msgctxt "field:account.consolidation.income_statement.context,posted:"
msgid "Posted Moves"
msgstr "Mouvements comptabilisés"
msgctxt "field:account.consolidation.income_statement.context,to_date:"
msgid "To Date"
msgstr "Date de fin"
msgctxt "field:account.consolidation.income_statement.context,to_date_cmp:"
msgid "To Date"
msgstr "Date de fin"
msgctxt "field:account.invoice,consolidation_company:"
msgid "Consolidation Company"
msgstr "Société de consolidation"
msgctxt "field:account.move,consolidation_company:"
msgid "Consolidation Company"
msgstr "Société de consolidation"
msgctxt "field:account.move.line,consolidation_company:"
msgid "Consolidation Company"
msgstr "Société de consolidation"
msgctxt "help:account.consolidation.balance_sheet.context,posted:"
msgid "Only include posted moves."
msgstr "Inclure seulement les mouvements comptabilisés."
msgctxt "help:account.consolidation.income_statement.context,posted:"
msgid "Only include posted moves."
msgstr "Inclure seulement les mouvements comptabilisés."
msgctxt "model:account.consolidation,string:"
msgid "Account Consolidation"
msgstr "Consolidation de comptes"
msgctxt "model:account.consolidation.balance_sheet.context,string:"
msgid "Account Consolidation Balance Sheet Context"
msgstr "Contexte de bilan de consolidation de comptes"
msgctxt "model:account.consolidation.income_statement.context,string:"
msgid "Account Consolidation Income Statement Context"
msgstr "Contexte de compte de résultat de consolidation des comptes"
msgctxt "model:ir.action,name:act_consolidation_balance_sheet_tree"
msgid "Consolidated Balance Sheet"
msgstr "Bilan consolidé"
msgctxt "model:ir.action,name:act_consolidation_income_statement_tree"
msgid "Consolidated Income Statement"
msgstr "Compte de résultat consolidé"
msgctxt "model:ir.action,name:act_consolidation_list"
msgid "Account Consolidations"
msgstr "Consolidations de compte"
msgctxt "model:ir.action,name:act_consolidation_tree"
msgid "Account Consolidations"
msgstr "Consolidations de compte"
msgctxt "model:ir.action,name:report_consolidation_statement"
msgid "Statement"
msgstr "Raport"
msgctxt "model:ir.ui.menu,name:menu_consolidation_list"
msgid "Account Consolidations"
msgstr "Consolidations de compte"
msgctxt "model:ir.ui.menu,name:menu_consolidation_tree"
msgid "Account Consolidations"
msgstr "Consolidations de compte"
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_balance_sheet"
msgid "Consolidated Balance Sheet"
msgstr "Bilan consolidé"
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_income_statement"
msgid "Consolidated Income Statement"
msgstr "Compte de résultat consolidé"
msgctxt "report:account.consolidation.statement:"
msgid "/"
msgstr "/"
msgctxt "report:account.consolidation.statement:"
msgid "Balance Sheet"
msgstr "Bilan"
msgctxt "report:account.consolidation.statement:"
msgid "Companies:"
msgstr "Sociétés :"
msgctxt "report:account.consolidation.statement:"
msgid "Date:"
msgstr "Date :"
msgctxt "report:account.consolidation.statement:"
msgid "From Date:"
msgstr "Date de début :"
msgctxt "report:account.consolidation.statement:"
msgid "Income Statement"
msgstr "Compte de résultat"
msgctxt "report:account.consolidation.statement:"
msgid "Print Date:"
msgstr "Date d'impression :"
msgctxt "report:account.consolidation.statement:"
msgid "Statement"
msgstr "Raport"
msgctxt "report:account.consolidation.statement:"
msgid "To"
msgstr "à"
msgctxt "report:account.consolidation.statement:"
msgid "User:"
msgstr "Utilisateur :"
msgctxt "report:account.consolidation.statement:"
msgid "at"
msgstr "à"
msgctxt "selection:account.consolidation,statement:"
msgid "Balance"
msgstr "Balance"
msgctxt "selection:account.consolidation,statement:"
msgid "Income"
msgstr "Résultat"
msgctxt "selection:account.consolidation,statement:"
msgid "Off-Balance"
msgstr "Hors-balance"
msgctxt "view:account.consolidation:"
msgid "Comparison"
msgstr "Comparaison"

View File

@@ -0,0 +1,227 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.account.type,consolidation:"
msgid "Consolidation"
msgstr ""
msgctxt "field:account.consolidation,amount:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,amount_cmp:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,assets:"
msgid "Assets"
msgstr ""
msgctxt "field:account.consolidation,children:"
msgid "Children"
msgstr ""
msgctxt "field:account.consolidation,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation,name:"
msgid "Name"
msgstr ""
msgctxt "field:account.consolidation,parent:"
msgid "Parent"
msgstr ""
msgctxt "field:account.consolidation,statement:"
msgid "Statement"
msgstr ""
msgctxt "field:account.consolidation,types:"
msgid "Types"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date_cmp:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date_cmp:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date:"
msgid "To Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date_cmp:"
msgid "To Date"
msgstr ""
msgctxt "field:account.invoice,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move.line,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "help:account.consolidation.balance_sheet.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "help:account.consolidation.income_statement.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "model:account.consolidation,string:"
msgid "Account Consolidation"
msgstr ""
msgctxt "model:account.consolidation.balance_sheet.context,string:"
msgid "Account Consolidation Balance Sheet Context"
msgstr ""
msgctxt "model:account.consolidation.income_statement.context,string:"
msgid "Account Consolidation Income Statement Context"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_balance_sheet_tree"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_income_statement_tree"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:report_consolidation_statement"
msgid "Statement"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_balance_sheet"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_income_statement"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "/"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Balance Sheet"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Companies:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "From Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Print Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "To"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "User:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "at"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Balance"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Income"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Off-Balance"
msgstr ""
msgctxt "view:account.consolidation:"
msgid "Comparison"
msgstr ""

View File

@@ -0,0 +1,227 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.account.type,consolidation:"
msgid "Consolidation"
msgstr ""
msgctxt "field:account.consolidation,amount:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,amount_cmp:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,assets:"
msgid "Assets"
msgstr ""
msgctxt "field:account.consolidation,children:"
msgid "Children"
msgstr ""
msgctxt "field:account.consolidation,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation,name:"
msgid "Name"
msgstr ""
msgctxt "field:account.consolidation,parent:"
msgid "Parent"
msgstr ""
msgctxt "field:account.consolidation,statement:"
msgid "Statement"
msgstr ""
msgctxt "field:account.consolidation,types:"
msgid "Types"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date_cmp:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date_cmp:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date:"
msgid "To Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date_cmp:"
msgid "To Date"
msgstr ""
msgctxt "field:account.invoice,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move.line,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "help:account.consolidation.balance_sheet.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "help:account.consolidation.income_statement.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "model:account.consolidation,string:"
msgid "Account Consolidation"
msgstr ""
msgctxt "model:account.consolidation.balance_sheet.context,string:"
msgid "Account Consolidation Balance Sheet Context"
msgstr ""
msgctxt "model:account.consolidation.income_statement.context,string:"
msgid "Account Consolidation Income Statement Context"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_balance_sheet_tree"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_income_statement_tree"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:report_consolidation_statement"
msgid "Statement"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_balance_sheet"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_income_statement"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "/"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Balance Sheet"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Companies:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "From Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Print Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "To"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "User:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "at"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Balance"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Income"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Off-Balance"
msgstr ""
msgctxt "view:account.consolidation:"
msgid "Comparison"
msgstr ""

View File

@@ -0,0 +1,227 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.account.type,consolidation:"
msgid "Consolidation"
msgstr ""
msgctxt "field:account.consolidation,amount:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,amount_cmp:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,assets:"
msgid "Assets"
msgstr ""
msgctxt "field:account.consolidation,children:"
msgid "Children"
msgstr ""
msgctxt "field:account.consolidation,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation,name:"
msgid "Name"
msgstr ""
msgctxt "field:account.consolidation,parent:"
msgid "Parent"
msgstr ""
msgctxt "field:account.consolidation,statement:"
msgid "Statement"
msgstr ""
msgctxt "field:account.consolidation,types:"
msgid "Types"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date_cmp:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date_cmp:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date:"
msgid "To Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date_cmp:"
msgid "To Date"
msgstr ""
msgctxt "field:account.invoice,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move.line,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "help:account.consolidation.balance_sheet.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "help:account.consolidation.income_statement.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "model:account.consolidation,string:"
msgid "Account Consolidation"
msgstr ""
msgctxt "model:account.consolidation.balance_sheet.context,string:"
msgid "Account Consolidation Balance Sheet Context"
msgstr ""
msgctxt "model:account.consolidation.income_statement.context,string:"
msgid "Account Consolidation Income Statement Context"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_balance_sheet_tree"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_income_statement_tree"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:report_consolidation_statement"
msgid "Statement"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_balance_sheet"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_income_statement"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "/"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Balance Sheet"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Companies:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "From Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Print Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "To"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "User:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "at"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Balance"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Income"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Off-Balance"
msgstr ""
msgctxt "view:account.consolidation:"
msgid "Comparison"
msgstr ""

View File

@@ -0,0 +1,227 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.account.type,consolidation:"
msgid "Consolidation"
msgstr ""
msgctxt "field:account.consolidation,amount:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,amount_cmp:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,assets:"
msgid "Assets"
msgstr ""
msgctxt "field:account.consolidation,children:"
msgid "Children"
msgstr ""
msgctxt "field:account.consolidation,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation,name:"
msgid "Name"
msgstr ""
msgctxt "field:account.consolidation,parent:"
msgid "Parent"
msgstr ""
msgctxt "field:account.consolidation,statement:"
msgid "Statement"
msgstr ""
msgctxt "field:account.consolidation,types:"
msgid "Types"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date_cmp:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date_cmp:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date:"
msgid "To Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date_cmp:"
msgid "To Date"
msgstr ""
msgctxt "field:account.invoice,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move.line,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "help:account.consolidation.balance_sheet.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "help:account.consolidation.income_statement.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "model:account.consolidation,string:"
msgid "Account Consolidation"
msgstr ""
msgctxt "model:account.consolidation.balance_sheet.context,string:"
msgid "Account Consolidation Balance Sheet Context"
msgstr ""
msgctxt "model:account.consolidation.income_statement.context,string:"
msgid "Account Consolidation Income Statement Context"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_balance_sheet_tree"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_income_statement_tree"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:report_consolidation_statement"
msgid "Statement"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_balance_sheet"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_income_statement"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "/"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Balance Sheet"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Companies:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "From Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Print Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "To"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "User:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "at"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Balance"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Income"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Off-Balance"
msgstr ""
msgctxt "view:account.consolidation:"
msgid "Comparison"
msgstr ""

View File

@@ -0,0 +1,227 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.account.type,consolidation:"
msgid "Consolidation"
msgstr ""
msgctxt "field:account.consolidation,amount:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,amount_cmp:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,assets:"
msgid "Assets"
msgstr ""
msgctxt "field:account.consolidation,children:"
msgid "Children"
msgstr ""
msgctxt "field:account.consolidation,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation,name:"
msgid "Name"
msgstr ""
msgctxt "field:account.consolidation,parent:"
msgid "Parent"
msgstr ""
msgctxt "field:account.consolidation,statement:"
msgid "Statement"
msgstr ""
msgctxt "field:account.consolidation,types:"
msgid "Types"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date_cmp:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date_cmp:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date:"
msgid "To Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date_cmp:"
msgid "To Date"
msgstr ""
msgctxt "field:account.invoice,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move.line,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "help:account.consolidation.balance_sheet.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "help:account.consolidation.income_statement.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "model:account.consolidation,string:"
msgid "Account Consolidation"
msgstr ""
msgctxt "model:account.consolidation.balance_sheet.context,string:"
msgid "Account Consolidation Balance Sheet Context"
msgstr ""
msgctxt "model:account.consolidation.income_statement.context,string:"
msgid "Account Consolidation Income Statement Context"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_balance_sheet_tree"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_income_statement_tree"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:report_consolidation_statement"
msgid "Statement"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_balance_sheet"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_income_statement"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "/"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Balance Sheet"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Companies:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "From Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Print Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "To"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "User:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "at"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Balance"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Income"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Off-Balance"
msgstr ""
msgctxt "view:account.consolidation:"
msgid "Comparison"
msgstr ""

View File

@@ -0,0 +1,227 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.account.type,consolidation:"
msgid "Consolidation"
msgstr "Consolidatie"
msgctxt "field:account.consolidation,amount:"
msgid "Amount"
msgstr "Bedrag"
msgctxt "field:account.consolidation,amount_cmp:"
msgid "Amount"
msgstr "Bedrag"
msgctxt "field:account.consolidation,assets:"
msgid "Assets"
msgstr "Activa"
msgctxt "field:account.consolidation,children:"
msgid "Children"
msgstr "Onderliggend"
msgctxt "field:account.consolidation,currency:"
msgid "Currency"
msgstr "Valuta"
msgctxt "field:account.consolidation,name:"
msgid "Name"
msgstr "Naam"
msgctxt "field:account.consolidation,parent:"
msgid "Parent"
msgstr "Bovenliggend"
msgctxt "field:account.consolidation,statement:"
msgid "Statement"
msgstr "Afschrift"
msgctxt "field:account.consolidation,types:"
msgid "Types"
msgstr "Soorten"
msgctxt "field:account.consolidation.balance_sheet.context,companies:"
msgid "Companies"
msgstr "Bedrijven"
msgctxt "field:account.consolidation.balance_sheet.context,comparison:"
msgid "Comparison"
msgstr "Vergelijking"
msgctxt "field:account.consolidation.balance_sheet.context,currency:"
msgid "Currency"
msgstr "Valuta"
msgctxt "field:account.consolidation.balance_sheet.context,date:"
msgid "Date"
msgstr "Datum"
msgctxt "field:account.consolidation.balance_sheet.context,date_cmp:"
msgid "Date"
msgstr "Datum"
msgctxt "field:account.consolidation.balance_sheet.context,posted:"
msgid "Posted Moves"
msgstr "Geboekte boekingen"
msgctxt "field:account.consolidation.income_statement.context,companies:"
msgid "Companies"
msgstr "Bedrijven"
msgctxt "field:account.consolidation.income_statement.context,comparison:"
msgid "Comparison"
msgstr "Vergelijking"
msgctxt "field:account.consolidation.income_statement.context,currency:"
msgid "Currency"
msgstr "Valuta"
msgctxt "field:account.consolidation.income_statement.context,from_date:"
msgid "From Date"
msgstr "Vanaf datum"
msgctxt "field:account.consolidation.income_statement.context,from_date_cmp:"
msgid "From Date"
msgstr "Vanaf datum"
msgctxt "field:account.consolidation.income_statement.context,posted:"
msgid "Posted Moves"
msgstr "Geboekte boekingen"
msgctxt "field:account.consolidation.income_statement.context,to_date:"
msgid "To Date"
msgstr "Tot datum"
msgctxt "field:account.consolidation.income_statement.context,to_date_cmp:"
msgid "To Date"
msgstr "Tot datum"
msgctxt "field:account.invoice,consolidation_company:"
msgid "Consolidation Company"
msgstr "Consolidatie Bedrijf"
msgctxt "field:account.move,consolidation_company:"
msgid "Consolidation Company"
msgstr "Consolidatie Bedrijf"
msgctxt "field:account.move.line,consolidation_company:"
msgid "Consolidation Company"
msgstr "Consolidatie Bedrijf"
msgctxt "help:account.consolidation.balance_sheet.context,posted:"
msgid "Only include posted moves."
msgstr "Alleen bevestigde boekingen weergeven."
msgctxt "help:account.consolidation.income_statement.context,posted:"
msgid "Only include posted moves."
msgstr "Alleen bevestigde boekingen weergeven."
msgctxt "model:account.consolidation,string:"
msgid "Account Consolidation"
msgstr "Consolidatie rekeningen"
msgctxt "model:account.consolidation.balance_sheet.context,string:"
msgid "Account Consolidation Balance Sheet Context"
msgstr "Geconsolideerde balans context"
msgctxt "model:account.consolidation.income_statement.context,string:"
msgid "Account Consolidation Income Statement Context"
msgstr "Geconsolideerde resultatenrekening context"
msgctxt "model:ir.action,name:act_consolidation_balance_sheet_tree"
msgid "Consolidated Balance Sheet"
msgstr "Geconsolideerde Balans"
msgctxt "model:ir.action,name:act_consolidation_income_statement_tree"
msgid "Consolidated Income Statement"
msgstr "Geconsolideerde Resultatenrekening"
msgctxt "model:ir.action,name:act_consolidation_list"
msgid "Account Consolidations"
msgstr "Geconsolideerde Rekeningen"
msgctxt "model:ir.action,name:act_consolidation_tree"
msgid "Account Consolidations"
msgstr "Geconsolideerde Rekeningen"
msgctxt "model:ir.action,name:report_consolidation_statement"
msgid "Statement"
msgstr "Afschrift"
msgctxt "model:ir.ui.menu,name:menu_consolidation_list"
msgid "Account Consolidations"
msgstr "Geconsolideerde Rekeningen"
msgctxt "model:ir.ui.menu,name:menu_consolidation_tree"
msgid "Account Consolidations"
msgstr "Geconsolideerde Rekeningen"
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_balance_sheet"
msgid "Consolidated Balance Sheet"
msgstr "Geconsolideerde Balans"
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_income_statement"
msgid "Consolidated Income Statement"
msgstr "Geconsolideerde Resultatenrekening"
msgctxt "report:account.consolidation.statement:"
msgid "/"
msgstr "/"
msgctxt "report:account.consolidation.statement:"
msgid "Balance Sheet"
msgstr "Balans"
msgctxt "report:account.consolidation.statement:"
msgid "Companies:"
msgstr "Bedrijven:"
msgctxt "report:account.consolidation.statement:"
msgid "Date:"
msgstr "Datum:"
msgctxt "report:account.consolidation.statement:"
msgid "From Date:"
msgstr "Vanaf Datum:"
msgctxt "report:account.consolidation.statement:"
msgid "Income Statement"
msgstr "Resultatenrekening"
msgctxt "report:account.consolidation.statement:"
msgid "Print Date:"
msgstr "Afdrukdatum:"
msgctxt "report:account.consolidation.statement:"
msgid "Statement"
msgstr "Afschrift"
msgctxt "report:account.consolidation.statement:"
msgid "To"
msgstr "Aan"
msgctxt "report:account.consolidation.statement:"
msgid "User:"
msgstr "Gebruiker:"
msgctxt "report:account.consolidation.statement:"
msgid "at"
msgstr "om"
msgctxt "selection:account.consolidation,statement:"
msgid "Balance"
msgstr "Balans"
msgctxt "selection:account.consolidation,statement:"
msgid "Income"
msgstr "Inkomsten"
msgctxt "selection:account.consolidation,statement:"
msgid "Off-Balance"
msgstr "Buiten balans"
msgctxt "view:account.consolidation:"
msgid "Comparison"
msgstr "Vergelijking"

View File

@@ -0,0 +1,227 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.account.type,consolidation:"
msgid "Consolidation"
msgstr ""
msgctxt "field:account.consolidation,amount:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,amount_cmp:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,assets:"
msgid "Assets"
msgstr ""
msgctxt "field:account.consolidation,children:"
msgid "Children"
msgstr ""
msgctxt "field:account.consolidation,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation,name:"
msgid "Name"
msgstr ""
msgctxt "field:account.consolidation,parent:"
msgid "Parent"
msgstr ""
msgctxt "field:account.consolidation,statement:"
msgid "Statement"
msgstr ""
msgctxt "field:account.consolidation,types:"
msgid "Types"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date_cmp:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date_cmp:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date:"
msgid "To Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date_cmp:"
msgid "To Date"
msgstr ""
msgctxt "field:account.invoice,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move.line,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "help:account.consolidation.balance_sheet.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "help:account.consolidation.income_statement.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "model:account.consolidation,string:"
msgid "Account Consolidation"
msgstr ""
msgctxt "model:account.consolidation.balance_sheet.context,string:"
msgid "Account Consolidation Balance Sheet Context"
msgstr ""
msgctxt "model:account.consolidation.income_statement.context,string:"
msgid "Account Consolidation Income Statement Context"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_balance_sheet_tree"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_income_statement_tree"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:report_consolidation_statement"
msgid "Statement"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_balance_sheet"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_income_statement"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "/"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Balance Sheet"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Companies:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "From Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Print Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "To"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "User:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "at"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Balance"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Income"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Off-Balance"
msgstr ""
msgctxt "view:account.consolidation:"
msgid "Comparison"
msgstr ""

View File

@@ -0,0 +1,228 @@
#
#, fuzzy
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.account.type,consolidation:"
msgid "Consolidation"
msgstr ""
msgctxt "field:account.consolidation,amount:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,amount_cmp:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,assets:"
msgid "Assets"
msgstr ""
msgctxt "field:account.consolidation,children:"
msgid "Children"
msgstr ""
msgctxt "field:account.consolidation,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation,name:"
msgid "Name"
msgstr ""
msgctxt "field:account.consolidation,parent:"
msgid "Parent"
msgstr ""
msgctxt "field:account.consolidation,statement:"
msgid "Statement"
msgstr ""
msgctxt "field:account.consolidation,types:"
msgid "Types"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date_cmp:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date_cmp:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date:"
msgid "To Date"
msgstr "Até a Data"
msgctxt "field:account.consolidation.income_statement.context,to_date_cmp:"
msgid "To Date"
msgstr "Até a Data"
msgctxt "field:account.invoice,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move.line,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "help:account.consolidation.balance_sheet.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "help:account.consolidation.income_statement.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "model:account.consolidation,string:"
msgid "Account Consolidation"
msgstr ""
msgctxt "model:account.consolidation.balance_sheet.context,string:"
msgid "Account Consolidation Balance Sheet Context"
msgstr ""
msgctxt "model:account.consolidation.income_statement.context,string:"
msgid "Account Consolidation Income Statement Context"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_balance_sheet_tree"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_income_statement_tree"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:report_consolidation_statement"
msgid "Statement"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_balance_sheet"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_income_statement"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "/"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Balance Sheet"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Companies:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "From Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Print Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "To"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "User:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "at"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Balance"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Income"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Off-Balance"
msgstr ""
msgctxt "view:account.consolidation:"
msgid "Comparison"
msgstr ""

View File

@@ -0,0 +1,233 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.account.type,consolidation:"
msgid "Consolidation"
msgstr ""
msgctxt "field:account.consolidation,amount:"
msgid "Amount"
msgstr "Suma"
msgctxt "field:account.consolidation,amount_cmp:"
msgid "Amount"
msgstr "Suma"
msgctxt "field:account.consolidation,assets:"
msgid "Assets"
msgstr "Active"
msgctxt "field:account.consolidation,children:"
msgid "Children"
msgstr ""
msgctxt "field:account.consolidation,currency:"
msgid "Currency"
msgstr "Moneda"
msgctxt "field:account.consolidation,name:"
msgid "Name"
msgstr "Nume"
msgctxt "field:account.consolidation,parent:"
msgid "Parent"
msgstr ""
msgctxt "field:account.consolidation,statement:"
msgid "Statement"
msgstr ""
msgctxt "field:account.consolidation,types:"
msgid "Types"
msgstr "Tipuri"
msgctxt "field:account.consolidation.balance_sheet.context,companies:"
msgid "Companies"
msgstr "Companii"
msgctxt "field:account.consolidation.balance_sheet.context,comparison:"
msgid "Comparison"
msgstr "Comparatie"
msgctxt "field:account.consolidation.balance_sheet.context,currency:"
msgid "Currency"
msgstr "Moneda"
msgctxt "field:account.consolidation.balance_sheet.context,date:"
msgid "Date"
msgstr "Data"
msgctxt "field:account.consolidation.balance_sheet.context,date_cmp:"
msgid "Date"
msgstr "Data"
msgctxt "field:account.consolidation.balance_sheet.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,companies:"
msgid "Companies"
msgstr "Companii"
msgctxt "field:account.consolidation.income_statement.context,comparison:"
msgid "Comparison"
msgstr "Comparatie"
msgctxt "field:account.consolidation.income_statement.context,currency:"
msgid "Currency"
msgstr "Moneda"
#, fuzzy
msgctxt "field:account.consolidation.income_statement.context,from_date:"
msgid "From Date"
msgstr "De la Data"
#, fuzzy
msgctxt "field:account.consolidation.income_statement.context,from_date_cmp:"
msgid "From Date"
msgstr "De la Data"
msgctxt "field:account.consolidation.income_statement.context,posted:"
msgid "Posted Moves"
msgstr ""
#, fuzzy
msgctxt "field:account.consolidation.income_statement.context,to_date:"
msgid "To Date"
msgstr "Pana in Prezent"
msgctxt "field:account.consolidation.income_statement.context,to_date_cmp:"
msgid "To Date"
msgstr "Pana in Prezent"
msgctxt "field:account.invoice,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move.line,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "help:account.consolidation.balance_sheet.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "help:account.consolidation.income_statement.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "model:account.consolidation,string:"
msgid "Account Consolidation"
msgstr ""
#, fuzzy
msgctxt "model:account.consolidation.balance_sheet.context,string:"
msgid "Account Consolidation Balance Sheet Context"
msgstr "Bilanţ Prescurtat"
msgctxt "model:account.consolidation.income_statement.context,string:"
msgid "Account Consolidation Income Statement Context"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_balance_sheet_tree"
msgid "Consolidated Balance Sheet"
msgstr "Bilanţ Prescurtat"
msgctxt "model:ir.action,name:act_consolidation_income_statement_tree"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:report_consolidation_statement"
msgid "Statement"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_balance_sheet"
msgid "Consolidated Balance Sheet"
msgstr "Bilanţ Prescurtat"
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_income_statement"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "/"
msgstr "/"
msgctxt "report:account.consolidation.statement:"
msgid "Balance Sheet"
msgstr "Bilanţ"
msgctxt "report:account.consolidation.statement:"
msgid "Companies:"
msgstr "Companii:"
msgctxt "report:account.consolidation.statement:"
msgid "Date:"
msgstr "Data:"
msgctxt "report:account.consolidation.statement:"
msgid "From Date:"
msgstr "De la Data:"
#, fuzzy
msgctxt "report:account.consolidation.statement:"
msgid "Income Statement"
msgstr "Adeverinta de Venit"
#, fuzzy
msgctxt "report:account.consolidation.statement:"
msgid "Print Date:"
msgstr "Data Tiparirii:"
msgctxt "report:account.consolidation.statement:"
msgid "Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "To"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "User:"
msgstr "Utilizator:"
msgctxt "report:account.consolidation.statement:"
msgid "at"
msgstr "la"
msgctxt "selection:account.consolidation,statement:"
msgid "Balance"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Income"
msgstr "Venit"
msgctxt "selection:account.consolidation,statement:"
msgid "Off-Balance"
msgstr ""
msgctxt "view:account.consolidation:"
msgid "Comparison"
msgstr "Comparatie"

View File

@@ -0,0 +1,227 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.account.type,consolidation:"
msgid "Consolidation"
msgstr ""
msgctxt "field:account.consolidation,amount:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,amount_cmp:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,assets:"
msgid "Assets"
msgstr ""
msgctxt "field:account.consolidation,children:"
msgid "Children"
msgstr ""
msgctxt "field:account.consolidation,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation,name:"
msgid "Name"
msgstr ""
msgctxt "field:account.consolidation,parent:"
msgid "Parent"
msgstr ""
msgctxt "field:account.consolidation,statement:"
msgid "Statement"
msgstr ""
msgctxt "field:account.consolidation,types:"
msgid "Types"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date_cmp:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date_cmp:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date:"
msgid "To Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date_cmp:"
msgid "To Date"
msgstr ""
msgctxt "field:account.invoice,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move.line,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "help:account.consolidation.balance_sheet.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "help:account.consolidation.income_statement.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "model:account.consolidation,string:"
msgid "Account Consolidation"
msgstr ""
msgctxt "model:account.consolidation.balance_sheet.context,string:"
msgid "Account Consolidation Balance Sheet Context"
msgstr ""
msgctxt "model:account.consolidation.income_statement.context,string:"
msgid "Account Consolidation Income Statement Context"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_balance_sheet_tree"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_income_statement_tree"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:report_consolidation_statement"
msgid "Statement"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_balance_sheet"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_income_statement"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "/"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Balance Sheet"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Companies:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "From Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Print Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "To"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "User:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "at"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Balance"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Income"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Off-Balance"
msgstr ""
msgctxt "view:account.consolidation:"
msgid "Comparison"
msgstr ""

View File

@@ -0,0 +1,227 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.account.type,consolidation:"
msgid "Consolidation"
msgstr ""
msgctxt "field:account.consolidation,amount:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,amount_cmp:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,assets:"
msgid "Assets"
msgstr ""
msgctxt "field:account.consolidation,children:"
msgid "Children"
msgstr ""
msgctxt "field:account.consolidation,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation,name:"
msgid "Name"
msgstr ""
msgctxt "field:account.consolidation,parent:"
msgid "Parent"
msgstr ""
msgctxt "field:account.consolidation,statement:"
msgid "Statement"
msgstr ""
msgctxt "field:account.consolidation,types:"
msgid "Types"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date_cmp:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date_cmp:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date:"
msgid "To Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date_cmp:"
msgid "To Date"
msgstr ""
msgctxt "field:account.invoice,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move.line,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "help:account.consolidation.balance_sheet.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "help:account.consolidation.income_statement.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "model:account.consolidation,string:"
msgid "Account Consolidation"
msgstr ""
msgctxt "model:account.consolidation.balance_sheet.context,string:"
msgid "Account Consolidation Balance Sheet Context"
msgstr ""
msgctxt "model:account.consolidation.income_statement.context,string:"
msgid "Account Consolidation Income Statement Context"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_balance_sheet_tree"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_income_statement_tree"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:report_consolidation_statement"
msgid "Statement"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_balance_sheet"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_income_statement"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "/"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Balance Sheet"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Companies:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "From Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Print Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "To"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "User:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "at"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Balance"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Income"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Off-Balance"
msgstr ""
msgctxt "view:account.consolidation:"
msgid "Comparison"
msgstr ""

View File

@@ -0,0 +1,227 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.account.type,consolidation:"
msgid "Consolidation"
msgstr ""
msgctxt "field:account.consolidation,amount:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,amount_cmp:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,assets:"
msgid "Assets"
msgstr ""
msgctxt "field:account.consolidation,children:"
msgid "Children"
msgstr ""
msgctxt "field:account.consolidation,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation,name:"
msgid "Name"
msgstr ""
msgctxt "field:account.consolidation,parent:"
msgid "Parent"
msgstr ""
msgctxt "field:account.consolidation,statement:"
msgid "Statement"
msgstr ""
msgctxt "field:account.consolidation,types:"
msgid "Types"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date_cmp:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date_cmp:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date:"
msgid "To Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date_cmp:"
msgid "To Date"
msgstr ""
msgctxt "field:account.invoice,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move.line,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "help:account.consolidation.balance_sheet.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "help:account.consolidation.income_statement.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "model:account.consolidation,string:"
msgid "Account Consolidation"
msgstr ""
msgctxt "model:account.consolidation.balance_sheet.context,string:"
msgid "Account Consolidation Balance Sheet Context"
msgstr ""
msgctxt "model:account.consolidation.income_statement.context,string:"
msgid "Account Consolidation Income Statement Context"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_balance_sheet_tree"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_income_statement_tree"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:report_consolidation_statement"
msgid "Statement"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_balance_sheet"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_income_statement"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "/"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Balance Sheet"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Companies:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "From Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Print Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "To"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "User:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "at"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Balance"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Income"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Off-Balance"
msgstr ""
msgctxt "view:account.consolidation:"
msgid "Comparison"
msgstr ""

View File

@@ -0,0 +1,227 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.account.type,consolidation:"
msgid "Consolidation"
msgstr ""
msgctxt "field:account.consolidation,amount:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,amount_cmp:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,assets:"
msgid "Assets"
msgstr ""
msgctxt "field:account.consolidation,children:"
msgid "Children"
msgstr ""
msgctxt "field:account.consolidation,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation,name:"
msgid "Name"
msgstr ""
msgctxt "field:account.consolidation,parent:"
msgid "Parent"
msgstr ""
msgctxt "field:account.consolidation,statement:"
msgid "Statement"
msgstr ""
msgctxt "field:account.consolidation,types:"
msgid "Types"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date_cmp:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date_cmp:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date:"
msgid "To Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date_cmp:"
msgid "To Date"
msgstr ""
msgctxt "field:account.invoice,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move.line,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "help:account.consolidation.balance_sheet.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "help:account.consolidation.income_statement.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "model:account.consolidation,string:"
msgid "Account Consolidation"
msgstr ""
msgctxt "model:account.consolidation.balance_sheet.context,string:"
msgid "Account Consolidation Balance Sheet Context"
msgstr ""
msgctxt "model:account.consolidation.income_statement.context,string:"
msgid "Account Consolidation Income Statement Context"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_balance_sheet_tree"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_income_statement_tree"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:report_consolidation_statement"
msgid "Statement"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_balance_sheet"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_income_statement"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "/"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Balance Sheet"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Companies:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "From Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Print Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "To"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "User:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "at"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Balance"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Income"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Off-Balance"
msgstr ""
msgctxt "view:account.consolidation:"
msgid "Comparison"
msgstr ""

View File

@@ -0,0 +1,227 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.account.type,consolidation:"
msgid "Consolidation"
msgstr ""
msgctxt "field:account.consolidation,amount:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,amount_cmp:"
msgid "Amount"
msgstr ""
msgctxt "field:account.consolidation,assets:"
msgid "Assets"
msgstr ""
msgctxt "field:account.consolidation,children:"
msgid "Children"
msgstr ""
msgctxt "field:account.consolidation,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation,name:"
msgid "Name"
msgstr ""
msgctxt "field:account.consolidation,parent:"
msgid "Parent"
msgstr ""
msgctxt "field:account.consolidation,statement:"
msgid "Statement"
msgstr ""
msgctxt "field:account.consolidation,types:"
msgid "Types"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,date_cmp:"
msgid "Date"
msgstr ""
msgctxt "field:account.consolidation.balance_sheet.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,companies:"
msgid "Companies"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,comparison:"
msgid "Comparison"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,currency:"
msgid "Currency"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,from_date_cmp:"
msgid "From Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,posted:"
msgid "Posted Moves"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date:"
msgid "To Date"
msgstr ""
msgctxt "field:account.consolidation.income_statement.context,to_date_cmp:"
msgid "To Date"
msgstr ""
msgctxt "field:account.invoice,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "field:account.move.line,consolidation_company:"
msgid "Consolidation Company"
msgstr ""
msgctxt "help:account.consolidation.balance_sheet.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "help:account.consolidation.income_statement.context,posted:"
msgid "Only include posted moves."
msgstr ""
msgctxt "model:account.consolidation,string:"
msgid "Account Consolidation"
msgstr ""
msgctxt "model:account.consolidation.balance_sheet.context,string:"
msgid "Account Consolidation Balance Sheet Context"
msgstr ""
msgctxt "model:account.consolidation.income_statement.context,string:"
msgid "Account Consolidation Income Statement Context"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_balance_sheet_tree"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_income_statement_tree"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:act_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.action,name:report_consolidation_statement"
msgid "Statement"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_list"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_consolidation_tree"
msgid "Account Consolidations"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_balance_sheet"
msgid "Consolidated Balance Sheet"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_open_consolidation_income_statement"
msgid "Consolidated Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "/"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Balance Sheet"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Companies:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "From Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Income Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Print Date:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "Statement"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "To"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "User:"
msgstr ""
msgctxt "report:account.consolidation.statement:"
msgid "at"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Balance"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Income"
msgstr ""
msgctxt "selection:account.consolidation,statement:"
msgid "Off-Balance"
msgstr ""
msgctxt "view:account.consolidation:"
msgid "Comparison"
msgstr ""

View File

@@ -0,0 +1,2 @@
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.

View File

@@ -0,0 +1,204 @@
==============================
Account Consolidation Scenario
==============================
Imports::
>>> from decimal import Decimal
>>> from proteus import Model, Report
>>> from trytond.modules.account.tests.tools import (
... create_chart, create_fiscalyear, get_accounts)
>>> from trytond.modules.company.tests.tools import create_company
>>> from trytond.modules.currency.tests.tools import get_currency
>>> from trytond.tests.tools import activate_modules, set_user
Activate modules::
>>> config = activate_modules(['account_consolidation'])
>>> Company = Model.get('company.company')
>>> Consolidation = Model.get('account.consolidation')
>>> Journal = Model.get('account.journal')
>>> Move = Model.get('account.move')
>>> Party = Model.get('party.party')
>>> User = Model.get('res.user')
Get journals::
>>> expense_journal, = Journal.find([('code', '=', 'EXP')])
>>> revenue_journal, = Journal.find([('code', '=', 'REV')])
Create currencies::
>>> usd = get_currency('USD')
>>> eur = get_currency('EUR')
Create parties::
>>> supplier = Party(name="Supplier")
>>> supplier.save()
>>> customer = Party(name="Customer")
>>> customer.save()
Create companies::
>>> party = Party(name="Dunder Mifflin")
>>> party.save()
>>> _ = create_company(party, usd)
>>> dunder_mifflin, = Company.find([('party', '=', party.id)], limit=1)
>>> party = Party(name="Saber")
>>> party.save()
>>> _ = create_company(party, eur)
>>> saber, = Company.find([('party', '=', party.id)], limit=1)
>>> user = User(config.user)
>>> user.company_filter = 'all'
>>> user.companies.extend([dunder_mifflin, saber])
>>> user.save()
>>> set_user(user.id)
Create fiscal year for Dunder Mifflin::
>>> fiscalyear = create_fiscalyear(dunder_mifflin)
>>> fiscalyear.click('create_period')
>>> period = fiscalyear.periods[0]
Create chart of accounts for Dunder Mifflin::
>>> _ = create_chart(dunder_mifflin)
>>> accounts_dunder = get_accounts(dunder_mifflin)
Create some moves for Dunder Mifflin::
>>> move = Move(company=dunder_mifflin)
>>> move.journal = revenue_journal
>>> move.period = period
>>> line = move.lines.new(
... account=accounts_dunder['receivable'],
... party=customer,
... debit=Decimal('200.00'))
>>> line = move.lines.new(
... account=accounts_dunder['revenue'],
... credit=Decimal('200.00'))
>>> move.click('post')
>>> move = Move(company=dunder_mifflin, consolidation_company=saber)
>>> move.journal = expense_journal
>>> move.period = period
>>> line = move.lines.new(
... account=accounts_dunder['payable'],
... party=saber.party,
... credit=Decimal('100.00'))
>>> line = move.lines.new(
... account=accounts_dunder['expense'],
... debit=Decimal('100.00'))
>>> move.click('post')
Create fiscal year for Saber::
>>> fiscalyear = create_fiscalyear(saber)
>>> fiscalyear.click('create_period')
>>> period = fiscalyear.periods[0]
Create chart of accounts for Saber::
>>> _ = create_chart(saber)
>>> accounts_saber = get_accounts(saber)
Create same moves for Saber::
>>> move = Move(company=saber, consolidation_company=dunder_mifflin)
>>> move.journal = revenue_journal
>>> move.period = period
>>> line = move.lines.new(
... account=accounts_saber['receivable'],
... party=dunder_mifflin.party,
... debit=Decimal('50.00'))
>>> line = move.lines.new(
... account=accounts_saber['revenue'],
... credit=Decimal('50.00'))
>>> move.click('post')
>>> move = Move(company=saber)
>>> move.journal = expense_journal
>>> move.period = period
>>> line = move.lines.new(
... account=accounts_saber['payable'],
... party=supplier,
... credit=Decimal('40.00'))
>>> line = move.lines.new(
... account=accounts_saber['expense'],
... debit=Decimal('40.00'))
>>> move.click('post')
Setup consolidation::
>>> balance_group = Consolidation(name="Balance")
>>> balance_group.statement = 'balance'
>>> receivable_group = balance_group.children.new(
... name="Receivable", assets=True)
>>> receivable_group.types.append(accounts_dunder['receivable'].type)
>>> receivable_group.types.append(accounts_saber['receivable'].type)
>>> payable_group = balance_group.children.new(
... name="Payable")
>>> payable_group.types.append(accounts_dunder['payable'].type)
>>> payable_group.types.append(accounts_saber['payable'].type)
>>> balance_group.save()
>>> income_group = Consolidation(name="Income")
>>> income_group.statement = 'income'
>>> income_group.save()
>>> revenue_group = Consolidation(name="Revenue")
>>> revenue_group.statement = 'income'
>>> revenue_group.parent = income_group
>>> revenue_group.types.append(accounts_dunder['revenue'].type)
>>> revenue_group.types.append(accounts_saber['revenue'].type)
>>> revenue_group.save()
>>> expense_group = Consolidation(name="Expense")
>>> expense_group.statement = 'income'
>>> expense_group.parent = income_group
>>> expense_group.types.append(accounts_dunder['expense'].type)
>>> expense_group.types.append(accounts_saber['expense'].type)
>>> expense_group.save()
Check consolidation amount only for Dunder Mifflin::
>>> with config.set_context(
... companies=[dunder_mifflin.id], currency=usd.id):
... Consolidation(balance_group.id).amount
Decimal('-100.00')
>>> with config.set_context(
... companies=[dunder_mifflin.id], currency=eur.id):
... Consolidation(balance_group.id).amount
Decimal('-200.00')
>>> with config.set_context(
... companies=[dunder_mifflin.id], currency=usd.id):
... Consolidation(income_group.id).amount
Decimal('100.00')
Check consolidation amount only for Dunder Mifflin and Saber::
>>> with config.set_context(
... companies=[dunder_mifflin.id, saber.id], currency=usd.id):
... Consolidation(balance_group.id).amount
Decimal('-180.00')
>>> with config.set_context(
... companies=[dunder_mifflin.id, saber.id], currency=usd.id):
... Consolidation(income_group.id).amount
Decimal('180.00')
Test report::
>>> statement = Report('account.consolidation.statement', context={
... 'companies': [dunder_mifflin.id, saber.id],
... 'currency': usd.id,
... })
>>> _ = statement.execute(Consolidation.find([]))

View File

@@ -0,0 +1,64 @@
================
Invoice Scenario
================
Imports::
>>> from decimal import Decimal
>>> from proteus import Model
>>> from trytond.modules.account.tests.tools import (
... create_chart, create_fiscalyear, get_accounts)
>>> from trytond.modules.account_invoice.tests.tools import (
... set_fiscalyear_invoice_sequences)
>>> from trytond.modules.company.tests.tools import create_company
>>> from trytond.tests.tools import activate_modules, assertEqual
Activate modules::
>>> config = activate_modules(['account_consolidation', 'account_invoice'])
>>> Company = Model.get('company.company')
>>> Invoice = Model.get('account.invoice')
>>> Party = Model.get('party.party')
Create companies::
>>> party = Party(name="Dunder Mifflin")
>>> party.save()
>>> _ = create_company(party)
>>> dunder_mifflin, = Company.find([('party', '=', party.id)], limit=1)
>>> party = Party(name="Saber")
>>> party.save()
>>> _ = create_company(party)
>>> saber, = Company.find([('party', '=', party.id)], limit=1)
Create fiscal year::
>>> fiscalyear = set_fiscalyear_invoice_sequences(
... create_fiscalyear(dunder_mifflin))
>>> fiscalyear.click('create_period')
>>> period_ids = [p.id for p in fiscalyear.periods]
Create chart of accounts::
>>> _ = create_chart(dunder_mifflin)
>>> accounts = get_accounts(dunder_mifflin)
Create invoice::
>>> invoice = Invoice()
>>> invoice.party = saber.party
>>> line = invoice.lines.new()
>>> line.account = accounts['revenue']
>>> line.quantity = 5
>>> line.unit_price = Decimal('10.0000')
>>> invoice.click('post')
>>> invoice.state
'posted'
Check consolidation company::
>>> assertEqual(invoice.consolidation_company, saber)
>>> assertEqual(invoice.move.consolidation_company, saber)

View File

@@ -0,0 +1,24 @@
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
from trytond.modules.company.tests import CompanyTestMixin
from trytond.tests.test_tryton import ModuleTestCase
class CompanyAcountConsolidationTestMixin(CompanyTestMixin):
@property
def _skip_company_rule(self):
return super()._skip_company_rule | {
('account.move', 'consolidation_company'),
('account.invoice', 'consolidation_company'),
}
class AccountConsolidationTestCase(
CompanyAcountConsolidationTestMixin, ModuleTestCase):
"Test Account Consolidation module"
module = 'account_consolidation'
extras = ['account_invoice']
del ModuleTestCase

View File

@@ -0,0 +1,8 @@
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
from trytond.tests.test_tryton import load_doc_tests
def load_tests(*args, **kwargs):
return load_doc_tests(__name__, __file__, *args, **kwargs)

View File

@@ -0,0 +1,26 @@
[tryton]
version=7.8.0
depends:
account
company
currency
ir
extras_depend:
account_invoice
xml:
account.xml
[register]
model:
account.Type
account.Move
account.MoveLine
account.Consolidation
account.ConsolidationBalanceSheetContext
account.ConsolidationIncomeStatementContext
report:
account.ConsolidationStatement
[register account_invoice]
model:
account.Invoice

View File

@@ -0,0 +1,9 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<data>
<xpath expr="/form/group[@id='checkboxes']" position="before">
<label name="consolidation"/>
<field name="consolidation"/>
</xpath>
</data>

View File

@@ -0,0 +1,8 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<data>
<xpath expr="/tree" position="inside">
<field name="consolidation" optional="1"/>
</xpath>
</data>

View File

@@ -0,0 +1,27 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<form>
<group col="4" colspan="2" id="group" yalign="0">
<label name="currency"/>
<field name="currency"/>
<label name="posted"/>
<field name="posted"/>
<label name="date"/>
<field name="date"/>
<newline/>
<label name="comparison"/>
<field name="comparison"/>
<separator id="comparison" colspan="4"/>
<label name="date_cmp"/>
<field name="date_cmp"/>
</group>
<group col="2" colspan="2" id="companies" yalign="0">
<label name="companies"/>
<field name="companies" widget="multiselection"/>
</group>
</form>

View File

@@ -0,0 +1,8 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<tree keyword_open="1">
<field name="name" expand="1"/>
<field name="amount"/>
<field name="amount_cmp" string="Comparison"/>
</tree>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<form>
<label name="name"/>
<field name="name"/>
<label name="sequence"/>
<field name="sequence"/>
<label name="statement"/>
<group col="-1" id="statement">
<field name="statement"/>
<label name="assets"/>
<field name="assets"/>
</group>
<label name="parent"/>
<field name="parent"/>
<field name="types" colspan="2" widget="many2many"/>
<field name="children" colspan="2"/>
</form>

View File

@@ -0,0 +1,30 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<form>
<group col="4" colspan="2" id="group" yalign="0">
<label name="currency"/>
<field name="currency"/>
<label name="posted"/>
<field name="posted"/>
<label name="from_date"/>
<field name="from_date"/>
<label name="to_date"/>
<field name="to_date"/>
<label name="comparison"/>
<field name="comparison"/>
<separator id="comparison" colspan="4"/>
<label name="from_date_cmp"/>
<field name="from_date_cmp"/>
<label name="to_date_cmp"/>
<field name="to_date_cmp"/>
</group>
<group col="2" colspan="2" id="companies" yalign="0">
<label name="companies"/>
<field name="companies" widget="multiselection"/>
</group>
</form>

View File

@@ -0,0 +1,8 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<tree keyword_open="1">
<field name="name" expand="1"/>
<field name="amount"/>
<field name="amount_cmp" string="Comparison"/>
</tree>

View File

@@ -0,0 +1,6 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<tree>
<field name="rec_name" expand="1"/>
</tree>

View File

@@ -0,0 +1,6 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<tree>
<field name="name" expand="1"/>
</tree>

View File

@@ -0,0 +1,10 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<data>
<xpath expr="//field[@name='tax_identifier']" position="after">
<label name="consolidation_company"/>
<field name="consolidation_company"/>
<newline/>
</xpath>
</data>

View File

@@ -0,0 +1,9 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<data>
<xpath expr="//field[@name='company']" position="after">
<label name="consolidation_company"/>
<field name="consolidation_company"/>
</xpath>
</data>

View File

@@ -0,0 +1,9 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<data>
<xpath expr="//field[@name='account']" position="after">
<label name="consolidation_company"/>
<field name="consolidation_company"/>
</xpath>
</data>

View File

@@ -0,0 +1,8 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<data>
<xpath expr="//field[@name='account']" position="after">
<field name="consolidation_company" optional="1"/>
</xpath>
</data>

View File

@@ -0,0 +1,8 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<data>
<xpath expr="//field[@name='company']" position="after">
<field name="consolidation_company" optional="1"/>
</xpath>
</data>