Feat: First Commit
This commit is contained in:
218
modules/account_co_reports/.gitignore
vendored
Normal file
218
modules/account_co_reports/.gitignore
vendored
Normal file
@@ -0,0 +1,218 @@
|
||||
# ---> Python
|
||||
# Byte-compiled / optimized / DLL files
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
*.bk
|
||||
|
||||
# C extensions
|
||||
*.so
|
||||
|
||||
# Distribution / packaging
|
||||
.Python
|
||||
build/
|
||||
develop-eggs/
|
||||
dist/
|
||||
downloads/
|
||||
eggs/
|
||||
.eggs/
|
||||
lib/
|
||||
lib64/
|
||||
parts/
|
||||
sdist/
|
||||
var/
|
||||
wheels/
|
||||
pip-wheel-metadata/
|
||||
share/python-wheels/
|
||||
*.egg-info/
|
||||
.installed.cfg
|
||||
*.egg
|
||||
MANIFEST
|
||||
|
||||
# PyInstaller
|
||||
# Usually these files are written by a python script from a template
|
||||
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
||||
*.manifest
|
||||
*.spec
|
||||
|
||||
# Installer logs
|
||||
pip-log.txt
|
||||
pip-delete-this-directory.txt
|
||||
|
||||
# Unit test / coverage reports
|
||||
htmlcov/
|
||||
.tox/
|
||||
.nox/
|
||||
.coverage
|
||||
.coverage.*
|
||||
.cache
|
||||
nosetests.xml
|
||||
coverage.xml
|
||||
*.cover
|
||||
*.py,cover
|
||||
.hypothesis/
|
||||
.pytest_cache/
|
||||
|
||||
# Translations
|
||||
*.mo
|
||||
*.pot
|
||||
|
||||
# Django stuff:
|
||||
*.log
|
||||
local_settings.py
|
||||
db.sqlite3
|
||||
db.sqlite3-journal
|
||||
|
||||
# Flask stuff:
|
||||
instance/
|
||||
.webassets-cache
|
||||
|
||||
# Scrapy stuff:
|
||||
.scrapy
|
||||
|
||||
# Sphinx documentation
|
||||
docs/_build/
|
||||
|
||||
# PyBuilder
|
||||
target/
|
||||
|
||||
# Jupyter Notebook
|
||||
.ipynb_checkpoints
|
||||
|
||||
# IPython
|
||||
profile_default/
|
||||
ipython_config.py
|
||||
|
||||
# pyenv
|
||||
.python-version
|
||||
|
||||
# pipenv
|
||||
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
||||
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
||||
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
||||
# install all needed dependencies.
|
||||
#Pipfile.lock
|
||||
|
||||
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
|
||||
__pypackages__/
|
||||
|
||||
# Celery stuff
|
||||
celerybeat-schedule
|
||||
celerybeat.pid
|
||||
|
||||
# SageMath parsed files
|
||||
*.sage.py
|
||||
|
||||
# Environments
|
||||
.env
|
||||
.venv
|
||||
env/
|
||||
venv/
|
||||
ENV/
|
||||
env.bak/
|
||||
venv.bak/
|
||||
|
||||
# Spyder project settings
|
||||
.spyderproject
|
||||
.spyproject
|
||||
|
||||
# Rope project settings
|
||||
.ropeproject
|
||||
|
||||
# mkdocs documentation
|
||||
/site
|
||||
|
||||
# mypy
|
||||
.mypy_cache/
|
||||
.dmypy.json
|
||||
dmypy.json
|
||||
|
||||
# Pyre type checker
|
||||
.pyre/
|
||||
|
||||
# ---> Emacs
|
||||
# -*- mode: gitignore; -*-
|
||||
*~
|
||||
\#*\#
|
||||
/.emacs.desktop
|
||||
/.emacs.desktop.lock
|
||||
*.elc
|
||||
auto-save-list
|
||||
tramp
|
||||
.\#*
|
||||
|
||||
# Org-mode
|
||||
.org-id-locations
|
||||
*_archive
|
||||
|
||||
# flymake-mode
|
||||
*_flymake.*
|
||||
|
||||
# eshell files
|
||||
/eshell/history
|
||||
/eshell/lastdir
|
||||
|
||||
# elpa packages
|
||||
/elpa/
|
||||
|
||||
# reftex files
|
||||
*.rel
|
||||
|
||||
# AUCTeX auto folder
|
||||
/auto/
|
||||
|
||||
# cask packages
|
||||
.cask/
|
||||
dist/
|
||||
|
||||
# Flycheck
|
||||
flycheck_*.el
|
||||
|
||||
# server auth directory
|
||||
/server/
|
||||
|
||||
# projectiles files
|
||||
.projectile
|
||||
|
||||
# directory configuration
|
||||
.dir-locals.el
|
||||
|
||||
# network security
|
||||
/network-security.data
|
||||
|
||||
|
||||
# ---> Vim
|
||||
# Swap
|
||||
[._]*.s[a-v][a-z]
|
||||
!*.svg # comment out if you don't need vector files
|
||||
[._]*.sw[a-p]
|
||||
[._]s[a-rt-v][a-z]
|
||||
[._]ss[a-gi-z]
|
||||
[._]sw[a-p]
|
||||
|
||||
# Session
|
||||
Session.vim
|
||||
Sessionx.vim
|
||||
|
||||
# Temporary
|
||||
.netrwhist
|
||||
*~
|
||||
# Auto-generated tag files
|
||||
tags
|
||||
# Persistent undo
|
||||
[._]*.un~
|
||||
|
||||
# ---> VirtualEnv
|
||||
# Virtualenv
|
||||
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
|
||||
.Python
|
||||
[Bb]in
|
||||
[Ii]nclude
|
||||
[Ll]ib
|
||||
[Ll]ib64
|
||||
[Ll]ocal
|
||||
[Ss]cripts
|
||||
pyvenv.cfg
|
||||
.venv
|
||||
pip-selfcheck.json
|
||||
|
||||
15
modules/account_co_reports/COPYRIGHT
Normal file
15
modules/account_co_reports/COPYRIGHT
Normal file
@@ -0,0 +1,15 @@
|
||||
Copyright (C) 2013-2019 Oscar Andres Alvarez
|
||||
Copyright (C) 2020 Ángel A Bran
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
674
modules/account_co_reports/LICENSE
Normal file
674
modules/account_co_reports/LICENSE
Normal file
@@ -0,0 +1,674 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<http://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
||||
5
modules/account_co_reports/MANIFEST.in
Normal file
5
modules/account_co_reports/MANIFEST.in
Normal file
@@ -0,0 +1,5 @@
|
||||
include CHANGELOG
|
||||
include COPYRIGHT
|
||||
include LICENSE
|
||||
include README.rst
|
||||
include doc/*
|
||||
1
modules/account_co_reports/README.rst
Symbolic link
1
modules/account_co_reports/README.rst
Symbolic link
@@ -0,0 +1 @@
|
||||
doc/index.rst
|
||||
50
modules/account_co_reports/__init__.py
Normal file
50
modules/account_co_reports/__init__.py
Normal file
@@ -0,0 +1,50 @@
|
||||
from trytond.pool import Pool
|
||||
|
||||
from . import auxiliary_party
|
||||
from . import auxiliary_book
|
||||
from . import party_book_account
|
||||
from . import trial_balance
|
||||
from . import trial_balance_detailed
|
||||
from . import balance_sheet
|
||||
from . import balance_sheet_colgaap
|
||||
from . import income_statement
|
||||
from . import income_statement_colgaap
|
||||
from . import balance_invoice_party
|
||||
|
||||
def register():
|
||||
Pool.register(
|
||||
auxiliary_party.AuxiliaryPartyStart,
|
||||
auxiliary_book.AuxiliaryBookStart,
|
||||
trial_balance.PrintTrialBalanceStart,
|
||||
party_book_account.PartyBookAccount,
|
||||
party_book_account.PartyBookAccountContext,
|
||||
trial_balance_detailed.PrintTrialBalanceDetailedStart,
|
||||
balance_sheet.BalanceSheet,
|
||||
balance_sheet_colgaap.PrintBalanceSheetCOLGAAPStart,
|
||||
income_statement.IncomeStatement,
|
||||
income_statement_colgaap.PrintIncomeStatementCOLGAAPStart,
|
||||
balance_invoice_party.BalanceInvoicePartyStart,
|
||||
module='account_co_reports',type_='model')
|
||||
|
||||
Pool.register(
|
||||
auxiliary_party.PrintAuxiliaryParty,
|
||||
auxiliary_book.PrintAuxiliaryBook,
|
||||
trial_balance.PrintTrialBalance,
|
||||
trial_balance_detailed.PrintTrialBalanceDetailed,
|
||||
balance_sheet_colgaap.PrintBalanceSheetCOLGAAP,
|
||||
income_statement_colgaap.PrintIncomeStatementCOLGAAP,
|
||||
balance_invoice_party.PrintBalanceInvoiceParty,
|
||||
module='account_co_reports',type_='wizard')
|
||||
|
||||
Pool.register(
|
||||
auxiliary_party.AuxiliaryParty,
|
||||
auxiliary_book.AuxiliaryBook,
|
||||
trial_balance.TrialBalanceClassic,
|
||||
balance_sheet.BalanceSheet,
|
||||
balance_sheet_colgaap.BalanceSheetCOLGAAP,
|
||||
trial_balance_detailed.TrialBalanceDetailed,
|
||||
income_statement.IncomeStatement,
|
||||
income_statement_colgaap.IncomeStatementCOLGAAP,
|
||||
balance_invoice_party.BalanceInvoiceParty,
|
||||
module='account_co_reports',type_='report')
|
||||
|
||||
308
modules/account_co_reports/auxiliary_book.py
Executable file
308
modules/account_co_reports/auxiliary_book.py
Executable file
@@ -0,0 +1,308 @@
|
||||
# The COPYRIGHT file at the top level of this repository contains the full
|
||||
# copyright notices and license terms.
|
||||
from trytond.model import ModelView, fields
|
||||
from trytond.wizard import Wizard, StateView, Button, StateReport
|
||||
from trytond.report import Report
|
||||
from trytond.pool import Pool, PoolMeta
|
||||
from trytond.transaction import Transaction
|
||||
from trytond.pyson import Eval
|
||||
|
||||
from timeit import default_timer as timer
|
||||
from decimal import Decimal
|
||||
import operator
|
||||
from itertools import groupby
|
||||
|
||||
|
||||
_ZERO = Decimal('0.0')
|
||||
|
||||
|
||||
class AuxiliaryBookStart(ModelView):
|
||||
'Auxiliary Book Start'
|
||||
__name__ = 'account_co_reports.print_auxiliary_book.start'
|
||||
fiscalyear = fields.Many2One('account.fiscalyear', 'Fiscal Year',
|
||||
required=True)
|
||||
start_period = fields.Many2One('account.period', 'Start Period',
|
||||
domain=[
|
||||
('fiscalyear', '=', Eval('fiscalyear')),
|
||||
('start_date', '<=', (Eval('end_period'), 'start_date')),
|
||||
], depends=['fiscalyear', 'end_period'])
|
||||
end_period = fields.Many2One('account.period', 'End Period',
|
||||
domain=[
|
||||
('fiscalyear', '=', Eval('fiscalyear')),
|
||||
('start_date', '>=', (Eval('start_period'), 'start_date'))
|
||||
],
|
||||
depends=['fiscalyear', 'start_period'])
|
||||
start_account = fields.Many2One('account.account', 'Start Account',
|
||||
domain=[
|
||||
('type', '!=', None),
|
||||
('code', '!=', None),
|
||||
])
|
||||
end_account = fields.Many2One('account.account', 'End Account',
|
||||
domain=[
|
||||
('type', '!=', None),
|
||||
('code', '!=', None),
|
||||
])
|
||||
start_code = fields.Char('Start Code Account')
|
||||
end_code = fields.Char('End Code Account')
|
||||
party = fields.Many2One('party.party', 'Party')
|
||||
company = fields.Many2One('company.company', 'Company', required=True)
|
||||
posted = fields.Boolean('Posted Move', help='Show only posted move')
|
||||
empty_account = fields.Boolean('Empty Account',
|
||||
help='With account without move')
|
||||
|
||||
@staticmethod
|
||||
def default_fiscalyear():
|
||||
FiscalYear = Pool().get('account.fiscalyear')
|
||||
return FiscalYear.find(
|
||||
Transaction().context.get('company'), exception=False)
|
||||
|
||||
@staticmethod
|
||||
def default_company():
|
||||
return Transaction().context.get('company')
|
||||
|
||||
@staticmethod
|
||||
def default_posted():
|
||||
return False
|
||||
|
||||
@staticmethod
|
||||
def default_empty_account():
|
||||
return False
|
||||
|
||||
@fields.depends('fiscalyear')
|
||||
def on_change_fiscalyear(self):
|
||||
self.start_period = None
|
||||
self.end_period = None
|
||||
|
||||
|
||||
class PrintAuxiliaryBook(Wizard):
|
||||
'Print Auxiliary Book'
|
||||
__name__ = 'account_co_reports.print_auxiliary_book'
|
||||
start = StateView('account_co_reports.print_auxiliary_book.start',
|
||||
'account_co_reports.print_auxiliary_book_start_view_form', [
|
||||
Button('Cancel', 'end', 'tryton-cancel'),
|
||||
Button('Print', 'print_', 'tryton-print', default=True),
|
||||
]
|
||||
)
|
||||
print_ = StateReport('account_co_reports.auxiliary_book')
|
||||
|
||||
def _search_records(self):
|
||||
pass
|
||||
|
||||
def do_print_(self, action):
|
||||
if self.start.start_period:
|
||||
start_period = self.start.start_period.id
|
||||
else:
|
||||
start_period = None
|
||||
if self.start.end_period:
|
||||
end_period = self.start.end_period.id
|
||||
else:
|
||||
end_period = None
|
||||
|
||||
if not self.start.party:
|
||||
party = None
|
||||
else:
|
||||
party = self.start.party.id
|
||||
|
||||
start_account_id = None
|
||||
if self.start.start_account:
|
||||
start_account_id = self.start.start_account.id
|
||||
end_account_id = None
|
||||
if self.start.end_account:
|
||||
end_account_id = self.start.end_account.id
|
||||
|
||||
data = {
|
||||
'ids': [],
|
||||
'company': self.start.company.id,
|
||||
'fiscalyear': self.start.fiscalyear.id,
|
||||
'start_period': start_period,
|
||||
'end_period': end_period,
|
||||
'posted': self.start.posted,
|
||||
'start_account': start_account_id,
|
||||
'end_account': end_account_id,
|
||||
'party': party,
|
||||
'empty_account': self.start.empty_account,
|
||||
'fiscalyearname': self.start.fiscalyear.name
|
||||
}
|
||||
return action, data
|
||||
|
||||
def transition_print_(self):
|
||||
return 'end'
|
||||
|
||||
|
||||
class AuxiliaryBook(Report):
|
||||
__name__ = 'account_co_reports.auxiliary_book'
|
||||
|
||||
@classmethod
|
||||
def get_context(cls, records, header, data):
|
||||
start = timer()
|
||||
report_context = super().get_context(records, header, data)
|
||||
|
||||
pool = Pool()
|
||||
Account = pool.get('account.account')
|
||||
Period = pool.get('account.period')
|
||||
Company = pool.get('company.company')
|
||||
Party = pool.get('party.party')
|
||||
company = Company(data['company'])
|
||||
|
||||
start_period_name = None
|
||||
end_period_name = None
|
||||
dom_accounts = [
|
||||
('company', '=', data['company']),
|
||||
('type', '!=', None),
|
||||
]
|
||||
start_code = None
|
||||
if data['start_account']:
|
||||
start_acc = Account(data['start_account'])
|
||||
start_code = start_acc.code
|
||||
dom_accounts.append(
|
||||
('code', '>=', start_acc.code)
|
||||
)
|
||||
end_code = None
|
||||
if data['end_account']:
|
||||
end_acc = Account(data['end_account'])
|
||||
end_code = end_acc.code
|
||||
dom_accounts.append(
|
||||
('code', '<=', end_acc.code)
|
||||
)
|
||||
|
||||
accounts = Account.search(dom_accounts, order=[('code', 'ASC')])
|
||||
|
||||
party = None
|
||||
if data['party']:
|
||||
party, = Party.search([('id', '=', data['party'])])
|
||||
|
||||
# --------------------------------------------------------------
|
||||
start_period_ids = [0]
|
||||
start_periods = []
|
||||
if data['start_period']:
|
||||
start_period = Period(data['start_period'])
|
||||
start_periods = Period.search([
|
||||
('fiscalyear', '=', data['fiscalyear']),
|
||||
('end_date', '<=', start_period.start_date),
|
||||
])
|
||||
start_period_ids += [p.id for p in start_periods]
|
||||
start_period_name = start_period.name
|
||||
|
||||
with Transaction().set_context(
|
||||
fiscalyear=data['fiscalyear'],
|
||||
periods=start_period_ids,
|
||||
party=data['party'],
|
||||
posted=data['posted']):
|
||||
start_accounts = Account.browse(accounts)
|
||||
|
||||
end1 = timer()
|
||||
delta1 = (end1 - start)
|
||||
print('Delta 1.... ', delta1)
|
||||
id2start_account = {}
|
||||
for account in start_accounts:
|
||||
id2start_account[account.id] = account
|
||||
|
||||
# --------------------------------------------------------------
|
||||
end_period_ids = []
|
||||
if data['end_period']:
|
||||
end_period = Period(data['end_period'])
|
||||
end_periods = Period.search([
|
||||
('fiscalyear', '=', data['fiscalyear']),
|
||||
('end_date', '<=', end_period.start_date),
|
||||
])
|
||||
if end_period not in end_periods:
|
||||
end_periods.append(end_period)
|
||||
end_period_name = end_period.name
|
||||
else:
|
||||
end_periods = Period.search([
|
||||
('fiscalyear', '=', data['fiscalyear']),
|
||||
])
|
||||
end_period_ids = [p.id for p in end_periods]
|
||||
|
||||
with Transaction().set_context(
|
||||
fiscalyear=data['fiscalyear'],
|
||||
periods=end_period_ids,
|
||||
party=data['party'],
|
||||
posted=data['posted']):
|
||||
end_accounts = Account.browse(accounts)
|
||||
|
||||
end2 = timer()
|
||||
delta2 = (end2 - end1)
|
||||
print('Delta 2.... ', delta2)
|
||||
id2end_account = {}
|
||||
for account in end_accounts:
|
||||
id2end_account[account.id] = account
|
||||
|
||||
if not data['empty_account']:
|
||||
accounts_ids = [a.id for a in accounts]
|
||||
account2lines = dict(cls.get_lines(accounts,
|
||||
end_periods, data['posted'], data['party']))
|
||||
accounts_ = account2lines.keys()
|
||||
accounts = Account.browse(
|
||||
[a for a in accounts_ids if a in accounts_]
|
||||
)
|
||||
|
||||
end3 = timer()
|
||||
delta3 = (end3 - end2)
|
||||
print('Delta 3.... ', delta3)
|
||||
|
||||
account_id2lines = cls.lines(accounts,
|
||||
list(set(end_periods).difference(set(start_periods))),
|
||||
data['posted'], data['party'])
|
||||
|
||||
report_context['start_period_name'] = start_period_name
|
||||
report_context['end_period_name'] = end_period_name
|
||||
report_context['start_code'] = start_code
|
||||
report_context['end_code'] = end_code
|
||||
report_context['party'] = party
|
||||
report_context['accounts'] = accounts
|
||||
report_context['id2start_account'] = id2start_account
|
||||
report_context['id2end_account'] = id2end_account
|
||||
report_context['digits'] = company.currency.digits
|
||||
report_context['lines'] = lambda account_id: account_id2lines[account_id]
|
||||
report_context['company'] = company
|
||||
|
||||
end4 = timer()
|
||||
delta4 = (end4 - end3)
|
||||
print('Delta 4.... ', delta4)
|
||||
|
||||
end = timer()
|
||||
delta_total = (end - start)
|
||||
print('tiempo total --- :', delta_total)
|
||||
return report_context
|
||||
|
||||
@classmethod
|
||||
def get_lines(cls, accounts, periods, posted, party=None):
|
||||
MoveLine = Pool().get('account.move.line')
|
||||
clause = [
|
||||
('account', 'in', [a.id for a in accounts]),
|
||||
('period', 'in', [p.id for p in periods]),
|
||||
]
|
||||
if party:
|
||||
clause.append(('party', '=', party))
|
||||
if posted:
|
||||
clause.append(('move.state', '=', 'posted'))
|
||||
|
||||
lines = MoveLine.search_read(clause,
|
||||
order=[
|
||||
('account', 'ASC'),
|
||||
('date', 'ASC'),
|
||||
], fields_names=[
|
||||
'description', 'move.number', 'account', 'debit',
|
||||
'credit', 'date', 'party.name',
|
||||
'move_origin.rec_name',
|
||||
])
|
||||
key = operator.itemgetter('account')
|
||||
lines.sort(key=key)
|
||||
val = groupby(lines, key)
|
||||
return val
|
||||
|
||||
@classmethod
|
||||
def lines(cls, accounts, periods, posted, party=None):
|
||||
res = dict((a.id, []) for a in accounts)
|
||||
account2lines = cls.get_lines(accounts, periods, posted, party)
|
||||
|
||||
for account_id, lines in account2lines:
|
||||
balance = _ZERO
|
||||
rec_append = res[account_id].append
|
||||
for line in lines:
|
||||
balance += line['debit'] - line['credit']
|
||||
|
||||
line['balance'] = balance
|
||||
rec_append(line)
|
||||
return res
|
||||
23
modules/account_co_reports/auxiliary_book.xml
Executable file
23
modules/account_co_reports/auxiliary_book.xml
Executable file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0"?>
|
||||
<tryton>
|
||||
<data>
|
||||
<record model="ir.ui.view" id="print_auxiliary_book_start_view_form">
|
||||
<field name="model">account_co_reports.print_auxiliary_book.start</field>
|
||||
<field name="type">form</field>
|
||||
<field name="name">print_auxiliary_book_start_form</field>
|
||||
</record>
|
||||
<record model="ir.action.wizard" id="wizard_print_auxiliary_book">
|
||||
<field name="name">Print Auxiliary Book</field>
|
||||
<field name="wiz_name">account_co_reports.print_auxiliary_book</field>
|
||||
</record>
|
||||
<record model="ir.action.report" id="report_auxiliary_book">
|
||||
<field name="name">Auxiliary Book</field>
|
||||
<field name="model"></field>
|
||||
<field name="report_name">account_co_reports.auxiliary_book</field>
|
||||
<field name="report">account_co_reports/report/auxiliary_book.fods</field>
|
||||
<field name="template_extension">ods</field>
|
||||
</record>
|
||||
<menuitem parent="account.menu_reporting" action="wizard_print_auxiliary_book"
|
||||
id="menu_print_auxiliary_book" icon="tryton-print"/>
|
||||
</data>
|
||||
</tryton>
|
||||
200
modules/account_co_reports/auxiliary_party.py
Executable file
200
modules/account_co_reports/auxiliary_party.py
Executable file
@@ -0,0 +1,200 @@
|
||||
# The COPYRIGHT file at the top level of this repository contains the full
|
||||
# copyright notices and license terms.
|
||||
from trytond.model import ModelView, fields
|
||||
from trytond.wizard import Wizard, StateView, Button, StateReport
|
||||
from trytond.report import Report
|
||||
from trytond.pool import Pool, PoolMeta
|
||||
from trytond.transaction import Transaction
|
||||
from trytond.pyson import Eval
|
||||
from trytond.exceptions import UserError
|
||||
|
||||
__all__ = ['AuxiliaryPartyStart', 'PrintAuxiliaryParty', 'AuxiliaryParty']
|
||||
|
||||
class AuxiliaryPartyStart(ModelView):
|
||||
'Auxiliary Party Start'
|
||||
__name__ = 'account_co_reports.print_auxiliary_party.start'
|
||||
|
||||
start_period = fields.Many2One('account.period', 'Start Period',
|
||||
domain=[
|
||||
('start_date', '<=', (Eval('end_period'), 'start_date')),
|
||||
], depends=['fiscalyear', 'end_period'])
|
||||
end_period = fields.Many2One('account.period', 'End Period',
|
||||
domain=[
|
||||
('start_date', '>=', (Eval('start_period'), 'start_date'))
|
||||
],
|
||||
depends=['start_period'])
|
||||
party = fields.Many2One('party.party', 'Party')
|
||||
accounts = fields.Many2Many('account.account', None, None, 'Accounts',
|
||||
domain=[
|
||||
('type', '!=', ''),
|
||||
])
|
||||
company = fields.Many2One('company.company', 'Company', required=True)
|
||||
posted = fields.Boolean('Posted Move', help='Show only posted move')
|
||||
grouped_by_account = fields.Boolean('Grouped by Account')
|
||||
empty_account = fields.Boolean('Empty Account',
|
||||
help='With account without move')
|
||||
|
||||
@staticmethod
|
||||
def default_company():
|
||||
return Transaction().context.get('company')
|
||||
|
||||
@staticmethod
|
||||
def default_posted():
|
||||
return False
|
||||
|
||||
@staticmethod
|
||||
def default_empty_account():
|
||||
return False
|
||||
|
||||
@fields.depends('fiscalyear')
|
||||
def on_change_fiscalyear(self):
|
||||
self.start_period = None
|
||||
self.end_period = None
|
||||
|
||||
|
||||
class PrintAuxiliaryParty(Wizard):
|
||||
'Print Auxiliary Party'
|
||||
__name__ = 'account_co_reports.print_auxiliary_party'
|
||||
|
||||
start = StateView('account_co_reports.print_auxiliary_party.start',
|
||||
'account_co_reports.print_auxiliary_party_start_view_form', [
|
||||
Button('Cancel', 'end', 'tryton-cancel'),
|
||||
Button('Print', 'print_', 'tryton-print', default=True),
|
||||
])
|
||||
print_ = StateReport('account_co_reports.auxiliary_party')
|
||||
|
||||
def do_print_(self, action):
|
||||
if self.start.start_period:
|
||||
start_period = self.start.start_period.id
|
||||
else:
|
||||
start_period = None
|
||||
if self.start.end_period:
|
||||
end_period = self.start.end_period.id
|
||||
else:
|
||||
end_period = None
|
||||
if not self.start.party:
|
||||
party = None
|
||||
else:
|
||||
party = self.start.party.id
|
||||
|
||||
if self.start.accounts:
|
||||
accounts_ids = [acc.id for acc in self.start.accounts]
|
||||
else:
|
||||
accounts_ids = []
|
||||
data = {
|
||||
'company': self.start.company.id,
|
||||
'start_period': start_period,
|
||||
'end_period': end_period,
|
||||
'posted': self.start.posted,
|
||||
'party': party,
|
||||
'empty_account': self.start.empty_account,
|
||||
'accounts': accounts_ids,
|
||||
'grouped_by_account': self.start.grouped_by_account,
|
||||
}
|
||||
return action, data
|
||||
|
||||
def transition_print_(self):
|
||||
return 'end'
|
||||
|
||||
|
||||
class AuxiliaryParty(Report):
|
||||
__name__ = 'account_co_reports.auxiliary_party'
|
||||
|
||||
@classmethod
|
||||
def get_context(cls, records, header, data):
|
||||
report_context = super(AuxiliaryParty, cls).get_context(records, header, data)
|
||||
pool = Pool()
|
||||
Period = pool.get('account.period')
|
||||
Company = pool.get('company.company')
|
||||
Move = pool.get('account.move')
|
||||
MoveLine = pool.get('account.move.line')
|
||||
|
||||
company = Company(data['company'])
|
||||
dom_move = []
|
||||
#Add context Transaction for company and fiscalyear
|
||||
# dom_move = [('company', '=', company)]
|
||||
if data.get('posted'):
|
||||
dom_move.append(('state', '=', 'posted'))
|
||||
|
||||
start_period = None
|
||||
end_period = None
|
||||
if data.get('start_period'):
|
||||
start_period = Period(data['start_period'])
|
||||
dom_move.append(('period.start_date', '>=', start_period.start_date))
|
||||
if data.get('end_period'):
|
||||
end_period = Period(data['end_period'])
|
||||
dom_move.append(('period.start_date', '<=', end_period.start_date))
|
||||
|
||||
moves = Move.search_read(dom_move,
|
||||
order=[
|
||||
('date', 'ASC'), ('id', 'ASC')
|
||||
], fields_names=['id'],
|
||||
)
|
||||
moves_ids = [move['id'] for move in moves]
|
||||
|
||||
dom_lines = [
|
||||
('move', 'in', moves_ids)
|
||||
]
|
||||
|
||||
|
||||
if data.get('accounts'):
|
||||
accounts_dom = ('account', 'in', data['accounts'])
|
||||
dom_lines.append(accounts_dom)
|
||||
|
||||
if data.get('party'):
|
||||
parties_dom = ('party', '=', data['party'])
|
||||
dom_lines.append(parties_dom)
|
||||
|
||||
lines = MoveLine.search(dom_lines, order=[('move.date', 'ASC')])
|
||||
#raise UserError(str(lines))
|
||||
res = {}
|
||||
dict_location = {}
|
||||
|
||||
if lines:
|
||||
for line in lines:
|
||||
|
||||
if not line.party:
|
||||
continue
|
||||
|
||||
id_ = line.party.id
|
||||
name = line.party.rec_name
|
||||
try:
|
||||
# TODO se toma el primer identificador del party
|
||||
# este es totalmente incorrecto
|
||||
if line.party.identifiers:
|
||||
id_number = line.party.identifiers[0].code
|
||||
else:
|
||||
id_number = ''
|
||||
except IndexError:
|
||||
pass
|
||||
|
||||
|
||||
# agrupar por unico identificador party/reference
|
||||
if id_ not in res.keys():
|
||||
res[id_] = {
|
||||
'name': name,
|
||||
'id_number': id_number,
|
||||
'accounts': {},
|
||||
}
|
||||
|
||||
#inicializar saldos sin valores de registro
|
||||
if line.account not in res[id_]['accounts'].keys():
|
||||
res[id_]['accounts'][line.account] = {
|
||||
'lines': [],
|
||||
'sum_debit': [],
|
||||
'sum_credit': [],
|
||||
'balance': [],
|
||||
}
|
||||
res[id_]['accounts'][line.account]['lines'].append(line)
|
||||
res[id_]['accounts'][line.account]['sum_debit'].append(line.debit)
|
||||
res[id_]['accounts'][line.account]['sum_credit'].append(line.credit)
|
||||
res[id_]['accounts'][line.account]['balance'].append(line.debit - line.credit)
|
||||
|
||||
|
||||
report_context['records'] = res.values()
|
||||
|
||||
report_context['grouped_by_account'] = data['grouped_by_account']
|
||||
report_context['start_period'] = start_period.name if start_period else '*'
|
||||
report_context['end_period'] = end_period.name if end_period else '*'
|
||||
report_context['company'] = company
|
||||
return report_context
|
||||
23
modules/account_co_reports/auxiliary_party.xml
Executable file
23
modules/account_co_reports/auxiliary_party.xml
Executable file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0"?>
|
||||
<tryton>
|
||||
<data>
|
||||
<record model="ir.action.report" id="report_auxiliary_party">
|
||||
<field name="name">Account Move by Party</field>
|
||||
<field name="model"></field>
|
||||
<field name="report_name">account_co_reports.auxiliary_party</field>
|
||||
<field name="report">account_co_reports/report/auxiliary_party.fods</field>
|
||||
<field name="template_extension">ods</field>
|
||||
</record>
|
||||
<record model="ir.ui.view" id="print_auxiliary_party_start_view_form">
|
||||
<field name="model">account_co_reports.print_auxiliary_party.start</field>
|
||||
<field name="type">form</field>
|
||||
<field name="name">print_auxiliary_party_start_form</field>
|
||||
</record>
|
||||
<record model="ir.action.wizard" id="wizard_print_auxiliary_party">
|
||||
<field name="name">Print Move by Party</field>
|
||||
<field name="wiz_name">account_co_reports.print_auxiliary_party</field>
|
||||
</record>
|
||||
<menuitem parent="account.menu_reporting" action="wizard_print_auxiliary_party"
|
||||
id="menu_print_auxiliary_party" icon="tryton-print"/>
|
||||
</data>
|
||||
</tryton>
|
||||
142
modules/account_co_reports/balance_invoice_party.py
Normal file
142
modules/account_co_reports/balance_invoice_party.py
Normal file
@@ -0,0 +1,142 @@
|
||||
# The COPYRIGHT file at the top level of this repository contains the full
|
||||
# copyright notices and license terms.
|
||||
from trytond.model import ModelView, fields
|
||||
from trytond.wizard import Wizard, StateView, Button, StateReport
|
||||
from trytond.report import Report
|
||||
from trytond.pool import Pool, PoolMeta
|
||||
from trytond.transaction import Transaction
|
||||
from trytond.pyson import Eval
|
||||
from trytond.exceptions import UserError
|
||||
|
||||
__all__ = ['BalancePartyStart', 'PrintBalanceParty', 'BalanceParty']
|
||||
|
||||
class BalanceInvoicePartyStart(ModelView):
|
||||
'Balance Party Start'
|
||||
__name__ = 'account_co_reports.print_balance_invoice_party.start'
|
||||
|
||||
party = fields.Many2One('party.party', 'Party', required=True)
|
||||
start_period = fields.Many2One('account.period', 'Start Period',
|
||||
domain=[
|
||||
('start_date', '<=', (Eval('end_period'), 'start_date')),
|
||||
], depends=['fiscalyear', 'end_period'])
|
||||
end_period = fields.Many2One('account.period', 'End Period',
|
||||
domain=[
|
||||
('start_date', '>=', (Eval('start_period'), 'start_date'))
|
||||
],
|
||||
depends=['start_period'])
|
||||
company = fields.Many2One('company.company', 'Company', required=True)
|
||||
party_type = fields.Selection([('out', 'Customer'),
|
||||
('in', 'Supplier')], "Party Type", required=True)
|
||||
|
||||
@staticmethod
|
||||
def default_company():
|
||||
return Transaction().context.get('company')
|
||||
|
||||
class PrintBalanceInvoiceParty(Wizard):
|
||||
'Print Balance Invoice Party'
|
||||
__name__ = 'account_co_reports.print_balance_invoice_party'
|
||||
|
||||
start = StateView('account_co_reports.print_balance_invoice_party.start',
|
||||
'account_co_reports.print_balance_invoice_party_start_view_form', [
|
||||
Button('Cancel', 'end', 'tryton-cancel'),
|
||||
Button('Print', 'print_', 'tryton-print', default=True),
|
||||
])
|
||||
|
||||
print_ = StateReport('account_co_reports.balance_invoice_party')
|
||||
|
||||
def do_print_(self, action):
|
||||
party = None
|
||||
party_type = None
|
||||
|
||||
if self.start.party:
|
||||
party = self.start.party.id
|
||||
if self.start.party_type:
|
||||
party_type = self.start.party_type
|
||||
|
||||
data = {
|
||||
'company': self.start.company.id,
|
||||
'party': party,
|
||||
'party_type': party_type
|
||||
}
|
||||
return action, data
|
||||
|
||||
def transition_print_(self):
|
||||
return 'end'
|
||||
|
||||
|
||||
class BalanceInvoiceParty(Report):
|
||||
__name__ = 'account_co_reports.balance_invoice_party'
|
||||
|
||||
@classmethod
|
||||
def get_context(cls, records, header, data):
|
||||
report_context = super(BalanceInvoiceParty, cls).get_context(records, header, data)
|
||||
pool = Pool()
|
||||
Company = pool.get('company.company')
|
||||
Period = pool.get('account.period')
|
||||
Invoice = pool.get('account.invoice')
|
||||
Party = pool.get('party.party')
|
||||
start_period = None
|
||||
end_period = None
|
||||
party = None
|
||||
company = Company(data['company'])
|
||||
dom_invoice = [('state', 'in', ["posted", "paid"])]
|
||||
|
||||
if data.get('party'):
|
||||
party = data['party']
|
||||
dom_invoice.append(('party', '=', party))
|
||||
|
||||
if data.get('party_type') == 'in':
|
||||
dom_invoice.append(('type', '=', "in"))
|
||||
elif data.get('party_type') == 'out':
|
||||
dom_invoice.append(('type', '=', "out"))
|
||||
else:
|
||||
dom_invoice.append(('type', 'in', ["out", "in"]))
|
||||
|
||||
party_type = data.get('party_type')
|
||||
|
||||
if data.get('start_period'):
|
||||
start_period = Period(data['start_period'])
|
||||
dom_invoice.append(('invoice_date', '>=', start_period.start_date))
|
||||
if data.get('end_period'):
|
||||
end_period = Period(data['end_period'])
|
||||
dom_invoice.append(('invoice_date', '<=', end_period.start_date))
|
||||
|
||||
invoices = Invoice.search(dom_invoice,
|
||||
order=[('invoice_date', 'DESC'),
|
||||
('id', 'DESC')],)
|
||||
|
||||
res = {}
|
||||
dict_location = {}
|
||||
|
||||
id_ = party
|
||||
party_ = Party.search(['id', '=', party])[0]
|
||||
name = party_.rec_name
|
||||
|
||||
try:
|
||||
if party_.identifiers:
|
||||
id_number = party_.identifiers[0].code
|
||||
else:
|
||||
id_number = ''
|
||||
except IndexError:
|
||||
pass
|
||||
|
||||
res[id_] = {'name': name,
|
||||
'id_number': id_number,
|
||||
'party': party_
|
||||
}
|
||||
|
||||
if invoices:
|
||||
res[id_]['invoices'] = invoices
|
||||
else:
|
||||
if party_type == 'in':
|
||||
raise UserError(str("Este Tercero no Cuenta Con Facturas de Proveedor."))
|
||||
else:
|
||||
raise UserError(str("Este Tercero no Cuenta Con Facturas de Cliente."))
|
||||
|
||||
report_context['records'] = res.values()
|
||||
report_context['start_period'] = start_period.name if start_period else '*'
|
||||
report_context['end_period'] = end_period.name if end_period else '*'
|
||||
report_context['company'] = company
|
||||
report_context['party_type'] = party_type
|
||||
|
||||
return report_context
|
||||
26
modules/account_co_reports/balance_invoice_party.xml
Normal file
26
modules/account_co_reports/balance_invoice_party.xml
Normal file
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0"?>
|
||||
<tryton>
|
||||
<data>
|
||||
<record model="ir.action.report" id="report_balance_invoice_party">
|
||||
<field name="name">Balance Invoice by Party</field>
|
||||
<field name="model"></field>
|
||||
<field name="report_name">account_co_reports.balance_invoice_party</field>
|
||||
<field name="report">account_co_reports/report/balance_invoice_party.fods</field>
|
||||
<field name="template_extension">ods</field>
|
||||
</record>
|
||||
<record model="ir.ui.view" id="print_balance_invoice_party_start_view_form">
|
||||
<field name="model">account_co_reports.print_balance_invoice_party.start</field>
|
||||
<field name="type">form</field>
|
||||
<field name="name">print_balance_invoice_party_start_form</field>
|
||||
</record>
|
||||
<record model="ir.action.wizard" id="wizard_print_balance_invoice_party">
|
||||
<field name="name">Print Balance Invoice by Party</field>
|
||||
<field name="wiz_name">account_co_reports.print_balance_invoice_party</field>
|
||||
</record>
|
||||
<menuitem
|
||||
parent="account.menu_reporting"
|
||||
action="wizard_print_balance_invoice_party"
|
||||
id="menu_print_balance_invoice_party"
|
||||
icon="tryton-print"/>
|
||||
</data>
|
||||
</tryton>
|
||||
57
modules/account_co_reports/balance_sheet.py
Normal file
57
modules/account_co_reports/balance_sheet.py
Normal file
@@ -0,0 +1,57 @@
|
||||
# The COPYRIGHT file at the top level of this repository contains the full
|
||||
# copyright notices and license terms.
|
||||
from trytond.model import ModelView, ModelSQL, fields
|
||||
from trytond.report import Report
|
||||
from trytond.pool import Pool, PoolMeta
|
||||
from trytond.transaction import Transaction
|
||||
|
||||
class Account(metaclass=PoolMeta):
|
||||
'Balance Sheet Context'
|
||||
__name__ = 'account.balance_sheet.context'
|
||||
utility_temp = fields.Boolean('Utility Temp', help='Permited see the utility without have any account move')
|
||||
|
||||
|
||||
class BalanceSheet(Report):
|
||||
'Balance Sheet Report'
|
||||
__name__ = 'account.balance_sheet'
|
||||
|
||||
@classmethod
|
||||
def get_context(cls, records, header, data):
|
||||
report_context = super(BalanceSheet, cls).get_context(records, header, data)
|
||||
Company = Pool().get('company.company')
|
||||
report_context['company'] = Company(Transaction().context.get('company'))
|
||||
report_context['date'] = Transaction().context.get('date')
|
||||
report_context['comparison'] = Transaction().context.get('comparison')
|
||||
report_context['date_cmp'] = Transaction().context.get('date_cmp')
|
||||
|
||||
value_accounts = report_context['records']
|
||||
account_child_list = []
|
||||
utility = {}
|
||||
value_comp = 0
|
||||
for account in value_accounts:
|
||||
if account.amount != 0:
|
||||
for child in account.childs:
|
||||
if child.name == 'PATRIMONIO NETO Y PASIVOS':
|
||||
child.amount = child.amount + account.amount
|
||||
if child.amount_cmp and account.amount_cmp:
|
||||
child.amount_cmp = child.amount_cmp + account.amount_cmp
|
||||
for child1 in child.childs:
|
||||
if child1.name == 'PATRIMONIO NETO':
|
||||
child1.amount = child1.amount + account.amount
|
||||
if child1.amount_cmp and account.amount_cmp:
|
||||
child1.amount_cmp = child1.amount_cmp + account.amount_cmp
|
||||
child1.childs[0].amount = child1.childs[0].amount + account.amount
|
||||
if child1.childs[0].amount_cmp and account.amount_cmp:
|
||||
child1.childs[0].amount_cmp = child1.childs[0].amount_cmp + account.amount_cmp
|
||||
account_child_list = [child for child in child1.childs[0].childs]
|
||||
if account.amount_cmp:
|
||||
value_comp = account.amount_cmp
|
||||
utility = {
|
||||
'amount': account.amount,
|
||||
'amount_cmp': value_comp,
|
||||
'name': 'UTILIDAD / PERDIDA ESTIMADA DEL PERIODO',
|
||||
'childs': None,
|
||||
}
|
||||
account_child_list.append(utility)
|
||||
child1.childs[0].childs = account_child_list
|
||||
return report_context
|
||||
25
modules/account_co_reports/balance_sheet.xml
Executable file
25
modules/account_co_reports/balance_sheet.xml
Executable file
@@ -0,0 +1,25 @@
|
||||
<?xml version="1.0"?>
|
||||
<tryton>
|
||||
<data>
|
||||
<record model="ir.ui.view" id="balance_sheet_context_view_form_2">
|
||||
<field name="model">account.balance_sheet.col.context</field>
|
||||
<field name="inherit" ref="account.balance_sheet_context_view_form"/>
|
||||
<field name="name">balance_sheet_context_col_form</field>
|
||||
</record>
|
||||
|
||||
<!-- Balance Sheet -->
|
||||
<record model="ir.action.report" id="report_balance_sheet">
|
||||
<field name="name">Balance Sheet</field>
|
||||
<field name="model">account.account.type</field>
|
||||
<field name="report_name">account.balance_sheet</field>
|
||||
<field name="report">account_co_reports/report/balance_sheet.fods</field>
|
||||
<field name="template_extension">ods</field>
|
||||
</record>
|
||||
<record model="ir.action.keyword" id="report_balance_sheet_keyword">
|
||||
<field name="keyword">form_print</field>
|
||||
<field name="model">account.account.type,-1</field>
|
||||
<field name="action" ref="report_balance_sheet"/>
|
||||
</record>
|
||||
|
||||
</data>
|
||||
</tryton>
|
||||
215
modules/account_co_reports/balance_sheet_colgaap.py
Normal file
215
modules/account_co_reports/balance_sheet_colgaap.py
Normal file
@@ -0,0 +1,215 @@
|
||||
# The COPYRIGHT file at the top level of this repository contains the full
|
||||
# copyright notices and license terms.
|
||||
import operator
|
||||
|
||||
from trytond.model import ModelView, ModelSQL, fields
|
||||
from trytond.wizard import Wizard, StateView, Button, StateReport
|
||||
from trytond.transaction import Transaction
|
||||
from trytond.report import Report
|
||||
from trytond.pyson import Eval, PYSONEncoder
|
||||
from trytond.pool import Pool
|
||||
|
||||
|
||||
def compute_report(data, domain, codes, statement='income'):
|
||||
pool = Pool()
|
||||
Fiscalyear = pool.get('account.fiscalyear')
|
||||
Period = pool.get('account.period')
|
||||
Account = pool.get('account.account')
|
||||
|
||||
period = None
|
||||
amount_profit = 0
|
||||
res = {}
|
||||
|
||||
ctx = {
|
||||
'posted': data['posted'],
|
||||
}
|
||||
|
||||
if data.get('period'):
|
||||
period = Period(data['period'])
|
||||
periods = Period.search([
|
||||
('start_date', '<=', period.start_date),
|
||||
])
|
||||
periods_ids = [period.id]
|
||||
periods_ids.extend([p.id for p in periods])
|
||||
ctx['periods'] = periods_ids
|
||||
elif data.get('periods'):
|
||||
ctx['periods'] = data.get('periods')
|
||||
else:
|
||||
ctx['fiscalyear'] = data['fiscalyear']
|
||||
|
||||
if data.get('detailed'):
|
||||
len_code = 6
|
||||
else:
|
||||
len_code = 5
|
||||
domain.append(
|
||||
('type', '=', ''),
|
||||
)
|
||||
|
||||
view_accounts = Account.search(domain)
|
||||
|
||||
reduce_ids = [a.id for a in view_accounts
|
||||
if len(a.code) <= len_code]
|
||||
|
||||
with Transaction().set_context(ctx):
|
||||
accounts = Account.search([
|
||||
('id', 'in', reduce_ids),
|
||||
], order=[('code', 'ASC')]
|
||||
)
|
||||
if data.get('account_profit'):
|
||||
account_profit = Account(data['account_profit'])
|
||||
profit_accounts = Account.search(['OR',
|
||||
('code', 'in', ['4', '5', '6', '7']),
|
||||
])
|
||||
amount_profit = sum([a.balance for a in profit_accounts])
|
||||
|
||||
records = []
|
||||
for a in accounts:
|
||||
if (len(a.code) == 1) or not(a.balance == 0 and len(a.code) >= (len_code - 1)):
|
||||
if statement == 'income':
|
||||
a.balance = a.balance * (-1)
|
||||
records.append(a)
|
||||
res['records'] = records
|
||||
main_accounts = Account.search(['OR',
|
||||
('code', 'in', codes),
|
||||
])
|
||||
|
||||
# Crea una cuenta virtual temporal con la utilidad para ponerla en el Balance
|
||||
if data.get('account_profit'):
|
||||
|
||||
tree_account_assets = []
|
||||
def _add_parents(acc):
|
||||
if acc in res['records']:
|
||||
acc = res['records'].pop(res['records'].index(acc))
|
||||
acc.balance = acc.balance + amount_profit
|
||||
tree_account_assets.append(acc)
|
||||
if acc.parent and acc.parent.code:
|
||||
_add_parents(acc.parent)
|
||||
|
||||
# Split records for keep order
|
||||
_add_parents(account_profit)
|
||||
res['records'].extend(tree_account_assets)
|
||||
new_records = [(rec.code, rec) for rec in res['records']]
|
||||
def getKey(item):
|
||||
return item[1]
|
||||
|
||||
new_records.sort(key=operator.itemgetter(0))
|
||||
res['records'] = [nr[1] for nr in new_records]
|
||||
|
||||
global_result = sum([a.balance for a in main_accounts]) + amount_profit
|
||||
if statement == 'income':
|
||||
global_result = global_result * (-1)
|
||||
|
||||
res['global_result'] = global_result
|
||||
fiscalyear = Fiscalyear(data['fiscalyear'])
|
||||
if period:
|
||||
res['start_date'] = period.start_date
|
||||
res['end_date'] = period.end_date
|
||||
else:
|
||||
periods_dates = []
|
||||
for p in fiscalyear.periods:
|
||||
periods_dates.extend([p.start_date, p.end_date])
|
||||
res['start_date'] = min(periods_dates)
|
||||
res['end_date'] = max(periods_dates)
|
||||
|
||||
res['period'] = period
|
||||
res['fiscalyear'] = fiscalyear
|
||||
return res
|
||||
|
||||
class PrintBalanceSheetCOLGAAPStart(ModelView):
|
||||
'Print Balance Sheet COLGAAP Start'
|
||||
__name__ = 'account_co_reports.print_balance_sheet_colgaap.start'
|
||||
fiscalyear = fields.Many2One('account.fiscalyear', 'Fiscal Year',
|
||||
help='Leave empty for all open fiscal year', required=True)
|
||||
posted = fields.Boolean('Posted Moves', help='Show posted moves only')
|
||||
period = fields.Many2One('account.period', 'Period', domain=[
|
||||
('fiscalyear', '=', Eval('fiscalyear')),
|
||||
], depends=['fiscalyear'])
|
||||
company = fields.Many2One('company.company', 'Company', required=True)
|
||||
detailed = fields.Boolean('Detailed')
|
||||
account_profit = fields.Many2One('account.account',
|
||||
'Account Profit', domain=[
|
||||
('type', '!=', ''),
|
||||
('code', 'like', '36%'),
|
||||
])
|
||||
|
||||
@staticmethod
|
||||
def default_posted():
|
||||
return False
|
||||
|
||||
@staticmethod
|
||||
def default_company():
|
||||
return Transaction().context.get('company')
|
||||
|
||||
|
||||
class PrintBalanceSheetCOLGAAP(Wizard):
|
||||
'Print Balance Sheet COLGAAP'
|
||||
__name__ = 'account_co_reports.print_balance_sheet_colgaap'
|
||||
start = StateView('account_co_reports.print_balance_sheet_colgaap.start',
|
||||
'account_co_reports.print_balance_sheet_colgaap_start_view_form', [
|
||||
Button('Cancel', 'end', 'tryton-cancel'),
|
||||
Button('Print', 'print_', 'tryton-print', default=True),
|
||||
])
|
||||
print_ = StateReport('account_co_reports.balance_sheet_colgaap')
|
||||
|
||||
def do_print_(self, action):
|
||||
Period = Pool().get('account.period')
|
||||
account_profit_id = None
|
||||
|
||||
ctx = {
|
||||
'fiscalyear': (self.start.fiscalyear.id
|
||||
if self.start.fiscalyear else None),
|
||||
'posted': self.start.posted,
|
||||
'cumulate': True,
|
||||
}
|
||||
if self.start.account_profit:
|
||||
account_profit_id = self.start.account_profit.id
|
||||
if self.start.period:
|
||||
periods = Period.search([
|
||||
('end_date', '<', self.start.period.start_date),
|
||||
])
|
||||
periods_ids = [self.start.period.id]
|
||||
periods_ids.extend([p.id for p in periods])
|
||||
ctx['periods'] = periods_ids
|
||||
|
||||
action['pyson_context'] = PYSONEncoder().encode(ctx)
|
||||
|
||||
period_id = None
|
||||
if self.start.period:
|
||||
period_id = self.start.period.id
|
||||
data = {
|
||||
'fiscalyear': self.start.fiscalyear.id,
|
||||
'period': period_id,
|
||||
'company': self.start.company.id,
|
||||
'detailed': self.start.detailed,
|
||||
'posted': self.start.posted,
|
||||
'account_profit': account_profit_id,
|
||||
}
|
||||
return action, data
|
||||
|
||||
def transition_print_(self):
|
||||
return 'end'
|
||||
|
||||
|
||||
|
||||
class BalanceSheetCOLGAAP(Report):
|
||||
__name__ = 'account_co_reports.balance_sheet_colgaap'
|
||||
|
||||
@classmethod
|
||||
def get_context(cls, records, header, data):
|
||||
report_context = super(BalanceSheetCOLGAAP, cls).get_context(records, header, data)
|
||||
pool = Pool()
|
||||
Company = pool.get('company.company')
|
||||
company = Company(data['company'])
|
||||
|
||||
codes = ['2', '3']
|
||||
domain = [
|
||||
('code', '<', '4'),
|
||||
]
|
||||
res = compute_report(data, domain, codes, statement='balance')
|
||||
|
||||
report_context.update(res)
|
||||
report_context['detailed'] = data['detailed']
|
||||
report_context['company'] = company
|
||||
report_context['fiscalyear2'] = None
|
||||
return report_context
|
||||
|
||||
28
modules/account_co_reports/balance_sheet_colgaap.xml
Normal file
28
modules/account_co_reports/balance_sheet_colgaap.xml
Normal file
@@ -0,0 +1,28 @@
|
||||
<?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>
|
||||
|
||||
<!-- Print Balance Sheet COLGAAP -->
|
||||
<record model="ir.action.report" id="report_balance_sheet_colgaap">
|
||||
<field name="name">Balance Sheet COLGAAP</field>
|
||||
<field name="model"></field>
|
||||
<field name="report_name">account_co_reports.balance_sheet_colgaap</field>
|
||||
<field name="report">account_co_reports/report/balance_sheet_colgaap.fods</field>
|
||||
<field name="template_extension">ods</field>
|
||||
</record>
|
||||
<record model="ir.ui.view" id="print_balance_sheet_colgaap_start_view_form">
|
||||
<field name="model">account_co_reports.print_balance_sheet_colgaap.start</field>
|
||||
<field name="type">form</field>
|
||||
<field name="name">print_balance_sheet_colgaap_start_form</field>
|
||||
</record>
|
||||
<record model="ir.action.wizard" id="wizard_print_balance_sheet_colgaap">
|
||||
<field name="name">Balance Sheet COLGAAP</field>
|
||||
<field name="wiz_name">account_co_reports.print_balance_sheet_colgaap</field>
|
||||
</record>
|
||||
<menuitem parent="account.menu_reporting" action="wizard_print_balance_sheet_colgaap"
|
||||
id="menu_print_balance_sheet_colgaap" icon="tryton-print"/>
|
||||
|
||||
</data>
|
||||
</tryton>
|
||||
30
modules/account_co_reports/doc/es/index.rst
Normal file
30
modules/account_co_reports/doc/es/index.rst
Normal file
@@ -0,0 +1,30 @@
|
||||
================================
|
||||
Reportes Contables para Colombia
|
||||
================================
|
||||
|
||||
Basado en: `trytonpsk-account_col: <https://bitbucket.org/presik/trytonpsk-account_col>`_
|
||||
|
||||
Diferencias con la versión original:
|
||||
|
||||
1. Se actualiza a la versón 5.4 y superiores
|
||||
2. Se cambian los archivos de extensión .ods a .fods
|
||||
3. Cada informe queda separado en un archivo .py y .fodt, con la intención de integrarlos posteriormente en categorías de informes
|
||||
4. No necesita ninguna dependencia por fuera de los módulos oficiales
|
||||
5. No hay cambios en los módulos oficiales como party, account u otro
|
||||
6. Se agrega reporte Party Book Account, el cual no incluye impresión
|
||||
7. Se hacen parches y cambios menores a los archivos .ods convertidos en .fods
|
||||
8. No se incluyen los informes certificado de retención, impuestos por factura e impuestos contabilizados, no están incluidos
|
||||
|
||||
Aclaraciones:
|
||||
|
||||
1. Los informes Balance General y Perdidas y Ganancias, depende de la estructura del PUC para Colombia en el módulo account_co_pymes, como se describen a continuación:
|
||||
1 => Activo
|
||||
2 => Pasivo
|
||||
3 => Patrimonio
|
||||
4 => Ingresos
|
||||
5 => Gastos
|
||||
6 y 7 => Costos
|
||||
|
||||
|
||||
|
||||
|
||||
15
modules/account_co_reports/doc/index.rst
Normal file
15
modules/account_co_reports/doc/index.rst
Normal file
@@ -0,0 +1,15 @@
|
||||
#########################
|
||||
Account Co Reports Module
|
||||
#########################
|
||||
|
||||
.. to remove, see https://www.tryton.org/develop/guidelines/documentation#index.rst
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 2
|
||||
|
||||
setup
|
||||
usage
|
||||
configuration
|
||||
design
|
||||
reference
|
||||
releases
|
||||
112
modules/account_co_reports/income_statement.py
Normal file
112
modules/account_co_reports/income_statement.py
Normal file
@@ -0,0 +1,112 @@
|
||||
# The COPYRIGHT file at the top level of this repository contains the full
|
||||
# copyright notices and license terms.
|
||||
from collections import OrderedDict
|
||||
|
||||
from trytond.model import ModelView, ModelSQL, fields
|
||||
from trytond.report import Report
|
||||
from trytond.pool import Pool, PoolMeta
|
||||
from trytond.transaction import Transaction
|
||||
|
||||
|
||||
class Account(metaclass=PoolMeta):
|
||||
'Income Statement'
|
||||
__name__ = 'account.income_statement.context'
|
||||
utility_temp = fields.Boolean('Utility Temp', help='Permited see the utility without have any account move')
|
||||
|
||||
|
||||
class IncomeStatement(Report):
|
||||
'Income Statement'
|
||||
__name__ = 'account.income_statement'
|
||||
|
||||
@classmethod
|
||||
def get_context(cls, records, header, data):
|
||||
pool = Pool()
|
||||
Type = pool.get('account.account.type')
|
||||
Account = pool.get('account.account')
|
||||
Period = pool.get('account.period')
|
||||
Fiscalyear = pool.get('account.fiscalyear')
|
||||
Company = pool.get('company.company')
|
||||
Context = pool.get('account.income_statement.context')
|
||||
context = Transaction().context
|
||||
|
||||
report_context = super(IncomeStatement, cls).get_context(records, header, data)
|
||||
|
||||
context_fields = Context.fields_get(['start_period', 'fiscalyear'])
|
||||
types = Type.search([
|
||||
('statement', '=', 'income')
|
||||
])
|
||||
accounts_types = []
|
||||
company_id = Transaction().context.get('company')
|
||||
company = Company(company_id)
|
||||
print(context)
|
||||
print('---------------------------------------------------')
|
||||
print(context_fields)
|
||||
print('---------------------------------------------------')
|
||||
print(report_context['data'])
|
||||
print('---------------------------------------------------')
|
||||
records = Type(report_context['data']['id'])
|
||||
fiscalyear_id = Transaction().context.get('fiscalyear')
|
||||
fiscalyear_cmp = Transaction().context.get('fiscalyear_cmp')
|
||||
start_period = Transaction().context.get('start_period')
|
||||
start_period_cmp = Transaction().context.get('start_period_cmp')
|
||||
end_period = Transaction().context.get('end_period')
|
||||
end_period_cmp = Transaction().context.get('end_period_cmp')
|
||||
comparison = Transaction().context.get('comparison')
|
||||
if start_period:
|
||||
start_period = Period(start_period)
|
||||
if end_period:
|
||||
end_period = Period(end_period)
|
||||
|
||||
dom_periods= [
|
||||
('type', '=', 'standard'),
|
||||
('fiscalyear', '=', fiscalyear_id),
|
||||
]
|
||||
if start_period:
|
||||
dom_periods.append(('start_date', '>=', start_period.start_date))
|
||||
if end_period:
|
||||
dom_periods.append(('start_date', '<=', end_period.start_date))
|
||||
range_periods = Period.search(dom_periods)
|
||||
periods_ids = [p.id for p in range_periods]
|
||||
od = {}
|
||||
with Transaction().set_context(periods=periods_ids):
|
||||
while types:
|
||||
type_ = types.pop()
|
||||
if type_.statement == 'income':
|
||||
accounts = Account.search([
|
||||
('type', '=', ''),
|
||||
])
|
||||
|
||||
if accounts:
|
||||
setattr(type_, 'accounts', accounts)
|
||||
accounts_types.append((type_.sequence, type_))
|
||||
if type_.childs:
|
||||
types.extend(list(type_.childs))
|
||||
|
||||
if accounts_types:
|
||||
od = OrderedDict(sorted(dict(accounts_types).items()))
|
||||
|
||||
types_added = []
|
||||
filtered_records = []
|
||||
for k, v in od.items():
|
||||
childs = []
|
||||
for c in v.childs:
|
||||
if c.id not in types_added:
|
||||
childs.append(c)
|
||||
types_added.extend([v.id, c.id])
|
||||
|
||||
setattr(v, 'childs', childs)
|
||||
filtered_records.append(v)
|
||||
|
||||
report_context['start_period'] = start_period
|
||||
report_context['start_period_cmp'] = Period(start_period_cmp)
|
||||
report_context['end_period'] = end_period
|
||||
report_context['end_period_cmp'] = Period(end_period_cmp)
|
||||
report_context['fiscalyear'] = Fiscalyear(fiscalyear_id).name
|
||||
report_context['fiscalyear_cmp'] = Fiscalyear(fiscalyear_cmp).name if fiscalyear_cmp else ''
|
||||
report_context['records'] = filtered_records
|
||||
report_context['comparison'] = comparison
|
||||
report_context['company'] = Company(Transaction().context.get('company'))
|
||||
report_context['date'] = Transaction().context.get('date')
|
||||
|
||||
|
||||
return report_context
|
||||
26
modules/account_co_reports/income_statement.xml
Normal file
26
modules/account_co_reports/income_statement.xml
Normal file
@@ -0,0 +1,26 @@
|
||||
<?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="income_statement_context_view_form_2">
|
||||
<field name="model">account.income_statement.col.context</field>
|
||||
<field name="inherit" ref="account.income_statement_context_view_form"/>
|
||||
<field name="name">income_statement_context_col_form</field>
|
||||
</record>
|
||||
<record model="ir.action.report" id="report_income_statement">
|
||||
<field name="name">Income Statement</field>
|
||||
<field name="model">account.account.type</field>
|
||||
<field name="report_name">account.income_statement</field>
|
||||
<field name="report">account_co_reports/report/income_statement.fods</field>
|
||||
<field name="template_extension">ods</field>
|
||||
</record>
|
||||
<record model="ir.action.keyword" id="report_income_statement_keyword">
|
||||
<field name="keyword">form_print</field>
|
||||
<field name="model">account.account.type,-1</field>
|
||||
<field name="action" ref="report_income_statement"/>
|
||||
</record>
|
||||
|
||||
</data>
|
||||
</tryton>
|
||||
222
modules/account_co_reports/income_statement_colgaap.py
Normal file
222
modules/account_co_reports/income_statement_colgaap.py
Normal file
@@ -0,0 +1,222 @@
|
||||
# The COPYRIGHT file at the top level of this repository contains the full
|
||||
# copyright notices and license terms.
|
||||
from trytond.model import ModelView, ModelSQL, fields
|
||||
from trytond.wizard import Wizard, StateView, Button, StateReport
|
||||
from trytond.pyson import Eval, PYSONEncoder
|
||||
from trytond.transaction import Transaction
|
||||
from trytond.report import Report
|
||||
from trytond.pool import Pool
|
||||
|
||||
|
||||
def compute_report(data, domain, codes, statement='income'):
|
||||
pool = Pool()
|
||||
Fiscalyear = pool.get('account.fiscalyear')
|
||||
Period = pool.get('account.period')
|
||||
Account = pool.get('account.account')
|
||||
|
||||
period = None
|
||||
amount_profit = 0
|
||||
res = {}
|
||||
|
||||
ctx = {
|
||||
'posted': data['posted'],
|
||||
}
|
||||
|
||||
if data.get('period'):
|
||||
period = Period(data['period'])
|
||||
periods = Period.search([
|
||||
('start_date', '<=', period.start_date),
|
||||
])
|
||||
periods_ids = [period.id]
|
||||
periods_ids.extend([p.id for p in periods])
|
||||
ctx['periods'] = periods_ids
|
||||
elif data.get('periods'):
|
||||
ctx['periods'] = data.get('periods')
|
||||
else:
|
||||
ctx['fiscalyear'] = data['fiscalyear']
|
||||
|
||||
if data.get('detailed'):
|
||||
len_code = 6
|
||||
else:
|
||||
len_code = 5
|
||||
domain.append(
|
||||
('type', '=', ''),
|
||||
)
|
||||
|
||||
view_accounts = Account.search(domain)
|
||||
|
||||
reduce_ids = [a.id for a in view_accounts
|
||||
if len(a.code) <= len_code]
|
||||
|
||||
with Transaction().set_context(ctx):
|
||||
accounts = Account.search([
|
||||
('id', 'in', reduce_ids),
|
||||
], order=[('code', 'ASC')]
|
||||
)
|
||||
if data.get('account_profit'):
|
||||
account_profit = Account(data['account_profit'])
|
||||
profit_accounts = Account.search(['OR',
|
||||
('code', 'in', ['4', '5', '6', '7']),
|
||||
])
|
||||
amount_profit = sum([a.balance for a in profit_accounts])
|
||||
|
||||
records = []
|
||||
for a in accounts:
|
||||
if (len(a.code) == 1) or not(a.balance == 0 and len(a.code) >= (len_code - 1)):
|
||||
if statement == 'income':
|
||||
a.balance = a.balance * (-1)
|
||||
records.append(a)
|
||||
res['records'] = records
|
||||
main_accounts = Account.search(['OR',
|
||||
('code', 'in', codes),
|
||||
])
|
||||
|
||||
# Crea una cuenta virtual temporal con la utilidad para ponerla en el Balance
|
||||
if data.get('account_profit'):
|
||||
|
||||
tree_account_assets = []
|
||||
def _add_parents(acc):
|
||||
if acc in res['records']:
|
||||
acc = res['records'].pop(res['records'].index(acc))
|
||||
acc.balance = acc.balance + amount_profit
|
||||
tree_account_assets.append(acc)
|
||||
if acc.parent and acc.parent.code:
|
||||
_add_parents(acc.parent)
|
||||
|
||||
# Split records for keep order
|
||||
_add_parents(account_profit)
|
||||
res['records'].extend(tree_account_assets)
|
||||
new_records = [(rec.code, rec) for rec in res['records']]
|
||||
def getKey(item):
|
||||
return item[1]
|
||||
|
||||
new_records.sort(key=operator.itemgetter(0))
|
||||
res['records'] = [nr[1] for nr in new_records]
|
||||
|
||||
global_result = sum([a.balance for a in main_accounts]) + amount_profit
|
||||
if statement == 'income':
|
||||
global_result = global_result * (-1)
|
||||
|
||||
res['global_result'] = global_result
|
||||
fiscalyear = Fiscalyear(data['fiscalyear'])
|
||||
if period:
|
||||
res['start_date'] = period.start_date
|
||||
res['end_date'] = period.end_date
|
||||
else:
|
||||
periods_dates = []
|
||||
for p in fiscalyear.periods:
|
||||
periods_dates.extend([p.start_date, p.end_date])
|
||||
res['start_date'] = min(periods_dates)
|
||||
res['end_date'] = max(periods_dates)
|
||||
|
||||
res['period'] = period
|
||||
res['fiscalyear'] = fiscalyear
|
||||
return res
|
||||
|
||||
|
||||
class PrintIncomeStatementCOLGAAPStart(ModelView):
|
||||
'Print Balance Sheet <Up>art'
|
||||
__name__ = 'account_co_reports.print_income_statement_colgaap.start'
|
||||
fiscalyear = fields.Many2One('account.fiscalyear', 'Fiscal Year',
|
||||
help='Leave empty for all open fiscal year', required=True)
|
||||
posted = fields.Boolean('Posted Moves', help='Show posted moves only')
|
||||
start_period = fields.Many2One('account.period', 'Start Period',
|
||||
domain=[
|
||||
('fiscalyear', '=', Eval('fiscalyear')),
|
||||
('type', '=', 'standard'),
|
||||
], depends=['fiscalyear'], required=True)
|
||||
end_period = fields.Many2One('account.period', 'End Period',
|
||||
domain=[
|
||||
('fiscalyear', '=', Eval('fiscalyear')),
|
||||
('type', '=', 'standard'),
|
||||
], depends=['fiscalyear'], required=True)
|
||||
company = fields.Many2One('company.company', 'Company', required=True)
|
||||
detailed = fields.Boolean('Detailed')
|
||||
|
||||
@staticmethod
|
||||
def default_posted():
|
||||
return False
|
||||
|
||||
@staticmethod
|
||||
def default_company():
|
||||
return Transaction().context.get('company')
|
||||
|
||||
@fields.depends('fiscalyear')
|
||||
def on_change_fiscalyear(self):
|
||||
self.start_period = None
|
||||
self.end_period = None
|
||||
|
||||
@fields.depends('start_period')
|
||||
def on_change_start_period(self):
|
||||
self.end_period = self.start_period.id
|
||||
|
||||
|
||||
class PrintIncomeStatementCOLGAAP(Wizard):
|
||||
'Print Balance Sheet COLGAAP'
|
||||
__name__ = 'account_co_reports.print_income_statement_colgaap'
|
||||
start = StateView('account_co_reports.print_income_statement_colgaap.start',
|
||||
'account_co_reports.print_income_statement_colgaap_start_view_form', [
|
||||
Button('Cancel', 'end', 'tryton-cancel'),
|
||||
Button('Print', 'print_', 'tryton-print', default=True),
|
||||
])
|
||||
print_ = StateReport('account_co_reports.income_statement_colgaap')
|
||||
|
||||
def do_print_(self, action):
|
||||
Period = Pool().get('account.period')
|
||||
|
||||
ctx = {
|
||||
'fiscalyear': self.start.fiscalyear.id,
|
||||
'posted': self.start.posted,
|
||||
'cumulate': True,
|
||||
}
|
||||
|
||||
periods = Period.search([
|
||||
('start_date', '>=', self.start.start_period.start_date),
|
||||
('end_date', '<=', self.start.end_period.end_date),
|
||||
('type', '=', 'standard'),
|
||||
])
|
||||
|
||||
periods_ids = [p.id for p in periods]
|
||||
ctx['periods'] = periods_ids
|
||||
|
||||
action['pyson_context'] = PYSONEncoder().encode(ctx)
|
||||
|
||||
data = {
|
||||
'fiscalyear': self.start.fiscalyear.id,
|
||||
'periods': periods_ids,
|
||||
'start_period': self.start.start_period.id,
|
||||
'end_period': self.start.end_period.id,
|
||||
'company': self.start.company.id,
|
||||
'detailed': self.start.detailed,
|
||||
'posted': self.start.posted,
|
||||
}
|
||||
return action, data
|
||||
|
||||
def transition_print_(self):
|
||||
return 'end'
|
||||
|
||||
|
||||
class IncomeStatementCOLGAAP(Report):
|
||||
__name__ = 'account_co_reports.income_statement_colgaap'
|
||||
|
||||
@classmethod
|
||||
def get_context(cls, records, header, data):
|
||||
report_context = super(IncomeStatementCOLGAAP, cls).get_context(records, header, data)
|
||||
pool = Pool()
|
||||
Company = pool.get('company.company')
|
||||
Period = pool.get('account.period')
|
||||
company = Company(data['company'])
|
||||
|
||||
codes = ['4', '5', '6', '7']
|
||||
domain = [
|
||||
('code', '>=', '4'),
|
||||
]
|
||||
res = compute_report(data, domain, codes, statement='income')
|
||||
|
||||
report_context.update(res)
|
||||
report_context['start_period'] = Period(data['start_period'])
|
||||
report_context['end_period'] = Period(data['end_period'])
|
||||
report_context['detailed'] = data['detailed']
|
||||
report_context['company'] = company
|
||||
report_context['fiscalyear2'] = None
|
||||
return report_context
|
||||
27
modules/account_co_reports/income_statement_colgaap.xml
Normal file
27
modules/account_co_reports/income_statement_colgaap.xml
Normal 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. -->
|
||||
<tryton>
|
||||
<data>
|
||||
|
||||
<record model="ir.action.report" id="report_income_statement_colgaap">
|
||||
<field name="name">Income Statement COLGAAP</field>
|
||||
<field name="model"></field>
|
||||
<field name="report_name">account_co_reports.income_statement_colgaap</field>
|
||||
<field name="report">account_co_reports/report/income_statement_colgaap.fods</field>
|
||||
<field name="template_extension">ods</field>
|
||||
</record>
|
||||
<record model="ir.ui.view" id="print_income_statement_colgaap_start_view_form">
|
||||
<field name="model">account_co_reports.print_income_statement_colgaap.start</field>
|
||||
<field name="type">form</field>
|
||||
<field name="name">print_income_statement_colgaap_start_form</field>
|
||||
</record>
|
||||
<record model="ir.action.wizard" id="wizard_print_income_statement_colgaap">
|
||||
<field name="name">Income Statement COLGAAP</field>
|
||||
<field name="wiz_name">account_co_reports.print_income_statement_colgaap</field>
|
||||
</record>
|
||||
<menuitem parent="account.menu_reporting" action="wizard_print_income_statement_colgaap"
|
||||
id="menu_print_income_statement_colgaap" icon="tryton-print"/>
|
||||
|
||||
</data>
|
||||
</tryton>
|
||||
1647
modules/account_co_reports/locale/es.po
Executable file
1647
modules/account_co_reports/locale/es.po
Executable file
File diff suppressed because it is too large
Load Diff
284
modules/account_co_reports/party_book_account.py
Executable file
284
modules/account_co_reports/party_book_account.py
Executable file
@@ -0,0 +1,284 @@
|
||||
# The COPYRIGHT file at the top level of this repository contains the full
|
||||
# copyright notices and license terms.
|
||||
from decimal import Decimal
|
||||
import operator
|
||||
|
||||
from trytond.model import fields, ModelView, ModelSQL
|
||||
from trytond.pool import Pool
|
||||
from trytond.transaction import Transaction
|
||||
from trytond.pyson import Eval
|
||||
|
||||
from sql import Column, Cast, Literal, Null
|
||||
from sql.aggregate import Sum, Max, Count
|
||||
from sql.operators import Concat
|
||||
from sql.conditionals import Coalesce
|
||||
|
||||
# TODO seria mejor PartyLedger?
|
||||
class PartyBookAccount(ModelSQL, ModelView):
|
||||
'Party Book Account'
|
||||
__name__ = 'account_co_reports.party_book_account'
|
||||
|
||||
party = fields.Many2One('party.party', 'Party')
|
||||
company = fields.Many2One('company.company', 'Company')
|
||||
account = fields.Many2One('account.account', 'Account')
|
||||
|
||||
name = fields.Function(fields.Char('Name'),
|
||||
'get_account', searcher='search_name')
|
||||
|
||||
code = fields.Function(fields.Char('Code'),
|
||||
'get_account')
|
||||
|
||||
debit = fields.Function(fields.Numeric('Debit',
|
||||
digits=(16, Eval('currency_digits', 2)),
|
||||
depends=['currency_digits']),
|
||||
'get_credit_debit')
|
||||
|
||||
credit = fields.Function(fields.Numeric('Credit',
|
||||
digits=(16, Eval('currency_digits', 2)),
|
||||
depends=['currency_digits']),
|
||||
'get_credit_debit')
|
||||
|
||||
balance = fields.Function(fields.Numeric('Balance',
|
||||
digits=(16, Eval('currency_digits', 2)),
|
||||
depends=['currency_digits']),
|
||||
'get_balance')
|
||||
|
||||
|
||||
currency_digits = fields.Function(fields.Integer('Currency Digits'),
|
||||
'get_currency_digits')
|
||||
|
||||
|
||||
|
||||
@classmethod
|
||||
def _combine_column_id(cls, line):
|
||||
return Cast(Concat(Cast(line.party, 'varchar'),
|
||||
Cast(line.account, 'varchar')), 'int')
|
||||
|
||||
@classmethod
|
||||
def get_period_ids(cls, name):
|
||||
pool = Pool()
|
||||
Period = pool.get('account.period')
|
||||
context = Transaction().context
|
||||
|
||||
period = None
|
||||
period_ids = []
|
||||
if name.startswith('start_'):
|
||||
if context.get('start_period'):
|
||||
period = Period(context.get('start_period'))
|
||||
elif name.startswith('end_'):
|
||||
if context.get('end_period'):
|
||||
period = Period(context.get('end_period'))
|
||||
else:
|
||||
periods = Period.search([
|
||||
('fiscalyear', '=', context.get('fiscalyear')),
|
||||
('type', '=', 'standard'),
|
||||
], order=[('start_date', 'DESC')], limit=1)
|
||||
if periods:
|
||||
period, = periods
|
||||
|
||||
if period:
|
||||
periods = Period.search([
|
||||
('fiscalyear', '=', context.get('fiscalyear')),
|
||||
('end_date', '<=', period.end_date),
|
||||
])
|
||||
if period.start_date == period.end_date:
|
||||
periods.append(period)
|
||||
if periods:
|
||||
period_ids = [p.id for p in periods]
|
||||
return period_ids
|
||||
|
||||
@classmethod
|
||||
def get_range_period_ids(cls):
|
||||
start_period_ids = cls.get_period_ids('start_period')
|
||||
end_period_ids = cls.get_period_ids('end_period')
|
||||
periods_ids = list(
|
||||
set(end_period_ids).difference(set(start_period_ids)))
|
||||
if not periods_ids:
|
||||
return [-1]
|
||||
return periods_ids
|
||||
|
||||
@classmethod
|
||||
def _posted_query(cls, table):
|
||||
if Transaction().context.get('posted'):
|
||||
return table.state == 'posted'
|
||||
return Literal(True)
|
||||
|
||||
@classmethod
|
||||
def table_query(cls):
|
||||
pool = Pool()
|
||||
context = Transaction().context
|
||||
Account = pool.get('account.account')
|
||||
MoveLine = pool.get('account.move.line')
|
||||
Move = pool.get('account.move')
|
||||
Party = pool.get('party.party')
|
||||
|
||||
|
||||
line = MoveLine.__table__()
|
||||
move = Move.__table__()
|
||||
account = Account.__table__()
|
||||
|
||||
columns = [
|
||||
cls._combine_column_id(line).as_('id'),
|
||||
Literal(0).as_('create_uid'),
|
||||
Max(line.create_date).as_('create_date'),
|
||||
Literal(0).as_('write_uid'),
|
||||
Max(line.write_date).as_('write_date'),
|
||||
Count(line.account).as_('total_accounts'),
|
||||
line.party.as_('party'),
|
||||
move.company.as_('company'),
|
||||
line.account.as_('account'),
|
||||
]
|
||||
|
||||
|
||||
return line.join(move, condition=line.move == move.id) \
|
||||
.join(account, condition=line.account == account.id) \
|
||||
.select(*columns,
|
||||
where=cls._posted_query(move)
|
||||
& (line.party != Null)
|
||||
& (account.type != Null)
|
||||
& (account.closed != Literal(True))
|
||||
& (move.period.in_(cls.get_range_period_ids()))
|
||||
& (account.company == context.get('company')),
|
||||
group_by=(move.company, line.party, line.account))
|
||||
|
||||
@classmethod
|
||||
def get_credit_debit(cls, records, names):
|
||||
pool = Pool()
|
||||
context = Transaction().context
|
||||
Account = pool.get('account.account')
|
||||
MoveLine = pool.get('account.move.line')
|
||||
Move = pool.get('account.move')
|
||||
Party = pool.get('party.party')
|
||||
|
||||
|
||||
ids = [r.id for r in records]
|
||||
results = {}
|
||||
account_ids = [r.account.id for r in records]
|
||||
party_ids = [r.party.id for r in records]
|
||||
|
||||
for name in names:
|
||||
results[name] = dict((i, Decimal(0)) for i in ids)
|
||||
|
||||
cursor = Transaction().connection.cursor()
|
||||
line = MoveLine.__table__()
|
||||
move = Move.__table__()
|
||||
account = Account.__table__()
|
||||
|
||||
columns = [cls._combine_column_id(line).as_('id')]
|
||||
for name in names:
|
||||
columns.append(Sum(Coalesce(Column(line, name), 0)))
|
||||
|
||||
cursor.execute(*line.join(move, condition=line.move == move.id) \
|
||||
.join(account, condition=line.account == account.id) \
|
||||
.select(*columns,
|
||||
where=cls._posted_query(move)
|
||||
& (line.party.in_(party_ids))
|
||||
& (line.account.in_(account_ids))
|
||||
& (move.period.in_(cls.get_range_period_ids())),
|
||||
group_by=(account.company, line.party, line.account)))
|
||||
|
||||
for row in cursor.fetchall():
|
||||
line_id = row[0]
|
||||
|
||||
for i, name in enumerate(names, 1):
|
||||
results[name][line_id] += Decimal(str(row[i]))
|
||||
|
||||
return results
|
||||
|
||||
@classmethod
|
||||
def search_name(cls, name, domain):
|
||||
pool = Pool()
|
||||
Account = pool.get('account.account')
|
||||
|
||||
period_ids = cls.get_period_ids(name)
|
||||
with Transaction().set_context(periods=period_ids):
|
||||
accounts = Account.search([], order=[])
|
||||
|
||||
_, operator_, operand = domain
|
||||
operator_ = {
|
||||
'=': operator.eq,
|
||||
'>=': operator.ge,
|
||||
'>': operator.gt,
|
||||
'<=': operator.le,
|
||||
'<': operator.lt,
|
||||
'!=': operator.ne,
|
||||
'in': lambda v, l: v in l,
|
||||
'not in': lambda v, l: v not in l,
|
||||
}.get(operator_, lambda v, l: False)
|
||||
fname = name
|
||||
for test in ['start_', 'end_']:
|
||||
if name.startswith(test):
|
||||
fname = name[len(test):]
|
||||
break
|
||||
|
||||
ids = [a.id for a in accounts
|
||||
if operator_(getattr(a, fname), operand)]
|
||||
return [('id', 'in', ids)]
|
||||
|
||||
|
||||
def get_balance(self, name):
|
||||
return 0
|
||||
|
||||
|
||||
def get_account(self, name):
|
||||
return getattr(self.account, name)
|
||||
|
||||
|
||||
@staticmethod
|
||||
def default_company():
|
||||
return Transaction().context['company']
|
||||
|
||||
def get_currency_digits(self, name):
|
||||
return self.company.currency.digits
|
||||
|
||||
|
||||
class PartyBookAccountContext(ModelView):
|
||||
'Party Book Account'
|
||||
__name__ = 'account_co_reports.party_book_account.context'
|
||||
fiscalyear = fields.Many2One('account.fiscalyear', 'Fiscal Year',
|
||||
required=True)
|
||||
start_period = fields.Many2One('account.period', 'Start Period',
|
||||
domain=[
|
||||
('fiscalyear', '=', Eval('fiscalyear')),
|
||||
], depends=['fiscalyear', 'end_period'])
|
||||
end_period = fields.Many2One('account.period', 'End Period',
|
||||
domain=[
|
||||
('fiscalyear', '=', Eval('fiscalyear')),
|
||||
], depends=['fiscalyear', 'start_period'])
|
||||
company = fields.Many2One('company.company', 'Company', required=True)
|
||||
posted = fields.Boolean('Posted Move', help='Show only posted move')
|
||||
|
||||
@classmethod
|
||||
def default_fiscalyear(cls):
|
||||
pool = Pool()
|
||||
FiscalYear = pool.get('account.fiscalyear')
|
||||
context = Transaction().context
|
||||
return context.get(
|
||||
'fiscalyear',
|
||||
FiscalYear.find(context.get('company'), exception=False))
|
||||
|
||||
@classmethod
|
||||
def default_start_period(cls):
|
||||
return Transaction().context.get('start_period')
|
||||
|
||||
@classmethod
|
||||
def default_end_period(cls):
|
||||
return Transaction().context.get('end_period')
|
||||
|
||||
@classmethod
|
||||
def default_company(cls):
|
||||
return Transaction().context.get('company')
|
||||
|
||||
@classmethod
|
||||
def default_posted(cls):
|
||||
return Transaction().context.get('posted', False)
|
||||
|
||||
|
||||
@fields.depends('fiscalyear', 'start_period', 'end_period')
|
||||
def on_change_fiscalyear(self):
|
||||
if (self.start_period
|
||||
and self.start_period.fiscalyear != self.fiscalyear):
|
||||
self.start_period = None
|
||||
if (self.end_period
|
||||
and self.end_period.fiscalyear != self.fiscalyear):
|
||||
self.end_period = None
|
||||
19
modules/account_co_reports/party_book_account.xml
Normal file
19
modules/account_co_reports/party_book_account.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0"?>
|
||||
<tryton>
|
||||
<data>
|
||||
<record model="ir.action.act_window" id="act_party_book_account_form">
|
||||
<field name="name">Party Book Account</field>
|
||||
<field name="res_model">account_co_reports.party_book_account</field>
|
||||
<field name="context_model">account_co_reports.party_book_account.context</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="party_book_account_tree">
|
||||
<field name="model">account_co_reports.party_book_account</field>
|
||||
<field name="type">tree</field>
|
||||
<field name="name">party_book_account_tree</field>
|
||||
</record>
|
||||
|
||||
<menuitem parent="account.menu_reporting" action="act_party_book_account_form"
|
||||
id="menu_party_book_account" name="Party Book Account" sequence="20"/>
|
||||
</data>
|
||||
</tryton>
|
||||
1415
modules/account_co_reports/report/auxiliary_book.fods
Normal file
1415
modules/account_co_reports/report/auxiliary_book.fods
Normal file
File diff suppressed because it is too large
Load Diff
949
modules/account_co_reports/report/auxiliary_party.fods
Normal file
949
modules/account_co_reports/report/auxiliary_party.fods
Normal file
@@ -0,0 +1,949 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<office:document xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" 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.spreadsheet">
|
||||
<office:meta><meta:creation-date>2015-03-21T09:18:00.143995121</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/7.3.7.2$Linux_X86_64 LibreOffice_project/30$Build-2</meta:generator><meta:document-statistic meta:table-count="1" meta:cell-count="59" meta:object-count="0"/></office:meta>
|
||||
<office:settings>
|
||||
<config:config-item-set config:name="ooo:view-settings">
|
||||
<config:config-item config:name="VisibleAreaTop" config:type="int">187</config:config-item>
|
||||
<config:config-item config:name="VisibleAreaLeft" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="VisibleAreaWidth" config:type="int">21250</config:config-item>
|
||||
<config:config-item config:name="VisibleAreaHeight" config:type="int">12998</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">view1</config:config-item>
|
||||
<config:config-item-map-named config:name="Tables">
|
||||
<config:config-item-map-entry config:name="Hoja1">
|
||||
<config:config-item config:name="CursorPositionX" config:type="int">4</config:config-item>
|
||||
<config:config-item config:name="CursorPositionY" config:type="int">3</config:config-item>
|
||||
<config:config-item config:name="ActiveSplitRange" config:type="short">2</config:config-item>
|
||||
<config:config-item config:name="PositionLeft" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="PositionRight" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="PositionTop" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="PositionBottom" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
|
||||
<config:config-item config:name="ZoomValue" config:type="int">180</config:config-item>
|
||||
<config:config-item config:name="PageViewZoomValue" config:type="int">140</config:config-item>
|
||||
<config:config-item config:name="ShowGrid" 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-named>
|
||||
<config:config-item config:name="ActiveTable" config:type="string">Hoja1</config:config-item>
|
||||
<config:config-item config:name="HorizontalScrollbarWidth" config:type="int">1845</config:config-item>
|
||||
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
|
||||
<config:config-item config:name="ZoomValue" config:type="int">180</config:config-item>
|
||||
<config:config-item config:name="PageViewZoomValue" config:type="int">140</config:config-item>
|
||||
<config:config-item config:name="ShowPageBreakPreview" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="GridColor" config:type="int">12632256</config:config-item>
|
||||
<config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="HasColumnRowHeaders" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="HasSheetTabs" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="IsValueHighlightingEnabled" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="IsSnapToRaster" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="RasterIsVisible" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="RasterResolutionX" config:type="int">1000</config:config-item>
|
||||
<config:config-item config:name="RasterResolutionY" config:type="int">1000</config:config-item>
|
||||
<config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item>
|
||||
<config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item>
|
||||
<config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</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="AllowPrintJobCancel" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="ApplyUserData" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="AutoCalculate" 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="EmbedAsianScriptFonts" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="EmbedComplexScriptFonts" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="EmbedFonts" config:type="boolean">false</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-map-indexed config:name="ForbiddenCharacters">
|
||||
<config:config-item-map-entry>
|
||||
<config:config-item config:name="Language" config:type="string">en</config:config-item>
|
||||
<config:config-item config:name="Country" config:type="string">US</config:config-item>
|
||||
<config:config-item config:name="Variant" config:type="string"/>
|
||||
<config:config-item config:name="BeginLine" config:type="string"/>
|
||||
<config:config-item config:name="EndLine" config:type="string"/>
|
||||
</config:config-item-map-entry>
|
||||
<config:config-item-map-entry>
|
||||
<config:config-item config:name="Language" config:type="string">es</config:config-item>
|
||||
<config:config-item config:name="Country" config:type="string">CO</config:config-item>
|
||||
<config:config-item config:name="Variant" config:type="string"/>
|
||||
<config:config-item config:name="BeginLine" config:type="string"/>
|
||||
<config:config-item config:name="EndLine" config:type="string"/>
|
||||
</config:config-item-map-entry>
|
||||
</config:config-item-map-indexed>
|
||||
<config:config-item config:name="GridColor" config:type="int">12632256</config:config-item>
|
||||
<config:config-item config:name="HasColumnRowHeaders" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="HasSheetTabs" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="IsDocumentShared" 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="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="IsSnapToRaster" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="LinkUpdateMode" config:type="short">3</config:config-item>
|
||||
<config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="PrinterName" config:type="string">Generic Printer</config:config-item>
|
||||
<config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="PrinterSetup" config:type="base64Binary">mAH+/0dlbmVyaWMgUHJpbnRlcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAU0dFTlBSVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAMAuQAAAAAAAAAIAFZUAAAkbQAASm9iRGF0YSAxCnByaW50ZXI9R2VuZXJpYyBQcmludGVyCm9yaWVudGF0aW9uPVBvcnRyYWl0CmNvcGllcz0xCmNvbGxhdGU9ZmFsc2UKbWFyZ2luYWRqdXN0bWVudD0wLDAsMCwwCmNvbG9yZGVwdGg9MjQKcHNsZXZlbD0wCnBkZmRldmljZT0xCmNvbG9yZGV2aWNlPTAKUFBEQ29udGV4dERhdGEKUGFnZVNpemU6TGV0dGVyAAASAENPTVBBVF9EVVBMRVhfTU9ERQ8ARHVwbGV4TW9kZTo6T2Zm</config:config-item>
|
||||
<config:config-item config:name="RasterIsVisible" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="RasterResolutionX" config:type="int">1000</config:config-item>
|
||||
<config:config-item config:name="RasterResolutionY" config:type="int">1000</config:config-item>
|
||||
<config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item>
|
||||
<config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item>
|
||||
<config:config-item config:name="SaveThumbnail" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="SyntaxStringRef" config:type="short">0</config:config-item>
|
||||
<config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
|
||||
<config:config-item-map-named config:name="ScriptConfiguration">
|
||||
<config:config-item-map-entry config:name="Hoja1">
|
||||
<config:config-item config:name="CodeName" config:type="string">Hoja1</config:config-item>
|
||||
</config:config-item-map-entry>
|
||||
</config:config-item-map-named>
|
||||
</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="Arial" svg:font-family="Arial" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="DejaVu Sans" svg:font-family="'DejaVu Sans'" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="DejaVu Sans Condensed" svg:font-family="'DejaVu Sans Condensed'" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="DejaVu Sans Light" svg:font-family="'DejaVu Sans Light'" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="DejaVu Sans1" svg:font-family="'DejaVu Sans'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="Droid Sans Fallback" svg:font-family="'Droid Sans Fallback'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="Liberation Sans" svg:font-family="'Liberation Sans'" style:font-adornments="Normal" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="Liberation Sans1" svg:font-family="'Liberation Sans'" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="Lohit Hindi" svg:font-family="'Lohit Hindi'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||
</office:font-face-decls>
|
||||
<office:styles>
|
||||
<style:default-style style:family="table-cell">
|
||||
<style:paragraph-properties style:tab-stop-distance="1.25cm"/>
|
||||
<style:text-properties style:font-name="Arial" fo:font-size="10pt" fo:language="es" fo:country="CO" style:font-name-asian="DejaVu Sans1" style:font-size-asian="10pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="DejaVu Sans1" style:font-size-complex="10pt" style:language-complex="hi" style:country-complex="IN"/>
|
||||
</style:default-style>
|
||||
<number:number-style style:name="N0">
|
||||
<number:number number:min-integer-digits="1"/>
|
||||
</number:number-style>
|
||||
<number:currency-style style:name="N104P0" style:volatile="true">
|
||||
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
</number:currency-style>
|
||||
<number:currency-style style:name="N104">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
<number:text>(</number:text>
|
||||
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text>)</number:text>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N104P0"/>
|
||||
</number:currency-style>
|
||||
<number:number-style style:name="N110P0" style:volatile="true">
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1"/>
|
||||
</number:number-style>
|
||||
<number:number-style style:name="N110">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
<number:text>-</number:text>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1"/>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N110P0"/>
|
||||
</number:number-style>
|
||||
<number:currency-style style:name="N109P0" style:volatile="true">
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text> </number:text>
|
||||
<number:currency-symbol number:language="fr" number:country="BE">€</number:currency-symbol>
|
||||
</number:currency-style>
|
||||
<number:currency-style style:name="N109">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
<number:text>-</number:text>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text> </number:text>
|
||||
<number:currency-symbol number:language="fr" number:country="BE">€</number:currency-symbol>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N109P0"/>
|
||||
</number:currency-style>
|
||||
<number:currency-style style:name="N10108P0" style:volatile="true" number:language="sl" number:country="SI">
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text> </number:text>
|
||||
<number:currency-symbol number:language="sl" number:country="SI">€</number:currency-symbol>
|
||||
</number:currency-style>
|
||||
<number:currency-style style:name="N10108" number:language="sl" number:country="SI">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
<number:text>-</number:text>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text> </number:text>
|
||||
<number:currency-symbol number:language="sl" number:country="SI">€</number:currency-symbol>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N10108P0"/>
|
||||
</number:currency-style>
|
||||
<style:style style:name="Default" style:family="table-cell">
|
||||
<style:text-properties style:font-name-asian="Droid Sans Fallback" style:font-family-asian="'Droid Sans Fallback'" style:font-family-generic-asian="system" style:font-pitch-asian="variable" style:font-name-complex="Lohit Hindi" style:font-family-complex="'Lohit Hindi'" style:font-family-generic-complex="system" style:font-pitch-complex="variable"/>
|
||||
</style:style>
|
||||
<style:style style:name="Heading" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/>
|
||||
<style:paragraph-properties fo:text-align="center"/>
|
||||
<style:text-properties fo:font-size="16pt" fo:font-style="italic" fo:font-weight="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="Heading_20_1" style:display-name="Heading 1" style:family="table-cell" style:parent-style-name="Heading">
|
||||
<style:table-cell-properties style:rotation-angle="90"/>
|
||||
</style:style>
|
||||
<style:style style:name="Heading_20_2" style:display-name="Heading 2" style:family="table-cell" style:parent-style-name="Heading">
|
||||
<style:text-properties fo:color="#000000" fo:font-size="12pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Text" style:family="table-cell" style:parent-style-name="Default"/>
|
||||
<style:style style:name="Note" style:family="table-cell" style:parent-style-name="Text">
|
||||
<style:table-cell-properties fo:background-color="#ffffcc" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" fo:border="0.74pt solid #808080"/>
|
||||
<style:text-properties fo:color="#333333" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Footnote" style:family="table-cell" style:parent-style-name="Text">
|
||||
<style:text-properties fo:color="#808080" fo:font-size="10pt" fo:font-style="italic" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Hyperlink" style:family="table-cell" style:parent-style-name="Text">
|
||||
<style:text-properties fo:color="#0000ee" fo:font-size="10pt" fo:font-style="normal" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="#0000ee" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Status" style:family="table-cell" style:parent-style-name="Default"/>
|
||||
<style:style style:name="Good" style:family="table-cell" style:parent-style-name="Status">
|
||||
<style:table-cell-properties fo:background-color="#ccffcc"/>
|
||||
<style:text-properties fo:color="#006600" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Neutral" style:family="table-cell" style:parent-style-name="Status">
|
||||
<style:table-cell-properties fo:background-color="#ffffcc"/>
|
||||
<style:text-properties fo:color="#996600" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Bad" style:family="table-cell" style:parent-style-name="Status">
|
||||
<style:table-cell-properties fo:background-color="#ffcccc"/>
|
||||
<style:text-properties fo:color="#cc0000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Warning" style:family="table-cell" style:parent-style-name="Status">
|
||||
<style:text-properties fo:color="#cc0000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Error" style:family="table-cell" style:parent-style-name="Status">
|
||||
<style:table-cell-properties fo:background-color="#cc0000"/>
|
||||
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="Accent" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#000000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="Accent_20_1" style:display-name="Accent 1" style:family="table-cell" style:parent-style-name="Accent">
|
||||
<style:table-cell-properties fo:background-color="#000000"/>
|
||||
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Accent_20_2" style:display-name="Accent 2" style:family="table-cell" style:parent-style-name="Accent">
|
||||
<style:table-cell-properties fo:background-color="#808080"/>
|
||||
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Accent_20_3" style:display-name="Accent 3" style:family="table-cell" style:parent-style-name="Accent">
|
||||
<style:table-cell-properties fo:background-color="#dddddd"/>
|
||||
</style:style>
|
||||
<style:style style:name="Result" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:font-style="italic" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="Heading" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/>
|
||||
<style:paragraph-properties fo:text-align="center"/>
|
||||
<style:text-properties fo:font-size="16pt" fo:font-style="italic" fo:font-weight="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="Result2" style:family="table-cell" style:parent-style-name="Result" style:data-style-name="N104"/>
|
||||
<style:style style:name="Sin_20_nombre1" style:display-name="Sin nombre1" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#ff0000" style:font-name="Liberation Sans" fo:font-family="'Liberation Sans'" style:font-style-name="Normal" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
</style:style>
|
||||
<style:style style:name="Sin_20_nombre2" style:display-name="Sin nombre2" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
</style:style>
|
||||
<style:style style:name="Sin_20_nombre3" style:display-name="Sin nombre3" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
</style:style>
|
||||
<style:style style:name="Sin_20_nombre4" style:display-name="Sin nombre4" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
</style:style>
|
||||
<style:style style:name="Sin_20_nombre5" style:display-name="Sin nombre5" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
</style:style>
|
||||
</office:styles>
|
||||
<office:automatic-styles>
|
||||
<style:style style:name="co1" style:family="table-column">
|
||||
<style:table-column-properties fo:break-before="auto" style:column-width="1.561cm"/>
|
||||
</style:style>
|
||||
<style:style style:name="co2" style:family="table-column">
|
||||
<style:table-column-properties fo:break-before="auto" style:column-width="1.926cm"/>
|
||||
</style:style>
|
||||
<style:style style:name="co3" style:family="table-column">
|
||||
<style:table-column-properties fo:break-before="auto" style:column-width="4.226cm"/>
|
||||
</style:style>
|
||||
<style:style style:name="co4" style:family="table-column">
|
||||
<style:table-column-properties fo:break-before="auto" style:column-width="5.246cm"/>
|
||||
</style:style>
|
||||
<style:style style:name="co5" style:family="table-column">
|
||||
<style:table-column-properties fo:break-before="auto" style:column-width="2.117cm"/>
|
||||
</style:style>
|
||||
<style:style style:name="co6" style:family="table-column">
|
||||
<style:table-column-properties fo:break-before="auto" style:column-width="2.281cm"/>
|
||||
</style:style>
|
||||
<style:style style:name="co7" style:family="table-column">
|
||||
<style:table-column-properties fo:break-before="auto" style:column-width="1.776cm"/>
|
||||
</style:style>
|
||||
<style:style style:name="co8" style:family="table-column">
|
||||
<style:table-column-properties fo:break-before="auto" style:column-width="2.258cm"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro1" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.187cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro2" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.545cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro3" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.584cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro4" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.487cm" fo:break-before="auto" style:use-optimal-row-height="true"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro5" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.552cm" fo:break-before="auto" style:use-optimal-row-height="true"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro6" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.376cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro7" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.138cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro8" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.4cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro9" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.695cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ta1" style:family="table" style:master-page-name="Default">
|
||||
<style:table-properties table:display="true" style:writing-mode="lr-tb"/>
|
||||
</style:style>
|
||||
<number:text-style style:name="N100">
|
||||
<number:text-content/>
|
||||
</number:text-style>
|
||||
<number:number-style style:name="N20003" number:language="es" number:country="CO">
|
||||
<number:number number:decimal-places="0" number:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
|
||||
</number:number-style>
|
||||
<number:date-style style:name="N20036" number:language="es" number:country="CO" number:automatic-order="true">
|
||||
<number:day number:style="long"/>
|
||||
<number:text>/</number:text>
|
||||
<number:month number:style="long"/>
|
||||
<number:text>/</number:text>
|
||||
<number:year number:style="long"/>
|
||||
</number:date-style>
|
||||
<number:currency-style style:name="N20103P0" style:volatile="true" number:language="es" number:country="CO">
|
||||
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
|
||||
<number:number number:decimal-places="0" number:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
|
||||
</number:currency-style>
|
||||
<number:currency-style style:name="N20103" number:language="es" number:country="CO">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
<number:text>(</number:text>
|
||||
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
|
||||
<number:number number:decimal-places="0" number:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text>)</number:text>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N20103P0"/>
|
||||
</number:currency-style>
|
||||
<number:number-style style:name="N30000" number:language="en" number:country="US">
|
||||
<number:number number:min-integer-digits="1"/>
|
||||
</number:number-style>
|
||||
<style:style style:name="ce104" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="11pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="11pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="11pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce2" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:font-weight="normal" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce107" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20103">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#333333" style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce108" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N100">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:language="es" fo:country="CO" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce109" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:background-color="#cfe7f5" style:vertical-align="middle"/>
|
||||
<style:text-properties fo:color="#333333" style:font-name="DejaVu Sans" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce110" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="value-type" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce111" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N100">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#ffffff" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:language="es" fo:country="CO" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce112" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:background-color="#eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border="0.06pt solid #ffffff" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#1c1c1c" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="6pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce113" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce114" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20036">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce115" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N100">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:language="es" fo:country="CO" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce116" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N100">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:language="es" fo:country="CO" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce117" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties style:text-align-source="value-type" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce118" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce119" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N100">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce120" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="11pt" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce121" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans Condensed" fo:font-size="9pt" fo:font-weight="bold" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce18" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans Condensed" fo:font-size="8pt" fo:font-weight="bold" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce123" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:vertical-align="middle"/>
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce122" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="0.06pt solid #ffffff" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#808080" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans Light" fo:font-size="12pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="12pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="12pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce124" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties fo:background-color="#cfe7f5" style:text-align-source="fix" style:repeat-content="false" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:font-weight="normal" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce125" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#333333" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:font-weight="bold" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-weight-asian="bold" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce126" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:background-color="#eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:wrap-option="wrap" fo:border="0.06pt solid #ffffff" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#1c1c1c" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="6pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce127" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce128" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="6pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce129" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:vertical-align="middle"/>
|
||||
<style:text-properties style:font-name="DejaVu Sans"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce130" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="11pt" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce131" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties fo:background-color="#cfe7f5" style:text-align-source="fix" style:repeat-content="false" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:font-weight="bold" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce132" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#333333" style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce133" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties fo:background-color="#cfe7f5" style:text-align-source="fix" style:repeat-content="false" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans" fo:font-size="7pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce134" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#ffffff" style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce135" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N100">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" fo:background-color="#eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="6pt" fo:font-weight="bold" style:font-size-asian="6pt" style:font-weight-asian="bold" style:font-size-complex="6pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce136" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N100">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #000000" fo:background-color="#ffffff" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #000000" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="6pt" fo:font-weight="normal" style:font-size-asian="6pt" style:font-weight-asian="normal" style:font-size-complex="6pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce137" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce138" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:font-name="DejaVu Sans" 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="ce139" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:border-bottom="none" style:text-align-source="fix" style:repeat-content="false" fo:border-left="0.26pt solid #cfe7f5" fo:border-right="none" fo:border-top="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center"/>
|
||||
<style:text-properties fo:color="#666666" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="7pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce140" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:border-bottom="none" style:text-align-source="fix" style:repeat-content="false" fo:border-left="0.26pt solid #cfe7f5" fo:border-right="none" fo:border-top="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center"/>
|
||||
<style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="7pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce141" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties fo:background-color="#cfe7f5" style:text-align-source="fix" style:repeat-content="false" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:font-weight="normal" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce142" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#ffffff" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:font-weight="bold" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-weight-asian="bold" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce143" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" fo:background-color="#eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="6pt" fo:font-weight="normal" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce144" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #000000" fo:background-color="#ffffff" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #000000" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="6pt" fo:font-weight="normal" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce145" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:background-color="#31465c" style:text-align-source="fix" style:repeat-content="false" fo:border="0.06pt solid #ffffff" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#ffffff" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="6pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce146" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:font-weight="normal" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce147" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:vertical-align="middle"/>
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="11pt" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce148" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:vertical-align="middle"/>
|
||||
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="11pt" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce149" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce150" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce151" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce152" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" fo:background-color="#eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:font-weight="normal" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce153" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #000000" fo:background-color="#ffffff" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #000000" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:font-weight="bold" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-weight-asian="bold" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce154" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #000000" fo:background-color="#ffffff" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #000000" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:font-weight="normal" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt" style:font-weight-complex="normal"/>
|
||||
</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="1cm" fo:margin-bottom="1cm" fo:margin-left="0.801cm" fo:margin-right="0.801cm" style:scale-to="90%" style:writing-mode="lr-tb"/>
|
||||
<style:header-style>
|
||||
<style:header-footer-properties fo:min-height="0.75cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-bottom="0.25cm"/>
|
||||
</style:header-style>
|
||||
<style:footer-style>
|
||||
<style:header-footer-properties fo:min-height="0.75cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0.25cm"/>
|
||||
</style:footer-style>
|
||||
</style:page-layout>
|
||||
<style:style style:name="T1" style:family="text">
|
||||
<style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
</office:automatic-styles>
|
||||
<office:master-styles>
|
||||
<style:master-page style:name="Default" style:page-layout-name="pm1">
|
||||
<style:header>
|
||||
<text:p><text:sheet-name>???</text:sheet-name></text:p>
|
||||
</style:header>
|
||||
<style:header-left style:display="false"/>
|
||||
<style:header-first style:display="false"/>
|
||||
<style:footer>
|
||||
<text:p>Página <text:page-number>1</text:page-number></text:p>
|
||||
</style:footer>
|
||||
<style:footer-left style:display="false"/>
|
||||
<style:footer-first style:display="false"/>
|
||||
</style:master-page>
|
||||
</office:master-styles>
|
||||
<office:body>
|
||||
<office:spreadsheet>
|
||||
<table:table table:name="Hoja1" table:style-name="ta1">
|
||||
<office:forms form:automatic-focus="false" form:apply-design-mode="false">
|
||||
<form:form form:name="Formulario" form:apply-filter="true" form:command-type="table" form:control-implementation="ooo:com.sun.star.form.component.Form" office:target-frame="">
|
||||
<form:properties>
|
||||
<form:property form:property-name="PropertyChangeNotificationEnabled" office:value-type="boolean" office:boolean-value="true"/>
|
||||
<form:property form:property-name="TargetURL" office:value-type="string" office:string-value=""/>
|
||||
</form:properties>
|
||||
</form:form>
|
||||
</office:forms>
|
||||
<table:table-column table:style-name="co1" table:default-cell-style-name="ce120"/>
|
||||
<table:table-column table:style-name="co2" table:default-cell-style-name="ce120"/>
|
||||
<table:table-column table:style-name="co3" table:default-cell-style-name="ce120"/>
|
||||
<table:table-column table:style-name="co4" table:default-cell-style-name="ce120"/>
|
||||
<table:table-column table:style-name="co5" table:default-cell-style-name="ce120"/>
|
||||
<table:table-column table:style-name="co6" table:default-cell-style-name="ce148"/>
|
||||
<table:table-column table:style-name="co5" table:default-cell-style-name="ce148"/>
|
||||
<table:table-column table:style-name="co7" table:default-cell-style-name="Default"/>
|
||||
<table:table-column table:style-name="co8" table:number-columns-repeated="56" table:default-cell-style-name="ce148"/>
|
||||
<table:table-row table:style-name="ro1">
|
||||
<table:table-cell table:style-name="ce104" table:number-columns-repeated="6"/>
|
||||
<table:table-cell table:style-name="ce147"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro2">
|
||||
<table:table-cell table:style-name="ce2" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>Nombre:</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce121" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://company.rec_name" xlink:type="simple">company.rec_name</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce104" table:number-columns-repeated="3"/>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro3">
|
||||
<table:table-cell table:style-name="ce2" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>NIT / C.C.:</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce121" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://company.party.identifiers%20and%20company.party.identifiers[0].code" xlink:type="simple">company.party.identifiers and company.party.identifiers[0].code</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce104"/>
|
||||
<table:table-cell table:style-name="Default"/>
|
||||
<table:table-cell table:style-name="ce104" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce147"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro4">
|
||||
<table:table-cell table:style-name="ce2" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>Dirección:</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce18" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"><text:p><text:a xlink:href="relatorio://company.party.address_get().full_address" xlink:type="simple">company.party.address_get().full_address</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:covered-table-cell table:style-name="Default"/>
|
||||
<table:table-cell table:style-name="ce2" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>Teléfono:</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce18" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"><text:p><text:a xlink:href="relatorio://company.party.get_contact_mechanism('phone')" xlink:type="simple">company.party.get_contact_mechanism('phone')</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:covered-table-cell table:style-name="Default"/>
|
||||
<table:table-cell table:style-name="Default"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro4">
|
||||
<table:table-cell table:style-name="ce107"/>
|
||||
<table:table-cell table:style-name="ce123"/>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="3"/>
|
||||
<table:table-cell table:style-name="ce139" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>PERIODO INICIAL</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce139" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>PERIODO FINAL</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro5">
|
||||
<table:table-cell table:style-name="ce107"/>
|
||||
<table:table-cell table:style-name="ce122" office:value-type="string" calcext:value-type="string"><text:p>MOVIMIENTOS <text:span text:style-name="T1">POR TERCERO</text:span></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="3"/>
|
||||
<table:table-cell table:style-name="ce140" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://start_period" xlink:type="simple">start_period</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce140" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://end_period" xlink:type="simple">end_period</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro6">
|
||||
<table:table-cell table:style-name="ce108" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://for%20each='party%20in%20records'" xlink:type="simple">for each='party in records'</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce123" table:number-columns-repeated="4"/>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro4">
|
||||
<table:table-cell table:style-name="ce109"/>
|
||||
<table:table-cell table:style-name="ce124" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>ID:</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce131" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://party['id_number']%20or%20''" xlink:type="simple">party['id_number'] or ''</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce133" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>TERCERO:</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce131" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://party['name']" xlink:type="simple">party['name']</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce141" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro4">
|
||||
<table:table-cell table:style-name="ce110" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://if%20test=%22not%20grouped_by_account%22" xlink:type="simple">if test="not grouped_by_account"</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="6"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro4">
|
||||
<table:table-cell table:style-name="ce110" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://for%20each=%22account,%20values%20in%20party['accounts'].items()%22" xlink:type="simple">for each="account, values in party['accounts'].items()"</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="6"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro7">
|
||||
<table:table-cell table:style-name="ce111"/>
|
||||
<table:table-cell table:style-name="ce125"/>
|
||||
<table:table-cell table:style-name="ce132" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce134"/>
|
||||
<table:table-cell table:style-name="ce142"/>
|
||||
<table:table-cell table:style-name="ce123"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro4">
|
||||
<table:table-cell table:style-name="ce112" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>FECHA</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce126" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>No DOC</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce126" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>ORIGEN</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce112" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>CUENTA</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce112" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>DESCRIPCIÓN</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce112"/>
|
||||
<table:table-cell table:style-name="ce145" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>DÉBITO</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce145" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>CRÉDITO</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:number-columns-repeated="54"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro4">
|
||||
<table:table-cell table:style-name="ce113" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://for%20each=%22line%20in%20values['lines']%22" xlink:type="simple">for each="line in values['lines']"</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce127" table:number-columns-repeated="5"/>
|
||||
<table:table-cell table:style-name="ce149" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:number-columns-repeated="54"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro8">
|
||||
<table:table-cell table:style-name="ce114" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://line.move.date" xlink:type="simple">line.move.date</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce118" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://line.move.number" xlink:type="simple">line.move.number</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce118" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://line.move.origin%20and%20line.move.origin.rec_name" xlink:type="simple">line.move.origin and line.origin_name</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce113" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://line.account.rec_name" xlink:type="simple">line.account.rec_name</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce113" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://line.description" xlink:type="simple">line.description</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce113"/>
|
||||
<table:table-cell table:style-name="ce150" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://line.debit" xlink:type="simple">line.debit</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce150" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://line.credit" xlink:type="simple">line.credit.</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:number-columns-repeated="54"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro4">
|
||||
<table:table-cell table:style-name="ce115" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio:///for" xlink:type="simple">/for</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce128" table:number-columns-repeated="5"/>
|
||||
<table:table-cell table:style-name="ce151" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:number-columns-repeated="54"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro4">
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="4"/>
|
||||
<table:table-cell table:style-name="ce135" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1">
|
||||
<text:p>TOTAL MOVIMIENTO</text:p>
|
||||
</table:table-cell>
|
||||
<table:covered-table-cell table:style-name="ce143"/>
|
||||
<table:table-cell table:style-name="ce152" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://sum(values['sum_debit'])" xlink:type="simple">sum(values['sum_debit'])</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce152" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://sum(values['sum_credit'])" xlink:type="simple">sum(values['sum_credit'])</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:number-columns-repeated="54"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro4">
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="4"/>
|
||||
<table:table-cell table:style-name="ce136" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"><text:p><text:span text:style-name="T1">SALDO</text:span> (DÉBITO – CRÉDITO)</text:p>
|
||||
</table:table-cell>
|
||||
<table:covered-table-cell table:style-name="ce144"/>
|
||||
<table:table-cell table:style-name="ce153" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"><text:p><text:a xlink:href="relatorio://sum(values['balance'])" xlink:type="simple">sum(values['balance'])</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:covered-table-cell table:style-name="ce154"/>
|
||||
<table:table-cell table:style-name="Default"/>
|
||||
<table:table-cell table:number-columns-repeated="55"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro4">
|
||||
<table:table-cell table:style-name="ce116" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio:///for" xlink:type="simple">/for</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce129" table:number-columns-repeated="5"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro4">
|
||||
<table:table-cell table:style-name="ce116" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio:///if" xlink:type="simple">/if</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce129" table:number-columns-repeated="5"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro4">
|
||||
<table:table-cell table:style-name="ce117" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://if%20test=%22grouped_by_account%22" xlink:type="simple">if test="grouped_by_account"</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce129" table:number-columns-repeated="5"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro4">
|
||||
<table:table-cell table:style-name="ce112"/>
|
||||
<table:table-cell table:style-name="ce126" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>COD</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce126" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>ORIGEN</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce112" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>CUENTA</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce112" office:value-type="string" calcext:value-type="string"><text:p><text:span text:style-name="T1">SALDO</text:span> (DEBITO – CREDITO)</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce145" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>DÉBITO</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce145" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>CRÉDITO</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell/>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:number-columns-repeated="54"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro2">
|
||||
<table:table-cell table:style-name="ce117" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://for%20each=%22account,%20values%20in%20party['accounts'].items()%22" xlink:type="simple">for each="account, values in party['accounts'].items()"</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce127" table:number-columns-repeated="5"/>
|
||||
<table:table-cell table:style-name="ce149"/>
|
||||
<table:table-cell/>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:number-columns-repeated="54"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro8">
|
||||
<table:table-cell table:style-name="ce118"/>
|
||||
<table:table-cell table:style-name="ce113" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://account.code" xlink:type="simple">account.code</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce118"/>
|
||||
<table:table-cell table:style-name="ce113" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://account.name" xlink:type="simple">account.name</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce137" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://sum(values['balance'])" xlink:type="simple">sum(values['balance'])</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce146" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://sum(values['sum_debit'])" xlink:type="simple">sum(values['sum_debit'])</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce146" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://sum(values['sum_credit'])" xlink:type="simple">sum(values['sum_credit'])</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell/>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:number-columns-repeated="54"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro4">
|
||||
<table:table-cell table:style-name="ce115" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio:///for" xlink:type="simple">/for</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce128" table:number-columns-repeated="5"/>
|
||||
<table:table-cell table:style-name="ce151"/>
|
||||
<table:table-cell/>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:number-columns-repeated="54"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro4">
|
||||
<table:table-cell table:style-name="ce116"/>
|
||||
<table:table-cell table:style-name="ce129" table:number-columns-repeated="5"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro4">
|
||||
<table:table-cell table:style-name="ce116" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio:///if" xlink:type="simple">/if</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce129" table:number-columns-repeated="5"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro9">
|
||||
<table:table-cell table:style-name="ce116"/>
|
||||
<table:table-cell table:style-name="ce129" table:number-columns-repeated="5"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro4">
|
||||
<table:table-cell table:style-name="ce119" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio:///for" xlink:type="simple">/for</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce130" table:number-columns-repeated="3"/>
|
||||
<table:table-cell table:style-name="ce138"/>
|
||||
<table:table-cell table:style-name="ce147"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro4" table:number-rows-repeated="1048547">
|
||||
<table:table-cell table:number-columns-repeated="64"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro4">
|
||||
<table:table-cell table:number-columns-repeated="64"/>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<table:named-expressions/>
|
||||
</office:spreadsheet>
|
||||
</office:body>
|
||||
</office:document>
|
||||
1421
modules/account_co_reports/report/balance_invoice_party.fods
Normal file
1421
modules/account_co_reports/report/balance_invoice_party.fods
Normal file
File diff suppressed because it is too large
Load Diff
1463
modules/account_co_reports/report/balance_sheet.fods
Normal file
1463
modules/account_co_reports/report/balance_sheet.fods
Normal file
File diff suppressed because it is too large
Load Diff
993
modules/account_co_reports/report/balance_sheet_colgaap.fods
Normal file
993
modules/account_co_reports/report/balance_sheet_colgaap.fods
Normal file
@@ -0,0 +1,993 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<office:document xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" 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.spreadsheet">
|
||||
<office:meta><meta:creation-date>2012-09-27T06:56:34</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/7.3.7.2$Linux_X86_64 LibreOffice_project/30$Build-2</meta:generator><meta:document-statistic meta:table-count="1" meta:cell-count="44" meta:object-count="0"/></office:meta>
|
||||
<office:settings>
|
||||
<config:config-item-set config:name="ooo:view-settings">
|
||||
<config:config-item config:name="VisibleAreaTop" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="VisibleAreaLeft" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="VisibleAreaWidth" config:type="int">17879</config:config-item>
|
||||
<config:config-item config:name="VisibleAreaHeight" config:type="int">16803</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">view1</config:config-item>
|
||||
<config:config-item-map-named config:name="Tables">
|
||||
<config:config-item-map-entry config:name="Hoja1">
|
||||
<config:config-item config:name="CursorPositionX" config:type="int">3</config:config-item>
|
||||
<config:config-item config:name="CursorPositionY" config:type="int">5</config:config-item>
|
||||
<config:config-item config:name="ActiveSplitRange" config:type="short">2</config:config-item>
|
||||
<config:config-item config:name="PositionLeft" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="PositionRight" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="PositionTop" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="PositionBottom" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
|
||||
<config:config-item config:name="ZoomValue" config:type="int">160</config:config-item>
|
||||
<config:config-item config:name="PageViewZoomValue" config:type="int">120</config:config-item>
|
||||
<config:config-item config:name="ShowGrid" 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-named>
|
||||
<config:config-item config:name="ActiveTable" config:type="string">Hoja1</config:config-item>
|
||||
<config:config-item config:name="HorizontalScrollbarWidth" config:type="int">1845</config:config-item>
|
||||
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
|
||||
<config:config-item config:name="ZoomValue" config:type="int">160</config:config-item>
|
||||
<config:config-item config:name="PageViewZoomValue" config:type="int">120</config:config-item>
|
||||
<config:config-item config:name="ShowPageBreakPreview" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="GridColor" config:type="int">12632256</config:config-item>
|
||||
<config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="HasColumnRowHeaders" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="HasSheetTabs" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="IsValueHighlightingEnabled" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="IsSnapToRaster" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="RasterIsVisible" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="RasterResolutionX" config:type="int">1000</config:config-item>
|
||||
<config:config-item config:name="RasterResolutionY" config:type="int">1000</config:config-item>
|
||||
<config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item>
|
||||
<config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item>
|
||||
<config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</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="AllowPrintJobCancel" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="ApplyUserData" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="AutoCalculate" 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="EmbedAsianScriptFonts" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="EmbedComplexScriptFonts" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="EmbedFonts" config:type="boolean">false</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-map-indexed config:name="ForbiddenCharacters">
|
||||
<config:config-item-map-entry>
|
||||
<config:config-item config:name="Language" config:type="string">en</config:config-item>
|
||||
<config:config-item config:name="Country" config:type="string">US</config:config-item>
|
||||
<config:config-item config:name="Variant" config:type="string"/>
|
||||
<config:config-item config:name="BeginLine" config:type="string"/>
|
||||
<config:config-item config:name="EndLine" config:type="string"/>
|
||||
</config:config-item-map-entry>
|
||||
<config:config-item-map-entry>
|
||||
<config:config-item config:name="Language" config:type="string">es</config:config-item>
|
||||
<config:config-item config:name="Country" config:type="string">CO</config:config-item>
|
||||
<config:config-item config:name="Variant" config:type="string"/>
|
||||
<config:config-item config:name="BeginLine" config:type="string"/>
|
||||
<config:config-item config:name="EndLine" config:type="string"/>
|
||||
</config:config-item-map-entry>
|
||||
</config:config-item-map-indexed>
|
||||
<config:config-item config:name="GridColor" config:type="int">12632256</config:config-item>
|
||||
<config:config-item config:name="HasColumnRowHeaders" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="HasSheetTabs" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="IsDocumentShared" 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="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="IsSnapToRaster" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="LinkUpdateMode" config:type="short">3</config:config-item>
|
||||
<config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="PrinterName" config:type="string">Generic Printer</config:config-item>
|
||||
<config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="PrinterSetup" config:type="base64Binary">mAH+/0dlbmVyaWMgUHJpbnRlcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAU0dFTlBSVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAMAuQAAAAAAAAAIAFZUAAAkbQAASm9iRGF0YSAxCnByaW50ZXI9R2VuZXJpYyBQcmludGVyCm9yaWVudGF0aW9uPVBvcnRyYWl0CmNvcGllcz0xCmNvbGxhdGU9ZmFsc2UKbWFyZ2luYWRqdXN0bWVudD0wLDAsMCwwCmNvbG9yZGVwdGg9MjQKcHNsZXZlbD0wCnBkZmRldmljZT0xCmNvbG9yZGV2aWNlPTAKUFBEQ29udGV4dERhdGEKUGFnZVNpemU6TGV0dGVyAAASAENPTVBBVF9EVVBMRVhfTU9ERQ8ARHVwbGV4TW9kZTo6T2Zm</config:config-item>
|
||||
<config:config-item config:name="RasterIsVisible" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="RasterResolutionX" config:type="int">1000</config:config-item>
|
||||
<config:config-item config:name="RasterResolutionY" config:type="int">1000</config:config-item>
|
||||
<config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item>
|
||||
<config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item>
|
||||
<config:config-item config:name="SaveThumbnail" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="SyntaxStringRef" config:type="short">0</config:config-item>
|
||||
<config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
|
||||
<config:config-item-map-named config:name="ScriptConfiguration">
|
||||
<config:config-item-map-entry config:name="Hoja1">
|
||||
<config:config-item config:name="CodeName" config:type="string">Hoja1</config:config-item>
|
||||
</config:config-item-map-entry>
|
||||
</config:config-item-map-named>
|
||||
</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="Arial" svg:font-family="Arial" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="DejaVu Sans" svg:font-family="'DejaVu Sans'" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="DejaVu Sans Condensed" svg:font-family="'DejaVu Sans Condensed'" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="DejaVu Sans1" svg:font-family="'DejaVu Sans'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="Droid Sans Fallback" svg:font-family="'Droid Sans Fallback'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="Liberation Sans" svg:font-family="'Liberation Sans'" style:font-adornments="Normal" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="Liberation Sans1" svg:font-family="'Liberation Sans'" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="Lohit Hindi" svg:font-family="'Lohit Hindi'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="Noto Sans CJK JP DemiLight" svg:font-family="'Noto Sans CJK JP DemiLight'" style:font-pitch="variable"/>
|
||||
</office:font-face-decls>
|
||||
<office:styles>
|
||||
<style:default-style style:family="table-cell">
|
||||
<style:paragraph-properties style:tab-stop-distance="1.25cm"/>
|
||||
<style:text-properties style:font-name="Arial" fo:font-size="10pt" fo:language="es" fo:country="CO" style:font-name-asian="DejaVu Sans1" style:font-size-asian="10pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="DejaVu Sans1" style:font-size-complex="10pt" style:language-complex="hi" style:country-complex="IN"/>
|
||||
</style:default-style>
|
||||
<number:number-style style:name="N0">
|
||||
<number:number number:min-integer-digits="1"/>
|
||||
</number:number-style>
|
||||
<number:currency-style style:name="N104P0" style:volatile="true">
|
||||
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
</number:currency-style>
|
||||
<number:currency-style style:name="N104">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
<number:text>(</number:text>
|
||||
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text>)</number:text>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N104P0"/>
|
||||
</number:currency-style>
|
||||
<number:currency-style style:name="N115P0" style:volatile="true">
|
||||
<number:currency-symbol number:language="en" number:country="US">$</number:currency-symbol>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
</number:currency-style>
|
||||
<number:currency-style style:name="N115">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
<number:text>-</number:text>
|
||||
<number:currency-symbol number:language="en" number:country="US">$</number:currency-symbol>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N115P0"/>
|
||||
</number:currency-style>
|
||||
<number:number-style style:name="N113P0" style:volatile="true">
|
||||
<number:number number:decimal-places="0" number:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
|
||||
</number:number-style>
|
||||
<number:number-style style:name="N113">
|
||||
<number:text>(</number:text>
|
||||
<number:number number:decimal-places="0" number:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text>)</number:text>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N113P0"/>
|
||||
</number:number-style>
|
||||
<number:number-style style:name="N112">
|
||||
<number:text>(</number:text>
|
||||
<number:number number:decimal-places="0" number:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text>)</number:text>
|
||||
</number:number-style>
|
||||
<number:number-style style:name="N111P0" style:volatile="true">
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
</number:number-style>
|
||||
<number:number-style style:name="N111">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
<number:text>-</number:text>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N111P0"/>
|
||||
</number:number-style>
|
||||
<number:number-style style:name="N110P0" style:volatile="true">
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1"/>
|
||||
</number:number-style>
|
||||
<number:number-style style:name="N110">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
<number:text>-</number:text>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1"/>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N110P0"/>
|
||||
</number:number-style>
|
||||
<number:currency-style style:name="N109P0" style:volatile="true">
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text> </number:text>
|
||||
<number:currency-symbol number:language="fr" number:country="BE">€</number:currency-symbol>
|
||||
</number:currency-style>
|
||||
<number:currency-style style:name="N109">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
<number:text>-</number:text>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text> </number:text>
|
||||
<number:currency-symbol number:language="fr" number:country="BE">€</number:currency-symbol>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N109P0"/>
|
||||
</number:currency-style>
|
||||
<number:currency-style style:name="N10108P0" style:volatile="true" number:language="sl" number:country="SI">
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text> </number:text>
|
||||
<number:currency-symbol number:language="sl" number:country="SI">€</number:currency-symbol>
|
||||
</number:currency-style>
|
||||
<number:currency-style style:name="N10108" number:language="sl" number:country="SI">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
<number:text>-</number:text>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text> </number:text>
|
||||
<number:currency-symbol number:language="sl" number:country="SI">€</number:currency-symbol>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N10108P0"/>
|
||||
</number:currency-style>
|
||||
<style:style style:name="Default" style:family="table-cell">
|
||||
<style:text-properties style:font-name-asian="Droid Sans Fallback" style:font-family-asian="'Droid Sans Fallback'" style:font-family-generic-asian="system" style:font-pitch-asian="variable" style:font-name-complex="Lohit Hindi" style:font-family-complex="'Lohit Hindi'" style:font-family-generic-complex="system" style:font-pitch-complex="variable"/>
|
||||
</style:style>
|
||||
<style:style style:name="Heading" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/>
|
||||
<style:paragraph-properties fo:text-align="center"/>
|
||||
<style:text-properties fo:font-size="16pt" fo:font-style="italic" fo:font-weight="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="Heading_20_1" style:display-name="Heading 1" style:family="table-cell" style:parent-style-name="Heading">
|
||||
<style:table-cell-properties style:rotation-angle="90"/>
|
||||
</style:style>
|
||||
<style:style style:name="Heading_20_2" style:display-name="Heading 2" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#000000" fo:font-size="12pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Text" style:family="table-cell" style:parent-style-name="Default"/>
|
||||
<style:style style:name="Note" style:family="table-cell" style:parent-style-name="Text">
|
||||
<style:table-cell-properties fo:background-color="#ffffcc" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" fo:border="0.74pt solid #808080"/>
|
||||
<style:text-properties fo:color="#333333" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Footnote" style:family="table-cell" style:parent-style-name="Text">
|
||||
<style:text-properties fo:color="#808080" fo:font-size="10pt" fo:font-style="italic" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Hyperlink" style:family="table-cell" style:parent-style-name="Text">
|
||||
<style:text-properties fo:color="#0000ee" fo:font-size="10pt" fo:font-style="normal" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="#0000ee" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Status" style:family="table-cell" style:parent-style-name="Default"/>
|
||||
<style:style style:name="Good" style:family="table-cell" style:parent-style-name="Status">
|
||||
<style:table-cell-properties fo:background-color="#ccffcc"/>
|
||||
<style:text-properties fo:color="#006600" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Neutral" style:family="table-cell" style:parent-style-name="Status">
|
||||
<style:table-cell-properties fo:background-color="#ffffcc"/>
|
||||
<style:text-properties fo:color="#996600" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Bad" style:family="table-cell" style:parent-style-name="Status">
|
||||
<style:table-cell-properties fo:background-color="#ffcccc"/>
|
||||
<style:text-properties fo:color="#cc0000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Warning" style:family="table-cell" style:parent-style-name="Status">
|
||||
<style:text-properties fo:color="#cc0000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Error" style:family="table-cell" style:parent-style-name="Status">
|
||||
<style:table-cell-properties fo:background-color="#cc0000"/>
|
||||
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="Accent" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#000000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="Accent_20_1" style:display-name="Accent 1" style:family="table-cell" style:parent-style-name="Accent">
|
||||
<style:table-cell-properties fo:background-color="#000000"/>
|
||||
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Accent_20_2" style:display-name="Accent 2" style:family="table-cell" style:parent-style-name="Accent">
|
||||
<style:table-cell-properties fo:background-color="#808080"/>
|
||||
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Accent_20_3" style:display-name="Accent 3" style:family="table-cell" style:parent-style-name="Accent">
|
||||
<style:table-cell-properties fo:background-color="#dddddd"/>
|
||||
</style:style>
|
||||
<style:style style:name="Result" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:font-style="italic" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="Heading" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/>
|
||||
<style:paragraph-properties fo:text-align="center"/>
|
||||
<style:text-properties fo:font-size="16pt" fo:font-style="italic" fo:font-weight="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="Result2" style:family="table-cell" style:parent-style-name="Result" style:data-style-name="N104"/>
|
||||
<style:style style:name="Sin_20_nombre1" style:display-name="Sin nombre1" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#ff0000" style:font-name="Liberation Sans" fo:font-family="'Liberation Sans'" style:font-style-name="Normal" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
</style:style>
|
||||
<style:style style:name="Sin_20_nombre2" style:display-name="Sin nombre2" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
</style:style>
|
||||
<style:style style:name="Sin_20_nombre3" style:display-name="Sin nombre3" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
</style:style>
|
||||
<style:style style:name="Sin_20_nombre4" style:display-name="Sin nombre4" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
</style:style>
|
||||
<style:style style:name="Sin_20_nombre5" style:display-name="Sin nombre5" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
</style:style>
|
||||
</office:styles>
|
||||
<office:automatic-styles>
|
||||
<style:style style:name="co1" style:family="table-column">
|
||||
<style:table-column-properties fo:break-before="auto" style:column-width="1.769cm"/>
|
||||
</style:style>
|
||||
<style:style style:name="co2" style:family="table-column">
|
||||
<style:table-column-properties fo:break-before="auto" style:column-width="0.452cm"/>
|
||||
</style:style>
|
||||
<style:style style:name="co3" style:family="table-column">
|
||||
<style:table-column-properties fo:break-before="auto" style:column-width="6.324cm"/>
|
||||
</style:style>
|
||||
<style:style style:name="co4" style:family="table-column">
|
||||
<style:table-column-properties fo:break-before="auto" style:column-width="2.334cm"/>
|
||||
</style:style>
|
||||
<style:style style:name="co5" style:family="table-column">
|
||||
<style:table-column-properties fo:break-before="auto" style:column-width="1.75cm"/>
|
||||
</style:style>
|
||||
<style:style style:name="co6" style:family="table-column">
|
||||
<style:table-column-properties fo:break-before="auto" style:column-width="1.944cm"/>
|
||||
</style:style>
|
||||
<style:style style:name="co7" style:family="table-column">
|
||||
<style:table-column-properties fo:break-before="auto" style:column-width="2.258cm"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro1" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.654cm" fo:break-before="auto" style:use-optimal-row-height="true"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro2" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.487cm" fo:break-before="auto" style:use-optimal-row-height="true"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro3" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.526cm" fo:break-before="auto" style:use-optimal-row-height="true"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro4" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.594cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro5" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.626cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro6" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.6cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro7" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.801cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro8" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.499cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro9" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.792cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro10" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.545cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro11" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.452cm" fo:break-before="auto" style:use-optimal-row-height="true"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro12" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="1.207cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ta1" style:family="table" style:master-page-name="Default">
|
||||
<style:table-properties table:display="true" style:writing-mode="lr-tb"/>
|
||||
</style:style>
|
||||
<number:number-style style:name="N3">
|
||||
<number:number number:decimal-places="0" number:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
|
||||
</number:number-style>
|
||||
<number:text-style style:name="N100">
|
||||
<number:text-content/>
|
||||
</number:text-style>
|
||||
<number:currency-style style:name="N101P0" style:volatile="true">
|
||||
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
|
||||
<number:number number:decimal-places="0" number:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
|
||||
</number:currency-style>
|
||||
<number:currency-style style:name="N101">
|
||||
<number:text>(</number:text>
|
||||
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
|
||||
<number:number number:decimal-places="0" number:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text>)</number:text>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N101P0"/>
|
||||
</number:currency-style>
|
||||
<number:number-style style:name="N20003" number:language="es" number:country="CO">
|
||||
<number:number number:decimal-places="0" number:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
|
||||
</number:number-style>
|
||||
<number:number-style style:name="N30000" number:language="en" number:country="US">
|
||||
<number:number number:min-integer-digits="1"/>
|
||||
</number:number-style>
|
||||
<style:style style:name="ce100" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties style:font-name="Noto Sans CJK JP DemiLight"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce2" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:background-color="#666666" style:text-align-source="fix" style:repeat-content="false" fo:wrap-option="wrap" fo:border="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#ffffff" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="7pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce102" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N100">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" fo:language="es" fo:country="CO" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce103" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" fo:background-color="#eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" fo:font-weight="bold" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce104" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" fo:font-weight="bold" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce105" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#333333" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" fo:font-weight="normal" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce106" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#808080" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" fo:font-weight="normal" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce107" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N100">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" fo:background-color="#cfe7f5" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="8pt" fo:language="es" fo:country="CO" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="8pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Lohit Hindi" style:font-size-complex="8pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="bold" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce108" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="6pt" fo:language="en" fo:country="US" fo:font-style="italic" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="italic" style:font-weight-asian="normal" style:font-size-complex="6pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="italic" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce10" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="8pt" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce110" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="11pt" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce111" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N100">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" fo:background-color="#cfe7f5" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" fo:language="es" fo:country="CO" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="bold" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce112" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#006699" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="15pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="15pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="15pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="bold" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce113" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="8pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="8pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce114" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="11pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="11pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="11pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="bold" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce16" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="10pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="10pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="10pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce17" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:wrap-option="wrap" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:font-weight="normal" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce18" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans Condensed" fo:font-size="8pt" fo:font-weight="bold" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce116" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" fo:background-color="#eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" fo:font-weight="bold" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce117" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" fo:font-weight="bold" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce118" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#333333" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" fo:font-weight="normal" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce119" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#808080" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" fo:font-weight="normal" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce120" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N100">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" fo:background-color="#cfe7f5" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" fo:language="es" fo:country="CO" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="bold" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce121" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="6pt" fo:language="en" fo:country="US" fo:font-style="italic" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="italic" style:font-weight-asian="normal" style:font-size-complex="6pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="italic" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce122" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce123" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:border="0.26pt fine-dashed #808080"/>
|
||||
<style:text-properties style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="8pt" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce124" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#006699" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="11pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="11pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="11pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce115" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="10pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="10pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="10pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce125" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="11pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="11pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="11pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce30" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:font-weight="normal" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce126" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:background-color="#808080" style:text-align-source="fix" style:repeat-content="false" fo:wrap-option="wrap" fo:border="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#ffffff" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="7pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce127" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="7pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce128" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" fo:background-color="#eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="7pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="7pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="bold" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce129" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="7pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce130" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce131" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce132" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#333333" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-style-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce133" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#808080" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-style-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce134" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce135" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" fo:background-color="#cfe7f5" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="7pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce136" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#333333" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="none" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-style-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce46" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N3">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" fo:background-color="#cfe7f5" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" fo:language="es" fo:country="CO" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="bold" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce138" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:border="0.26pt fine-dashed #808080" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center"/>
|
||||
<style:text-properties style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="8pt" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce139" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" style:text-underline-style="none" fo:font-weight="bold" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce140" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#808080" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" fo:font-style="normal" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-style-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-style-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce141" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="6pt" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce142" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:background-color="#cfe7f5" style:text-align-source="fix" style:repeat-content="false" fo:wrap-option="wrap" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#808080" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="9pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="9pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="9pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce143" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N101">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="7pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce144" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" fo:background-color="#eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" fo:font-weight="bold" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce145" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce146" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N113">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce147" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N113">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="7pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="7pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce148" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N113">
|
||||
<style:text-properties style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="8pt" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce149" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties style:text-underline-style="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce150" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:vertical-align="middle"/>
|
||||
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="11pt" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
|
||||
</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="1.524cm" fo:margin-bottom="1.524cm" fo:margin-left="1.524cm" fo:margin-right="1.524cm" style:writing-mode="lr-tb"/>
|
||||
<style:header-style>
|
||||
<style:header-footer-properties fo:min-height="0.75cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-bottom="0.25cm"/>
|
||||
</style:header-style>
|
||||
<style:footer-style>
|
||||
<style:header-footer-properties fo:min-height="0.75cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0.25cm"/>
|
||||
</style:footer-style>
|
||||
</style:page-layout>
|
||||
</office:automatic-styles>
|
||||
<office:master-styles>
|
||||
<style:master-page style:name="Default" style:page-layout-name="pm1">
|
||||
<style:header style:display="false">
|
||||
<text:p><text:sheet-name>???</text:sheet-name></text:p>
|
||||
</style:header>
|
||||
<style:header-left style:display="false"/>
|
||||
<style:header-first style:display="false"/>
|
||||
<style:footer style:display="false">
|
||||
<text:p>Página <text:page-number>1</text:page-number></text:p>
|
||||
</style:footer>
|
||||
<style:footer-left style:display="false"/>
|
||||
<style:footer-first style:display="false"/>
|
||||
</style:master-page>
|
||||
</office:master-styles>
|
||||
<office:body>
|
||||
<office:spreadsheet>
|
||||
<table:table table:name="Hoja1" table:style-name="ta1">
|
||||
<office:forms form:automatic-focus="false" form:apply-design-mode="false">
|
||||
<form:form form:name="Formulario" form:apply-filter="true" form:command-type="table" form:control-implementation="ooo:com.sun.star.form.component.Form" office:target-frame="">
|
||||
<form:properties>
|
||||
<form:property form:property-name="PropertyChangeNotificationEnabled" office:value-type="boolean" office:boolean-value="true"/>
|
||||
<form:property form:property-name="TargetURL" office:value-type="string" office:string-value=""/>
|
||||
</form:properties>
|
||||
</form:form>
|
||||
</office:forms>
|
||||
<table:table-column table:style-name="co1" table:default-cell-style-name="ce110"/>
|
||||
<table:table-column table:style-name="co2" table:default-cell-style-name="ce110"/>
|
||||
<table:table-column table:style-name="co3" table:default-cell-style-name="ce110"/>
|
||||
<table:table-column table:style-name="co4" table:number-columns-repeated="4" table:default-cell-style-name="ce110"/>
|
||||
<table:table-column table:style-name="co2" table:default-cell-style-name="Default"/>
|
||||
<table:table-column table:style-name="co5" table:default-cell-style-name="Default"/>
|
||||
<table:table-column table:style-name="co6" table:default-cell-style-name="Default"/>
|
||||
<table:table-column table:style-name="co7" table:number-columns-repeated="6" table:default-cell-style-name="Default"/>
|
||||
<table:table-column table:style-name="co7" table:number-columns-repeated="48" table:default-cell-style-name="ce150"/>
|
||||
<table:table-row table:style-name="ro1">
|
||||
<table:table-cell table:style-name="Default"/>
|
||||
<table:table-cell table:style-name="ce100"/>
|
||||
<table:table-cell table:style-name="ce112" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>BALANCE GENERAL</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce124" table:number-columns-repeated="4"/>
|
||||
<table:table-cell/>
|
||||
<table:table-cell table:style-name="ce149"/>
|
||||
<table:table-cell table:number-columns-repeated="55"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro2">
|
||||
<table:table-cell table:style-name="ce100" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce113" office:value-type="string" calcext:value-type="string"><text:p>AL <text:a xlink:href="relatorio://end_date%20and%20format_date(end_date,%20company.party.lang)" xlink:type="simple">end_date and format_date(end_date, company.party.lang)</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce115" table:number-columns-repeated="3"/>
|
||||
<table:table-cell table:style-name="ce124"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro3">
|
||||
<table:table-cell table:style-name="ce100" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce114" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://company.rec_name" xlink:type="simple">company.rec_name</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce125" table:number-columns-repeated="3"/>
|
||||
<table:table-cell table:style-name="ce124"/>
|
||||
<table:table-cell/>
|
||||
<table:table-cell table:style-name="ce149"/>
|
||||
<table:table-cell table:number-columns-repeated="55"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro2">
|
||||
<table:table-cell table:style-name="ce100" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce16" office:value-type="string" calcext:value-type="string"><text:p>NIT <text:a xlink:href="relatorio://company.party.identifiers%20and%20company.party.identifiers[0].code" xlink:type="simple">company.party.identifiers and company.party.identifiers[0].code</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce125" table:number-columns-repeated="3"/>
|
||||
<table:table-cell table:style-name="ce124"/>
|
||||
<table:table-cell/>
|
||||
<table:table-cell table:style-name="ce149"/>
|
||||
<table:table-cell table:number-columns-repeated="55"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro2">
|
||||
<table:table-cell table:style-name="ce100" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce17" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>Dirección: </text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce30" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>Teléfono:</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce125" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce124"/>
|
||||
<table:table-cell/>
|
||||
<table:table-cell table:style-name="ce149"/>
|
||||
<table:table-cell table:number-columns-repeated="55"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro4">
|
||||
<table:table-cell table:style-name="ce100" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce18" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://company.party.address_get().full_address" xlink:type="simple">company.party.address_get().full_address</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce18" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://company.party.get_contact_mechanism('phone')" xlink:type="simple">company.party.get_contact_mechanism('phone')</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce115" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce142" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://period%20and%20period.name%20or%20fiscalyear.name" xlink:type="simple">period and period.name or fiscalyear.name</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro5">
|
||||
<table:table-cell table:style-name="ce2" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1">
|
||||
<text:p>COD.</text:p>
|
||||
</table:table-cell>
|
||||
<table:covered-table-cell table:style-name="ce2"/>
|
||||
<table:table-cell table:style-name="ce2" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>CUENTA</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce126" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>SALDO AUX</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce126" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>SALDO SUB</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce126" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>SALDO CUENTA</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce2" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>SALDO GRUPO</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro6">
|
||||
<table:table-cell table:style-name="ce102" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://for%20each='account%20in%20records'" xlink:type="simple">for each='account in records'</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce102" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce127" table:number-columns-repeated="3"/>
|
||||
<table:table-cell table:style-name="ce143"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro6">
|
||||
<table:table-cell table:style-name="ce102" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://choose%20test=%22%22" xlink:type="simple">choose test=""</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce102" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce127" table:number-columns-repeated="3"/>
|
||||
<table:table-cell table:style-name="ce143"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro6">
|
||||
<table:table-cell table:style-name="ce102" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://when%20test=%22len(account.code)%20==%201%20and%20account.balance%20!=%200%22" xlink:type="simple">when test="len(account.code) == 1 and account.balance != 0"</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce102" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce127" table:number-columns-repeated="3"/>
|
||||
<table:table-cell table:style-name="ce143"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro7">
|
||||
<table:table-cell table:style-name="ce103" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://account.code" xlink:type="simple">account.code</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce103"/>
|
||||
<table:table-cell table:style-name="ce116" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://account.name" xlink:type="simple">account.name</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce128" table:number-columns-repeated="3"/>
|
||||
<table:table-cell table:style-name="ce144" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://account.balance" xlink:type="simple">account.balance</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro6">
|
||||
<table:table-cell table:style-name="ce102" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio:///when" xlink:type="simple">/when</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce102" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce129" table:number-columns-repeated="4"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro8">
|
||||
<table:table-cell table:style-name="ce102" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://when%20test=%22len(account.code)%20%3E=%202%20and%20len(account.code)%20%3C%204%20%20and%20account.balance%20!=%200%22" xlink:type="simple">when test="len(account.code) >= 2 and len(account.code) < 4 and account.balance != 0"</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce102" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce129" table:number-columns-repeated="4"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro6">
|
||||
<table:table-cell table:style-name="ce104" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://account.code" xlink:type="simple">account.code</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce104"/>
|
||||
<table:table-cell table:style-name="ce117" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://account.name" xlink:type="simple">account.name</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce130" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce139" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://account.balance" xlink:type="simple">account.balance</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce139"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro6">
|
||||
<table:table-cell table:style-name="ce102" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio:///when" xlink:type="simple">/when</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce102" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce131" table:number-columns-repeated="3"/>
|
||||
<table:table-cell table:style-name="ce145"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro6">
|
||||
<table:table-cell table:style-name="ce102" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://when%20test=%22len(account.code)%20%3E=%204%20and%20len(account.code)%20%3C%206%20and%20account.balance%20!=%200%22" xlink:type="simple">when test="len(account.code) >= 4 and len(account.code) < 6 and account.balance != 0"</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce102" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce131" table:number-columns-repeated="3"/>
|
||||
<table:table-cell table:style-name="ce145"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro8">
|
||||
<table:table-cell table:style-name="ce105" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://account.code" xlink:type="simple">account.code</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce105"/>
|
||||
<table:table-cell table:style-name="ce118" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://account.name" xlink:type="simple">account.name</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce132"/>
|
||||
<table:table-cell table:style-name="ce136" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://account.balance" xlink:type="simple">account.balance</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce132"/>
|
||||
<table:table-cell table:style-name="ce136"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro6">
|
||||
<table:table-cell table:style-name="ce102" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio:///when" xlink:type="simple">/when</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce102" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce131" table:number-columns-repeated="3"/>
|
||||
<table:table-cell table:style-name="ce145"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro6">
|
||||
<table:table-cell table:style-name="ce102" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://when%20test=%22len(account.code)%20%3E=%206%20and%20account.balance%20!=%200%20and%20detailed%22" xlink:type="simple">when test="len(account.code) >= 6 and account.balance != 0 and detailed"</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce102" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce131" table:number-columns-repeated="3"/>
|
||||
<table:table-cell table:style-name="ce145"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro8">
|
||||
<table:table-cell table:style-name="ce106" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://account.code" xlink:type="simple">account.code</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce106"/>
|
||||
<table:table-cell table:style-name="ce119" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://account.name" xlink:type="simple">account.name</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce133" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://account.balance" xlink:type="simple">account.balance</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce133"/>
|
||||
<table:table-cell table:style-name="ce140"/>
|
||||
<table:table-cell table:style-name="ce133"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro6">
|
||||
<table:table-cell table:style-name="ce102" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio:///when" xlink:type="simple">/when</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce102" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce134" table:number-columns-repeated="3"/>
|
||||
<table:table-cell table:style-name="ce146"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro6">
|
||||
<table:table-cell table:style-name="ce102" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio:///choose" xlink:type="simple">/choose</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce102" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce134" table:number-columns-repeated="3"/>
|
||||
<table:table-cell table:style-name="ce146"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro6">
|
||||
<table:table-cell table:style-name="ce102" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio:///for" xlink:type="simple">/for</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce102" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce127" table:number-columns-repeated="3"/>
|
||||
<table:table-cell table:style-name="ce147"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro9">
|
||||
<table:table-cell table:style-name="ce107" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="6" table:number-rows-spanned="1">
|
||||
<text:p>PASIVO + PATRIMONIO</text:p>
|
||||
</table:table-cell>
|
||||
<table:covered-table-cell table:style-name="ce111"/>
|
||||
<table:covered-table-cell table:style-name="ce120"/>
|
||||
<table:covered-table-cell table:style-name="ce135"/>
|
||||
<table:covered-table-cell table:style-name="ce46"/>
|
||||
<table:covered-table-cell table:style-name="ce135"/>
|
||||
<table:table-cell table:style-name="ce46" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://global_result" xlink:type="simple">global_result</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro10">
|
||||
<table:table-cell table:style-name="ce108" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce121" office:value-type="string" calcext:value-type="string"><text:p>Impresión: <text:a xlink:href="relatorio://format_date(datetime.date.today(),%20company.party.lang)" xlink:type="simple">format_date(datetime.date.today(), company.party.lang)</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce121" table:number-columns-repeated="3"/>
|
||||
<table:table-cell table:style-name="ce100"/>
|
||||
<table:table-cell table:number-columns-repeated="9"/>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="48"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro11">
|
||||
<table:table-cell table:style-name="ce100" table:number-columns-repeated="7"/>
|
||||
<table:table-cell table:number-columns-repeated="9"/>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="48"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro11">
|
||||
<table:table-cell table:style-name="ce10" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce122" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>REPRESENTANTE LEGAL</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce122"/>
|
||||
<table:table-cell table:style-name="ce122" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>CONTADOR</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce141"/>
|
||||
<table:table-cell table:style-name="ce10"/>
|
||||
<table:table-cell table:number-columns-repeated="9"/>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="48"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro12">
|
||||
<table:table-cell table:style-name="ce10" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce123"/>
|
||||
<table:table-cell table:style-name="ce10"/>
|
||||
<table:table-cell table:style-name="ce138" table:number-columns-spanned="3" table:number-rows-spanned="1"/>
|
||||
<table:covered-table-cell table:style-name="ce10"/>
|
||||
<table:covered-table-cell table:style-name="ce148"/>
|
||||
<table:table-cell table:number-columns-repeated="9"/>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="48"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro11">
|
||||
<table:table-cell table:style-name="ce10" table:number-columns-repeated="7"/>
|
||||
<table:table-cell table:number-columns-repeated="9"/>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="48"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro11" table:number-rows-repeated="20">
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="7"/>
|
||||
<table:table-cell table:number-columns-repeated="9"/>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="48"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro2" table:number-rows-repeated="1048526">
|
||||
<table:table-cell table:number-columns-repeated="64"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro2">
|
||||
<table:table-cell table:number-columns-repeated="64"/>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<table:named-expressions/>
|
||||
</office:spreadsheet>
|
||||
</office:body>
|
||||
</office:document>
|
||||
970
modules/account_co_reports/report/income_statement.fods
Normal file
970
modules/account_co_reports/report/income_statement.fods
Normal file
@@ -0,0 +1,970 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<office:document xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" 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.spreadsheet">
|
||||
<office:meta><meta:creation-date>2012-09-27T06:56:34</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/7.0.1.2$Linux_X86_64 LibreOffice_project/00$Build-2</meta:generator><meta:document-statistic meta:table-count="1" meta:cell-count="37" meta:object-count="0"/></office:meta>
|
||||
<office:settings>
|
||||
<config:config-item-set config:name="ooo:view-settings">
|
||||
<config:config-item config:name="VisibleAreaTop" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="VisibleAreaLeft" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="VisibleAreaWidth" config:type="int">18522</config:config-item>
|
||||
<config:config-item config:name="VisibleAreaHeight" config:type="int">16682</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">view1</config:config-item>
|
||||
<config:config-item-map-named config:name="Tables">
|
||||
<config:config-item-map-entry config:name="Hoja1">
|
||||
<config:config-item config:name="CursorPositionX" config:type="int">7</config:config-item>
|
||||
<config:config-item config:name="CursorPositionY" config:type="int">11</config:config-item>
|
||||
<config:config-item config:name="HorizontalSplitMode" config:type="short">0</config:config-item>
|
||||
<config:config-item config:name="VerticalSplitMode" config:type="short">0</config:config-item>
|
||||
<config:config-item config:name="HorizontalSplitPosition" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="VerticalSplitPosition" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="ActiveSplitRange" config:type="short">2</config:config-item>
|
||||
<config:config-item config:name="PositionLeft" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="PositionRight" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="PositionTop" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="PositionBottom" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
|
||||
<config:config-item config:name="ZoomValue" config:type="int">160</config:config-item>
|
||||
<config:config-item config:name="PageViewZoomValue" config:type="int">120</config:config-item>
|
||||
<config:config-item config:name="ShowGrid" 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-named>
|
||||
<config:config-item config:name="ActiveTable" config:type="string">Hoja1</config:config-item>
|
||||
<config:config-item config:name="HorizontalScrollbarWidth" config:type="int">1620</config:config-item>
|
||||
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
|
||||
<config:config-item config:name="ZoomValue" config:type="int">160</config:config-item>
|
||||
<config:config-item config:name="PageViewZoomValue" config:type="int">120</config:config-item>
|
||||
<config:config-item config:name="ShowPageBreakPreview" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="GridColor" config:type="int">12632256</config:config-item>
|
||||
<config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="HasColumnRowHeaders" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="HasSheetTabs" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="IsValueHighlightingEnabled" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="IsSnapToRaster" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="RasterIsVisible" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="RasterResolutionX" config:type="int">1000</config:config-item>
|
||||
<config:config-item config:name="RasterResolutionY" config:type="int">1000</config:config-item>
|
||||
<config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item>
|
||||
<config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item>
|
||||
<config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</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="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="RasterResolutionY" config:type="int">1000</config:config-item>
|
||||
<config:config-item config:name="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item>
|
||||
<config:config-item config:name="GridColor" config:type="int">12632256</config:config-item>
|
||||
<config:config-item config:name="HasColumnRowHeaders" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="HasSheetTabs" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="PrinterSetup" config:type="base64Binary">owH+/0dlbmVyaWMgUHJpbnRlcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAU0dFTlBSVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAMAxAAAAAAAAAAIAFZUAAAkbQAASm9iRGF0YSAxCnByaW50ZXI9R2VuZXJpYyBQcmludGVyCm9yaWVudGF0aW9uPVBvcnRyYWl0CmNvcGllcz0xCmNvbGxhdGU9ZmFsc2UKbWFyZ2luZGFqdXN0bWVudD0wLDAsMCwwCmNvbG9yZGVwdGg9MjQKcHNsZXZlbD0wCnBkZmRldmljZT0xCmNvbG9yZGV2aWNlPTAKUFBEQ29udGV4RGF0YQpEdXBsZXg6Tm9uZQBQYWdlU2l6ZTpMZXR0ZXIAABIAQ09NUEFUX0RVUExFWF9NT0RFDwBEdXBsZXhNb2RlOjpPZmY=</config:config-item>
|
||||
<config:config-item config:name="RasterResolutionX" config:type="int">1000</config:config-item>
|
||||
<config:config-item config:name="SyntaxStringRef" config:type="short">0</config:config-item>
|
||||
<config:config-item config:name="RasterIsVisible" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="ApplyUserData" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item>
|
||||
<config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</config:config-item>
|
||||
<config:config-item-map-indexed config:name="ForbiddenCharacters">
|
||||
<config:config-item-map-entry>
|
||||
<config:config-item config:name="Language" config:type="string">en</config:config-item>
|
||||
<config:config-item config:name="Country" config:type="string">US</config:config-item>
|
||||
<config:config-item config:name="Variant" config:type="string"/>
|
||||
<config:config-item config:name="BeginLine" config:type="string"/>
|
||||
<config:config-item config:name="EndLine" config:type="string"/>
|
||||
</config:config-item-map-entry>
|
||||
<config:config-item-map-entry>
|
||||
<config:config-item config:name="Language" config:type="string">es</config:config-item>
|
||||
<config:config-item config:name="Country" config:type="string">CO</config:config-item>
|
||||
<config:config-item config:name="Variant" config:type="string"/>
|
||||
<config:config-item config:name="BeginLine" config:type="string"/>
|
||||
<config:config-item config:name="EndLine" config:type="string"/>
|
||||
</config:config-item-map-entry>
|
||||
</config:config-item-map-indexed>
|
||||
<config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="AutoCalculate" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="EmbedFonts" 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="ShowGrid" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="PrinterName" config:type="string">Generic Printer</config:config-item>
|
||||
<config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
|
||||
<config:config-item config:name="LinkUpdateMode" config:type="short">3</config:config-item>
|
||||
<config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="IsSnapToRaster" 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="UpdateFromTemplate" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="IsDocumentShared" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</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="Liberation Serif" svg:font-family="'Liberation Serif', 'Times New Roman'" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="Noto Sans CJK JP DemiLight" svg:font-family="'Noto Sans CJK JP DemiLight'" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="Arial" svg:font-family="Arial" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="DejaVu Sans" svg:font-family="'DejaVu Sans'" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="DejaVu Sans Condensed" svg:font-family="'DejaVu Sans Condensed'" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="Liberation Sans1" svg:font-family="'Liberation Sans'" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="Liberation Sans" svg:font-family="'Liberation Sans'" style:font-adornments="Bold" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="Liberation Sans2" svg:font-family="'Liberation Sans'" style:font-adornments="Normal" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="DejaVu Sans1" svg:font-family="'DejaVu Sans'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="Droid Sans Fallback" svg:font-family="'Droid Sans Fallback'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="FreeSans" svg:font-family="FreeSans" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="Lohit Hindi" svg:font-family="'Lohit Hindi'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||
</office:font-face-decls>
|
||||
<office:styles>
|
||||
<style:default-style style:family="table-cell">
|
||||
<style:paragraph-properties style:tab-stop-distance="1.25cm"/>
|
||||
<style:text-properties style:font-name="Arial" fo:language="es" fo:country="CO" style:font-name-asian="DejaVu Sans1" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="DejaVu Sans1" style:language-complex="hi" style:country-complex="IN"/>
|
||||
</style:default-style>
|
||||
<number:number-style style:name="N0">
|
||||
<number:number number:min-integer-digits="1"/>
|
||||
</number:number-style>
|
||||
<number:currency-style style:name="N104P0" style:volatile="true">
|
||||
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
</number:currency-style>
|
||||
<number:currency-style style:name="N104">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
<number:text>(</number:text>
|
||||
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text>)</number:text>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N104P0"/>
|
||||
</number:currency-style>
|
||||
<number:currency-style style:name="N109P0" style:volatile="true">
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text> </number:text>
|
||||
<number:currency-symbol number:language="fr" number:country="BE">€</number:currency-symbol>
|
||||
</number:currency-style>
|
||||
<number:currency-style style:name="N109">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
<number:text>-</number:text>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text> </number:text>
|
||||
<number:currency-symbol number:language="fr" number:country="BE">€</number:currency-symbol>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N109P0"/>
|
||||
</number:currency-style>
|
||||
<number:number-style style:name="N110P0" style:volatile="true">
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1"/>
|
||||
</number:number-style>
|
||||
<number:number-style style:name="N110">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
<number:text>-</number:text>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1"/>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N110P0"/>
|
||||
</number:number-style>
|
||||
<number:number-style style:name="N111P0" style:volatile="true">
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
</number:number-style>
|
||||
<number:number-style style:name="N111">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
<number:text>-</number:text>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N111P0"/>
|
||||
</number:number-style>
|
||||
<number:number-style style:name="N112">
|
||||
<number:text>(</number:text>
|
||||
<number:number number:decimal-places="0" number:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text>)</number:text>
|
||||
</number:number-style>
|
||||
<number:number-style style:name="N113P0" style:volatile="true">
|
||||
<number:number number:decimal-places="0" number:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
|
||||
</number:number-style>
|
||||
<number:number-style style:name="N113">
|
||||
<number:text>(</number:text>
|
||||
<number:number number:decimal-places="0" number:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text>)</number:text>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N113P0"/>
|
||||
</number:number-style>
|
||||
<number:currency-style style:name="N114P0" style:volatile="true">
|
||||
<number:currency-symbol number:language="en" number:country="US">$</number:currency-symbol>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
</number:currency-style>
|
||||
<number:currency-style style:name="N114">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
<number:text>-</number:text>
|
||||
<number:currency-symbol number:language="en" number:country="US">$</number:currency-symbol>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N114P0"/>
|
||||
</number:currency-style>
|
||||
<number:currency-style style:name="N10108P0" style:volatile="true" number:language="sl" number:country="SI">
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text> </number:text>
|
||||
<number:currency-symbol number:language="sl" number:country="SI">€</number:currency-symbol>
|
||||
</number:currency-style>
|
||||
<number:currency-style style:name="N10108" number:language="sl" number:country="SI">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
<number:text>-</number:text>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text> </number:text>
|
||||
<number:currency-symbol number:language="sl" number:country="SI">€</number:currency-symbol>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N10108P0"/>
|
||||
</number:currency-style>
|
||||
<style:style style:name="Default" style:family="table-cell">
|
||||
<style:text-properties style:font-name-asian="Droid Sans Fallback" style:font-family-asian="'Droid Sans Fallback'" style:font-family-generic-asian="system" style:font-pitch-asian="variable" style:font-name-complex="Lohit Hindi" style:font-family-complex="'Lohit Hindi'" style:font-family-generic-complex="system" style:font-pitch-complex="variable"/>
|
||||
</style:style>
|
||||
<style:style style:name="Heading_20__28_user_29_" style:display-name="Heading (user)" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#000000" fo:font-size="24pt" fo:font-style="normal" fo:font-weight="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="Heading_20_1" style:display-name="Heading 1" style:family="table-cell" style:parent-style-name="Heading_20__28_user_29_">
|
||||
<style:text-properties fo:color="#000000" fo:font-size="18pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Heading_20_2" style:display-name="Heading 2" style:family="table-cell" style:parent-style-name="Heading_20__28_user_29_">
|
||||
<style:text-properties fo:color="#000000" fo:font-size="12pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Text" style:family="table-cell" style:parent-style-name="Default"/>
|
||||
<style:style style:name="Note" style:family="table-cell" style:parent-style-name="Text">
|
||||
<style:table-cell-properties fo:background-color="#ffffcc" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" fo:border="0.74pt solid #808080"/>
|
||||
<style:text-properties fo:color="#333333" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Footnote" style:family="table-cell" style:parent-style-name="Text">
|
||||
<style:text-properties fo:color="#808080" fo:font-size="10pt" fo:font-style="italic" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Hyperlink" style:family="table-cell" style:parent-style-name="Text">
|
||||
<style:text-properties fo:color="#0000ee" fo:font-size="10pt" fo:font-style="normal" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="#0000ee" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Status" style:family="table-cell" style:parent-style-name="Default"/>
|
||||
<style:style style:name="Good" style:family="table-cell" style:parent-style-name="Status">
|
||||
<style:table-cell-properties fo:background-color="#ccffcc"/>
|
||||
<style:text-properties fo:color="#006600" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Neutral" style:family="table-cell" style:parent-style-name="Status">
|
||||
<style:table-cell-properties fo:background-color="#ffffcc"/>
|
||||
<style:text-properties fo:color="#996600" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Bad" style:family="table-cell" style:parent-style-name="Status">
|
||||
<style:table-cell-properties fo:background-color="#ffcccc"/>
|
||||
<style:text-properties fo:color="#cc0000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Warning" style:family="table-cell" style:parent-style-name="Status">
|
||||
<style:text-properties fo:color="#cc0000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Error" style:family="table-cell" style:parent-style-name="Status">
|
||||
<style:table-cell-properties fo:background-color="#cc0000"/>
|
||||
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="Accent" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#000000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="Accent_20_1" style:display-name="Accent 1" style:family="table-cell" style:parent-style-name="Accent">
|
||||
<style:table-cell-properties fo:background-color="#000000"/>
|
||||
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Accent_20_2" style:display-name="Accent 2" style:family="table-cell" style:parent-style-name="Accent">
|
||||
<style:table-cell-properties fo:background-color="#808080"/>
|
||||
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Accent_20_3" style:display-name="Accent 3" style:family="table-cell" style:parent-style-name="Accent">
|
||||
<style:table-cell-properties fo:background-color="#dddddd"/>
|
||||
</style:style>
|
||||
<style:style style:name="Result" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:font-style="italic" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="Result2" style:family="table-cell" style:parent-style-name="Result" style:data-style-name="N104"/>
|
||||
<style:style style:name="Heading" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/>
|
||||
<style:paragraph-properties fo:text-align="center"/>
|
||||
<style:text-properties fo:font-size="16pt" fo:font-style="italic" fo:font-weight="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="Heading1" style:family="table-cell" style:parent-style-name="Heading">
|
||||
<style:table-cell-properties style:rotation-angle="90"/>
|
||||
</style:style>
|
||||
<style:style style:name="Sin_20_nombre1" style:display-name="Sin nombre1" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#ff0000" style:font-name="Liberation Sans2" fo:font-family="'Liberation Sans'" style:font-style-name="Normal" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
</style:style>
|
||||
<style:style style:name="Sin_20_nombre2" style:display-name="Sin nombre2" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
</style:style>
|
||||
<style:style style:name="Sin_20_nombre3" style:display-name="Sin nombre3" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
</style:style>
|
||||
<style:style style:name="Sin_20_nombre4" style:display-name="Sin nombre4" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
</style:style>
|
||||
<style:style style:name="Sin_20_nombre5" style:display-name="Sin nombre5" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
</style:style>
|
||||
</office:styles>
|
||||
<office:automatic-styles>
|
||||
<style:style style:name="co1" style:family="table-column">
|
||||
<style:table-column-properties fo:break-before="auto" style:column-width="0.452cm"/>
|
||||
</style:style>
|
||||
<style:style style:name="co2" style:family="table-column">
|
||||
<style:table-column-properties fo:break-before="auto" style:column-width="7.897cm"/>
|
||||
</style:style>
|
||||
<style:style style:name="co3" style:family="table-column">
|
||||
<style:table-column-properties fo:break-before="auto" style:column-width="2.263cm"/>
|
||||
</style:style>
|
||||
<style:style style:name="co4" style:family="table-column">
|
||||
<style:table-column-properties fo:break-before="auto" style:column-width="2.637cm"/>
|
||||
</style:style>
|
||||
<style:style style:name="co5" style:family="table-column">
|
||||
<style:table-column-properties fo:break-before="auto" style:column-width="1.75cm"/>
|
||||
</style:style>
|
||||
<style:style style:name="co6" style:family="table-column">
|
||||
<style:table-column-properties fo:break-before="auto" style:column-width="1.944cm"/>
|
||||
</style:style>
|
||||
<style:style style:name="co7" style:family="table-column">
|
||||
<style:table-column-properties fo:break-before="auto" style:column-width="2.258cm"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro1" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.792cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro2" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.526cm" fo:break-before="auto" style:use-optimal-row-height="true"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro3" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.487cm" fo:break-before="auto" style:use-optimal-row-height="true"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro4" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.393cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro5" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.626cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro6" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.6cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro7" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.499cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro8" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.801cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro9" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.545cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro10" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.452cm" fo:break-before="auto" style:use-optimal-row-height="true"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro11" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="1.388cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ta1" style:family="table" style:master-page-name="Default">
|
||||
<style:table-properties table:display="true" style:writing-mode="lr-tb"/>
|
||||
</style:style>
|
||||
<number:number-style style:name="N2">
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1"/>
|
||||
</number:number-style>
|
||||
<number:text-style style:name="N100">
|
||||
<number:text-content/>
|
||||
</number:text-style>
|
||||
<number:number-style style:name="N20003" number:language="es" number:country="CO">
|
||||
<number:number number:decimal-places="0" number:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
|
||||
</number:number-style>
|
||||
<number:date-style style:name="N20036" number:language="es" number:country="CO" number:automatic-order="true">
|
||||
<number:day number:style="long"/>
|
||||
<number:text>/</number:text>
|
||||
<number:month number:style="long"/>
|
||||
<number:text>/</number:text>
|
||||
<number:year number:style="long"/>
|
||||
</number:date-style>
|
||||
<number:number-style style:name="N30000" number:language="en" number:country="US">
|
||||
<number:number number:min-integer-digits="1"/>
|
||||
</number:number-style>
|
||||
<style:style style:name="ce96" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:vertical-align="middle"/>
|
||||
<style:text-properties style:font-name="Liberation Sans1" fo:font-style="normal" style:font-style-asian="normal" style:font-style-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce97" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:vertical-align="middle"/>
|
||||
<style:text-properties style:font-name="DejaVu Sans"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce98" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:vertical-align="middle"/>
|
||||
<style:text-properties style:font-name="Noto Sans CJK JP DemiLight"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce99" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:background-color="#091a2f" style:text-align-source="fix" style:repeat-content="false" fo:wrap-option="wrap" fo:border="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#ffffff" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="7pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce100" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N100">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:language="es" fo:country="CO" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce101" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" fo:background-color="#eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#091a2f" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:font-weight="bold" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce102" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#111111" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:font-weight="normal" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce103" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:language="en" fo:country="US" fo:font-style="italic" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="italic" style:font-weight-asian="normal" style:font-size-complex="6pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="italic" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce17" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:vertical-align="middle"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce105" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#999999" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:language="en" fo:country="US" fo:font-style="italic" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="7pt" style:language-asian="zxx" style:country-asian="none" style:font-style-asian="italic" style:font-weight-asian="normal" style:font-size-complex="6.80000019073486pt" style:language-complex="none" style:country-complex="none" style:font-style-complex="italic" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce106" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="8pt" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce107" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties style:font-name="DejaVu Sans"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce108" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="11pt" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce109" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#091a2f" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans" fo:font-size="15pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Liberation Serif" style:font-size-asian="15pt" style:language-asian="zxx" style:country-asian="none" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="DejaVu Sans Condensed" style:font-size-complex="15pt" style:language-complex="none" style:country-complex="none" style:font-style-complex="normal" style:font-weight-complex="bold" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce110" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="11pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="11pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="11pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="bold" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce111" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="10pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="10pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="10pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce18" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:wrap-option="wrap" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:font-weight="normal" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce19" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans Condensed" fo:font-size="8pt" fo:font-weight="bold" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce112" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:font-weight="normal" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce113" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:font-weight="normal" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce114" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:language="en" fo:country="US" fo:font-style="italic" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="italic" style:font-weight-asian="normal" style:font-size-complex="6pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="italic" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce115" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:vertical-align="middle"/>
|
||||
<style:text-properties fo:color="#999999" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:language="en" fo:country="US" fo:font-style="italic" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6pt" style:language-asian="zxx" style:country-asian="none" style:font-style-asian="italic" style:font-weight-asian="normal" style:font-size-complex="6pt" style:language-complex="none" style:country-complex="none" style:font-style-complex="italic" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce116" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce117" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:border="0.26pt fine-dashed #808080"/>
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="8pt" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce118" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#006699" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-size="11pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="11pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="11pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce119" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="11pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="11pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="11pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce28" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:font-weight="normal" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce120" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:background-color="#7ccfe4" style:text-align-source="fix" style:repeat-content="false" fo:wrap-option="wrap" fo:border="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#091a2f" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="7pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce121" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="7pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce122" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="7pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce123" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" fo:background-color="#eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#091a2f" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="7pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="7pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="bold" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce124" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce125" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="7pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce126" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans" fo:font-size="7pt" style:text-underline-style="none" fo:font-weight="normal" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce127" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="8pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="8pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce128" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:background-color="#cccccc" style:text-align-source="fix" style:repeat-content="false" fo:wrap-option="wrap" fo:border="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#ffffff" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="7pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce129" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="7pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce130" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:border="0.26pt fine-dashed #808080" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center"/>
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="8pt" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce131" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:background-color="#7ccfe4" style:text-align-source="fix" style:repeat-content="false" fo:wrap-option="wrap" fo:border="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#091a2f" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="12pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="12pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="12pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce132" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20036">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#091a2f" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="8pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="8pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce133" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:background-color="#999999"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce134" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" fo:background-color="#eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#091a2f" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="7pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="7pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="bold" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce135" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#006699" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="11pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="11pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="11pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce136" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="8pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="8pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce137" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Noto Sans CJK JP DemiLight" fo:font-size="10pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="10pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="10pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce138" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:background-color="#666666" style:text-align-source="fix" style:repeat-content="false" fo:wrap-option="wrap" fo:border="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#ffffff" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="7pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce139" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans" fo:font-size="7pt" style:text-underline-style="none" fo:font-weight="bold" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce140" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#666666"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce141" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties style:text-underline-style="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce142" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce143" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:vertical-align="middle"/>
|
||||
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="11pt" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
|
||||
</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="1.524cm" fo:margin-bottom="1.524cm" fo:margin-left="1.524cm" fo:margin-right="1.524cm" style:writing-mode="lr-tb"/>
|
||||
<style:header-style>
|
||||
<style:header-footer-properties fo:min-height="0.75cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-bottom="0.25cm"/>
|
||||
</style:header-style>
|
||||
<style:footer-style>
|
||||
<style:header-footer-properties fo:min-height="0.75cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0.25cm"/>
|
||||
</style:footer-style>
|
||||
</style:page-layout>
|
||||
<style:page-layout style:name="pm2">
|
||||
<style:page-layout-properties style:writing-mode="lr-tb"/>
|
||||
<style:header-style>
|
||||
<style:header-footer-properties fo:min-height="0.75cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-bottom="0.25cm" fo:border="2.49pt solid #000000" fo:padding="0.018cm" fo:background-color="#c0c0c0">
|
||||
<style:background-image/>
|
||||
</style:header-footer-properties>
|
||||
</style:header-style>
|
||||
<style:footer-style>
|
||||
<style:header-footer-properties fo:min-height="0.75cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0.25cm" fo:border="2.49pt solid #000000" fo:padding="0.018cm" fo:background-color="#c0c0c0">
|
||||
<style:background-image/>
|
||||
</style:header-footer-properties>
|
||||
</style:footer-style>
|
||||
</style:page-layout>
|
||||
<style:style style:name="T1" style:family="text">
|
||||
<style:text-properties style:text-underline-style="none" style:text-underline-color="font-color" fo:font-style="italic" style:letter-kerning="true" fo:language="en" fo:country="US" style:language-asian="zxx" style:country-asian="none" style:font-name-complex="DejaVu Sans Condensed" style:font-size-asian="13pt" style:font-size-complex="13pt" style:font-weight-asian="bold" style:font-weight-complex="bold" style:font-style-asian="italic" style:font-style-complex="italic"/>
|
||||
</style:style>
|
||||
</office:automatic-styles>
|
||||
<office:master-styles>
|
||||
<style:master-page style:name="Default" style:page-layout-name="pm1">
|
||||
<style:header style:display="false">
|
||||
<text:p><text:sheet-name>???</text:sheet-name></text:p>
|
||||
</style:header>
|
||||
<style:header-left style:display="false"/>
|
||||
<style:footer style:display="false">
|
||||
<text:p>Página <text:page-number>1</text:page-number></text:p>
|
||||
</style:footer>
|
||||
<style:footer-left style:display="false"/>
|
||||
</style:master-page>
|
||||
<style:master-page style:name="Report" style:page-layout-name="pm2">
|
||||
<style:header>
|
||||
<style:region-left>
|
||||
<text:p><text:sheet-name>???</text:sheet-name><text:s/>(<text:title>???</text:title>)</text:p>
|
||||
</style:region-left>
|
||||
<style:region-right>
|
||||
<text:p><text:date style:data-style-name="N2" text:date-value="2020-10-06">00/00/0000</text:date>, <text:time style:data-style-name="N2" text:time-value="19:10:38.463692396">00:00:00</text:time></text:p>
|
||||
</style:region-right>
|
||||
</style:header>
|
||||
<style:header-left style:display="false"/>
|
||||
<style:footer>
|
||||
<text:p>Página <text:page-number>1</text:page-number><text:s/>/ <text:page-count>99</text:page-count></text:p>
|
||||
</style:footer>
|
||||
<style:footer-left style:display="false"/>
|
||||
</style:master-page>
|
||||
</office:master-styles>
|
||||
<office:body>
|
||||
<office:spreadsheet>
|
||||
<table:table table:name="Hoja1" table:style-name="ta1">
|
||||
<office:forms form:automatic-focus="false" form:apply-design-mode="false">
|
||||
<form:form form:name="Formulario" form:apply-filter="true" form:command-type="table" form:control-implementation="ooo:com.sun.star.form.component.Form" office:target-frame="">
|
||||
<form:properties>
|
||||
<form:property form:property-name="PropertyChangeNotificationEnabled" office:value-type="boolean" office:boolean-value="true"/>
|
||||
<form:property form:property-name="TargetURL" office:value-type="string" office:string-value=""/>
|
||||
</form:properties>
|
||||
</form:form>
|
||||
</office:forms>
|
||||
<table:table-column table:style-name="co1" table:default-cell-style-name="ce108"/>
|
||||
<table:table-column table:style-name="co2" table:default-cell-style-name="ce108"/>
|
||||
<table:table-column table:style-name="co3" table:default-cell-style-name="ce108"/>
|
||||
<table:table-column table:style-name="co4" table:number-columns-repeated="3" table:default-cell-style-name="ce108"/>
|
||||
<table:table-column table:style-name="co5" table:default-cell-style-name="Default"/>
|
||||
<table:table-column table:style-name="co6" table:default-cell-style-name="Default"/>
|
||||
<table:table-column table:style-name="co7" table:number-columns-repeated="6" table:default-cell-style-name="Default"/>
|
||||
<table:table-column table:style-name="co7" table:number-columns-repeated="50" table:default-cell-style-name="ce143"/>
|
||||
<table:table-row table:style-name="ro1">
|
||||
<table:table-cell table:style-name="ce96"/>
|
||||
<table:table-cell table:style-name="ce109" office:value-type="string" calcext:value-type="string"><text:p><text:span text:style-name="T1">ESTADO DE RESULTADO INTEGRAL</text:span></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce118" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce131" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"><text:p><text:a xlink:href="relatorio://fiscalyear" xlink:type="simple">fiscalyear</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:covered-table-cell table:style-name="ce135"/>
|
||||
<table:table-cell table:style-name="ce141"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro2">
|
||||
<table:table-cell table:style-name="ce97"/>
|
||||
<table:table-cell table:style-name="ce110" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://company.rec_name" xlink:type="simple">company.rec_name</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce119" table:number-columns-repeated="4"/>
|
||||
<table:table-cell table:style-name="ce141"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro3">
|
||||
<table:table-cell table:style-name="ce97"/>
|
||||
<table:table-cell table:style-name="ce111" office:value-type="string" calcext:value-type="string"><text:p>NIT <text:a xlink:href="relatorio://company.party.identifiers%20and%20company.party.identifiers[0].code" xlink:type="simple">company.party.identifiers and company.party.identifiers[0].code</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Default"/>
|
||||
<table:table-cell table:style-name="ce119" table:number-columns-repeated="3"/>
|
||||
<table:table-cell table:style-name="ce141"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro3">
|
||||
<table:table-cell table:style-name="ce97"/>
|
||||
<table:table-cell table:style-name="ce18" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>Dirección: </text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce28" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>Teléfono:</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce127" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>FECHA FINAL:</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce132" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://start_period%20and%20start_period.start_date" xlink:type="simple">start_period and start_period.start_date</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce136"/>
|
||||
<table:table-cell table:style-name="ce119"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro3">
|
||||
<table:table-cell table:style-name="ce97"/>
|
||||
<table:table-cell table:style-name="ce19" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://company.party.address_get().full_address" xlink:type="simple">company.party.address_get().full_address</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce19" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://company.party.get_mechanism('phone')" xlink:type="simple">company.party.get_mechanism('phone')</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce127" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>FECHA INICIAL:</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce132" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://end_period%20and%20end_period.end_date" xlink:type="simple">end_period and end_period.end_date</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce136"/>
|
||||
<table:table-cell table:style-name="ce137"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro4">
|
||||
<table:table-cell table:style-name="ce98"/>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="3"/>
|
||||
<table:table-cell table:style-name="ce132"/>
|
||||
<table:table-cell table:style-name="ce137"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro5">
|
||||
<table:table-cell table:style-name="ce99"/>
|
||||
<table:table-cell table:style-name="ce99" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>DESCRIPCIÓN</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce120" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>NOTAS</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce128"/>
|
||||
<table:table-cell table:style-name="ce133"/>
|
||||
<table:table-cell table:style-name="ce138"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro6">
|
||||
<table:table-cell table:style-name="ce100" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://for%20each='account_type%20in%20records'" xlink:type="simple">for each='account_type in records'</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce100"/>
|
||||
<table:table-cell table:style-name="ce121" table:number-columns-repeated="4"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro7">
|
||||
<table:table-cell table:style-name="ce100" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://if%20test=%22account_type.childs%22" xlink:type="simple">if test="account_type.childs"</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce100"/>
|
||||
<table:table-cell table:style-name="ce122" table:number-columns-repeated="3"/>
|
||||
<table:table-cell table:style-name="ce139"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro8">
|
||||
<table:table-cell table:style-name="ce101" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://account_type.name" xlink:type="simple">account_type.name</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce101"/>
|
||||
<table:table-cell table:style-name="ce123" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce134"/>
|
||||
<table:table-cell table:style-name="ce123" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://account_type.amount" xlink:type="simple">account_type.amount</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce142" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:number-columns-repeated="56"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro6">
|
||||
<table:table-cell table:style-name="ce100" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio:///if" xlink:type="simple">/if</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce100"/>
|
||||
<table:table-cell table:style-name="ce124" table:number-columns-repeated="4"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro6">
|
||||
<table:table-cell table:style-name="ce100" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://for%20each=%22c%20in%20account_type.childs%22" xlink:type="simple">for each="c in account_type.childs"</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce100"/>
|
||||
<table:table-cell table:style-name="ce124" table:number-columns-repeated="4"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro6">
|
||||
<table:table-cell table:style-name="ce102"/>
|
||||
<table:table-cell table:style-name="ce112" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://c.name" xlink:type="simple">c.name</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce125" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce125" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://c.amount" xlink:type="simple">c.amount</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Default"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro7">
|
||||
<table:table-cell table:style-name="ce100"/>
|
||||
<table:table-cell table:style-name="ce100" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://if%20test=%22hasattr(c,%20'accounts')%22" xlink:type="simple">if test="hasattr(c, 'accounts')"</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce122" table:number-columns-repeated="3"/>
|
||||
<table:table-cell table:style-name="ce139"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro7">
|
||||
<table:table-cell table:style-name="ce100"/>
|
||||
<table:table-cell table:style-name="ce100" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://for%20each=%22account%20in%20c.accounts%22" xlink:type="simple">for each="account in c.accounts"</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce122" table:number-columns-repeated="3"/>
|
||||
<table:table-cell table:style-name="ce139"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro7">
|
||||
<table:table-cell table:style-name="ce100"/>
|
||||
<table:table-cell table:style-name="ce100" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://if%20test=%22account.balance%20!=%200%22" xlink:type="simple">if test="account.balance != 0"</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce122" table:number-columns-repeated="3"/>
|
||||
<table:table-cell table:style-name="ce139"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro6">
|
||||
<table:table-cell table:style-name="ce100"/>
|
||||
<table:table-cell table:style-name="ce113" office:value-type="string" calcext:value-type="string"><text:p> <text:a xlink:href="relatorio://account.name" xlink:type="simple">account.name</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce126"/>
|
||||
<table:table-cell table:style-name="ce129" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://account.balance" xlink:type="simple">account.balance</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Default"/>
|
||||
<table:table-cell table:style-name="ce140"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro6">
|
||||
<table:table-cell table:style-name="ce100"/>
|
||||
<table:table-cell table:style-name="ce100" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio:///if" xlink:type="simple">/if</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce124" table:number-columns-repeated="4"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro6">
|
||||
<table:table-cell table:style-name="ce100"/>
|
||||
<table:table-cell table:style-name="ce100" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio:///for" xlink:type="simple">/for</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce124" table:number-columns-repeated="4"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro6">
|
||||
<table:table-cell table:style-name="ce100"/>
|
||||
<table:table-cell table:style-name="ce100" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio:///if" xlink:type="simple">/if</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce124" table:number-columns-repeated="4"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro7">
|
||||
<table:table-cell table:style-name="ce100" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio:///for" xlink:type="simple">/for</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce100"/>
|
||||
<table:table-cell table:style-name="ce122" table:number-columns-repeated="4"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro6">
|
||||
<table:table-cell table:style-name="ce100" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio:///for" xlink:type="simple">/for</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce100"/>
|
||||
<table:table-cell table:style-name="ce121" table:number-columns-repeated="4"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro9">
|
||||
<table:table-cell table:style-name="ce103"/>
|
||||
<table:table-cell table:style-name="ce114" office:value-type="string" calcext:value-type="string"><text:p>Impresión: <text:a xlink:href="relatorio://format_date(datetime.date.today(),%20company.party.lang)" xlink:type="simple">format_date(datetime.date.today(), company.party.lang)</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce114" table:number-columns-repeated="4"/>
|
||||
<table:table-cell table:number-columns-repeated="8"/>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="50"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro10">
|
||||
<table:table-cell table:style-name="ce17"/>
|
||||
<table:table-cell table:style-name="ce115" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>Cifras expresadas en pesos colombianos.</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce97" table:number-columns-repeated="4"/>
|
||||
<table:table-cell table:number-columns-repeated="8"/>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="50"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro10">
|
||||
<table:table-cell table:style-name="ce17"/>
|
||||
<table:table-cell table:style-name="ce115" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>Las notas que se acompañan son parte integrante de los estados financieros.</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce97" table:number-columns-repeated="4"/>
|
||||
<table:table-cell table:number-columns-repeated="8"/>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="50"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro10">
|
||||
<table:table-cell table:style-name="ce105"/>
|
||||
<table:table-cell table:style-name="ce107" table:number-columns-repeated="5"/>
|
||||
<table:table-cell table:number-columns-repeated="8"/>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="50"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro10">
|
||||
<table:table-cell table:style-name="ce105"/>
|
||||
<table:table-cell table:style-name="ce116" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>REPRESENTANTE LEGAL</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce116"/>
|
||||
<table:table-cell table:style-name="ce116" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>CONTADOR</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:number-columns-repeated="8"/>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="50"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro11">
|
||||
<table:table-cell table:style-name="ce106"/>
|
||||
<table:table-cell table:style-name="ce117"/>
|
||||
<table:table-cell table:style-name="ce106"/>
|
||||
<table:table-cell table:style-name="ce130" table:number-columns-spanned="3" table:number-rows-spanned="1"/>
|
||||
<table:covered-table-cell table:number-columns-repeated="2" table:style-name="Default"/>
|
||||
<table:table-cell table:number-columns-repeated="8"/>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="50"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro10">
|
||||
<table:table-cell table:style-name="ce106"/>
|
||||
<table:table-cell table:style-name="ce117"/>
|
||||
<table:table-cell table:style-name="ce106"/>
|
||||
<table:table-cell table:style-name="ce130" table:number-columns-spanned="3" table:number-rows-spanned="1"/>
|
||||
<table:covered-table-cell table:number-columns-repeated="2" table:style-name="Default"/>
|
||||
<table:table-cell table:number-columns-repeated="8"/>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="50"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro10">
|
||||
<table:table-cell table:style-name="ce107" table:number-columns-repeated="6"/>
|
||||
<table:table-cell table:number-columns-repeated="8"/>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="50"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro10" table:number-rows-repeated="19">
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="6"/>
|
||||
<table:table-cell table:number-columns-repeated="8"/>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="50"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro3" table:number-rows-repeated="1048526">
|
||||
<table:table-cell table:number-columns-repeated="64"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro3">
|
||||
<table:table-cell table:number-columns-repeated="64"/>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<table:named-expressions/>
|
||||
</office:spreadsheet>
|
||||
</office:body>
|
||||
</office:document>
|
||||
1025
modules/account_co_reports/report/income_statement_colgaap.fods
Normal file
1025
modules/account_co_reports/report/income_statement_colgaap.fods
Normal file
File diff suppressed because it is too large
Load Diff
659
modules/account_co_reports/report/trial_balance.fods
Normal file
659
modules/account_co_reports/report/trial_balance.fods
Normal file
@@ -0,0 +1,659 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<office:document xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" 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.spreadsheet">
|
||||
<office:meta><meta:creation-date>2015-03-21T09:18:00.143995121</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/7.0.1.2$Linux_X86_64 LibreOffice_project/00$Build-2</meta:generator><meta:document-statistic meta:table-count="1" meta:cell-count="25" meta:object-count="0"/></office:meta>
|
||||
<office:settings>
|
||||
<config:config-item-set config:name="ooo:view-settings">
|
||||
<config:config-item config:name="VisibleAreaTop" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="VisibleAreaLeft" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="VisibleAreaWidth" config:type="int">18416</config:config-item>
|
||||
<config:config-item config:name="VisibleAreaHeight" config:type="int">4951</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">view1</config:config-item>
|
||||
<config:config-item-map-named config:name="Tables">
|
||||
<config:config-item-map-entry config:name="Hoja1">
|
||||
<config:config-item config:name="CursorPositionX" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="CursorPositionY" config:type="int">8</config:config-item>
|
||||
<config:config-item config:name="HorizontalSplitMode" config:type="short">0</config:config-item>
|
||||
<config:config-item config:name="VerticalSplitMode" config:type="short">0</config:config-item>
|
||||
<config:config-item config:name="HorizontalSplitPosition" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="VerticalSplitPosition" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="ActiveSplitRange" config:type="short">2</config:config-item>
|
||||
<config:config-item config:name="PositionLeft" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="PositionRight" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="PositionTop" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="PositionBottom" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
|
||||
<config:config-item config:name="ZoomValue" config:type="int">170</config:config-item>
|
||||
<config:config-item config:name="PageViewZoomValue" config:type="int">140</config:config-item>
|
||||
<config:config-item config:name="ShowGrid" 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-named>
|
||||
<config:config-item config:name="ActiveTable" config:type="string">Hoja1</config:config-item>
|
||||
<config:config-item config:name="HorizontalScrollbarWidth" config:type="int">1620</config:config-item>
|
||||
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
|
||||
<config:config-item config:name="ZoomValue" config:type="int">170</config:config-item>
|
||||
<config:config-item config:name="PageViewZoomValue" config:type="int">140</config:config-item>
|
||||
<config:config-item config:name="ShowPageBreakPreview" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="GridColor" config:type="int">12632256</config:config-item>
|
||||
<config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="HasColumnRowHeaders" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="HasSheetTabs" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="IsValueHighlightingEnabled" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="IsSnapToRaster" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="RasterIsVisible" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="RasterResolutionX" config:type="int">1000</config:config-item>
|
||||
<config:config-item config:name="RasterResolutionY" config:type="int">1000</config:config-item>
|
||||
<config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item>
|
||||
<config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item>
|
||||
<config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</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="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="RasterResolutionY" config:type="int">1000</config:config-item>
|
||||
<config:config-item config:name="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item>
|
||||
<config:config-item config:name="GridColor" config:type="int">12632256</config:config-item>
|
||||
<config:config-item config:name="HasColumnRowHeaders" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="HasSheetTabs" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="PrinterSetup" config:type="base64Binary">owH+/0dlbmVyaWMgUHJpbnRlcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAU0dFTlBSVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAMAxAAAAAAAAAAIAFZUAAAkbQAASm9iRGF0YSAxCnByaW50ZXI9R2VuZXJpYyBQcmludGVyCm9yaWVudGF0aW9uPVBvcnRyYWl0CmNvcGllcz0xCmNvbGxhdGU9ZmFsc2UKbWFyZ2luZGFqdXN0bWVudD0wLDAsMCwwCmNvbG9yZGVwdGg9MjQKcHNsZXZlbD0wCnBkZmRldmljZT0xCmNvbG9yZGV2aWNlPTAKUFBEQ29udGV4RGF0YQpEdXBsZXg6Tm9uZQBQYWdlU2l6ZTpMZXR0ZXIAABIAQ09NUEFUX0RVUExFWF9NT0RFDwBEdXBsZXhNb2RlOjpPZmY=</config:config-item>
|
||||
<config:config-item config:name="RasterResolutionX" config:type="int">1000</config:config-item>
|
||||
<config:config-item config:name="SyntaxStringRef" config:type="short">0</config:config-item>
|
||||
<config:config-item config:name="RasterIsVisible" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="ApplyUserData" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item>
|
||||
<config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</config:config-item>
|
||||
<config:config-item-map-indexed config:name="ForbiddenCharacters">
|
||||
<config:config-item-map-entry>
|
||||
<config:config-item config:name="Language" config:type="string">en</config:config-item>
|
||||
<config:config-item config:name="Country" config:type="string">US</config:config-item>
|
||||
<config:config-item config:name="Variant" config:type="string"/>
|
||||
<config:config-item config:name="BeginLine" config:type="string"/>
|
||||
<config:config-item config:name="EndLine" config:type="string"/>
|
||||
</config:config-item-map-entry>
|
||||
<config:config-item-map-entry>
|
||||
<config:config-item config:name="Language" config:type="string">es</config:config-item>
|
||||
<config:config-item config:name="Country" config:type="string">CO</config:config-item>
|
||||
<config:config-item config:name="Variant" config:type="string"/>
|
||||
<config:config-item config:name="BeginLine" config:type="string"/>
|
||||
<config:config-item config:name="EndLine" config:type="string"/>
|
||||
</config:config-item-map-entry>
|
||||
</config:config-item-map-indexed>
|
||||
<config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="AutoCalculate" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="EmbedFonts" 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="ShowGrid" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="PrinterName" config:type="string">Generic Printer</config:config-item>
|
||||
<config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
|
||||
<config:config-item config:name="LinkUpdateMode" config:type="short">3</config:config-item>
|
||||
<config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="IsSnapToRaster" 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="UpdateFromTemplate" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="IsDocumentShared" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</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="Arial" svg:font-family="Arial" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="DejaVu Sans" svg:font-family="'DejaVu Sans'" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="DejaVu Sans Condensed" svg:font-family="'DejaVu Sans Condensed'" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="DejaVu Sans Light" svg:font-family="'DejaVu Sans Light'" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="Liberation Sans1" svg:font-family="'Liberation Sans'" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="Liberation Sans" svg:font-family="'Liberation Sans'" style:font-adornments="Normal" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="DejaVu Sans1" svg:font-family="'DejaVu Sans'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="Droid Sans Fallback" svg:font-family="'Droid Sans Fallback'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="FreeSans" svg:font-family="FreeSans" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="Lohit Hindi" svg:font-family="'Lohit Hindi'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||
</office:font-face-decls>
|
||||
<office:styles>
|
||||
<style:default-style style:family="table-cell">
|
||||
<style:paragraph-properties style:tab-stop-distance="1.25cm"/>
|
||||
<style:text-properties style:font-name="Arial" fo:language="es" fo:country="CO" style:font-name-asian="DejaVu Sans1" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="DejaVu Sans1" style:language-complex="hi" style:country-complex="IN"/>
|
||||
</style:default-style>
|
||||
<number:number-style style:name="N0">
|
||||
<number:number number:min-integer-digits="1"/>
|
||||
</number:number-style>
|
||||
<number:currency-style style:name="N104P0" style:volatile="true">
|
||||
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
</number:currency-style>
|
||||
<number:currency-style style:name="N104">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
<number:text>(</number:text>
|
||||
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text>)</number:text>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N104P0"/>
|
||||
</number:currency-style>
|
||||
<number:currency-style style:name="N109P0" style:volatile="true">
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text> </number:text>
|
||||
<number:currency-symbol number:language="fr" number:country="BE">€</number:currency-symbol>
|
||||
</number:currency-style>
|
||||
<number:currency-style style:name="N109">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
<number:text>-</number:text>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text> </number:text>
|
||||
<number:currency-symbol number:language="fr" number:country="BE">€</number:currency-symbol>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N109P0"/>
|
||||
</number:currency-style>
|
||||
<number:number-style style:name="N110P0" style:volatile="true">
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1"/>
|
||||
</number:number-style>
|
||||
<number:number-style style:name="N110">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
<number:text>-</number:text>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1"/>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N110P0"/>
|
||||
</number:number-style>
|
||||
<number:currency-style style:name="N10108P0" style:volatile="true" number:language="sl" number:country="SI">
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text> </number:text>
|
||||
<number:currency-symbol number:language="sl" number:country="SI">€</number:currency-symbol>
|
||||
</number:currency-style>
|
||||
<number:currency-style style:name="N10108" number:language="sl" number:country="SI">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
<number:text>-</number:text>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text> </number:text>
|
||||
<number:currency-symbol number:language="sl" number:country="SI">€</number:currency-symbol>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N10108P0"/>
|
||||
</number:currency-style>
|
||||
<style:style style:name="Default" style:family="table-cell">
|
||||
<style:text-properties style:font-name-asian="Droid Sans Fallback" style:font-family-asian="'Droid Sans Fallback'" style:font-family-generic-asian="system" style:font-pitch-asian="variable" style:font-name-complex="Lohit Hindi" style:font-family-complex="'Lohit Hindi'" style:font-family-generic-complex="system" style:font-pitch-complex="variable"/>
|
||||
</style:style>
|
||||
<style:style style:name="Heading_20__28_user_29_" style:display-name="Heading (user)" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#000000" fo:font-size="24pt" fo:font-style="normal" fo:font-weight="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="Heading_20_1" style:display-name="Heading 1" style:family="table-cell" style:parent-style-name="Heading_20__28_user_29_">
|
||||
<style:text-properties fo:color="#000000" fo:font-size="18pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Heading_20_2" style:display-name="Heading 2" style:family="table-cell" style:parent-style-name="Heading_20__28_user_29_">
|
||||
<style:text-properties fo:color="#000000" fo:font-size="12pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Text" style:family="table-cell" style:parent-style-name="Default"/>
|
||||
<style:style style:name="Note" style:family="table-cell" style:parent-style-name="Text">
|
||||
<style:table-cell-properties fo:background-color="#ffffcc" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" fo:border="0.74pt solid #808080"/>
|
||||
<style:text-properties fo:color="#333333" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Footnote" style:family="table-cell" style:parent-style-name="Text">
|
||||
<style:text-properties fo:color="#808080" fo:font-size="10pt" fo:font-style="italic" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Hyperlink" style:family="table-cell" style:parent-style-name="Text">
|
||||
<style:text-properties fo:color="#0000ee" fo:font-size="10pt" fo:font-style="normal" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="#0000ee" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Status" style:family="table-cell" style:parent-style-name="Default"/>
|
||||
<style:style style:name="Good" style:family="table-cell" style:parent-style-name="Status">
|
||||
<style:table-cell-properties fo:background-color="#ccffcc"/>
|
||||
<style:text-properties fo:color="#006600" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Neutral" style:family="table-cell" style:parent-style-name="Status">
|
||||
<style:table-cell-properties fo:background-color="#ffffcc"/>
|
||||
<style:text-properties fo:color="#996600" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Bad" style:family="table-cell" style:parent-style-name="Status">
|
||||
<style:table-cell-properties fo:background-color="#ffcccc"/>
|
||||
<style:text-properties fo:color="#cc0000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Warning" style:family="table-cell" style:parent-style-name="Status">
|
||||
<style:text-properties fo:color="#cc0000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Error" style:family="table-cell" style:parent-style-name="Status">
|
||||
<style:table-cell-properties fo:background-color="#cc0000"/>
|
||||
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="Accent" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#000000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="Accent_20_1" style:display-name="Accent 1" style:family="table-cell" style:parent-style-name="Accent">
|
||||
<style:table-cell-properties fo:background-color="#000000"/>
|
||||
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Accent_20_2" style:display-name="Accent 2" style:family="table-cell" style:parent-style-name="Accent">
|
||||
<style:table-cell-properties fo:background-color="#808080"/>
|
||||
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Accent_20_3" style:display-name="Accent 3" style:family="table-cell" style:parent-style-name="Accent">
|
||||
<style:table-cell-properties fo:background-color="#dddddd"/>
|
||||
</style:style>
|
||||
<style:style style:name="Result" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:font-style="italic" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="Result2" style:family="table-cell" style:parent-style-name="Result" style:data-style-name="N104"/>
|
||||
<style:style style:name="Heading" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/>
|
||||
<style:paragraph-properties fo:text-align="center"/>
|
||||
<style:text-properties fo:font-size="16pt" fo:font-style="italic" fo:font-weight="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="Heading1" style:family="table-cell" style:parent-style-name="Heading">
|
||||
<style:table-cell-properties style:rotation-angle="90"/>
|
||||
</style:style>
|
||||
<style:style style:name="Sin_20_nombre1" style:display-name="Sin nombre1" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#ff0000" style:font-name="Liberation Sans" fo:font-family="'Liberation Sans'" style:font-style-name="Normal" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
</style:style>
|
||||
<style:style style:name="Sin_20_nombre2" style:display-name="Sin nombre2" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
</style:style>
|
||||
<style:style style:name="Sin_20_nombre3" style:display-name="Sin nombre3" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
</style:style>
|
||||
<style:style style:name="Sin_20_nombre4" style:display-name="Sin nombre4" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
</style:style>
|
||||
<style:style style:name="Sin_20_nombre5" style:display-name="Sin nombre5" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
</style:style>
|
||||
</office:styles>
|
||||
<office:automatic-styles>
|
||||
<style:style style:name="co1" style:family="table-column">
|
||||
<style:table-column-properties fo:break-before="auto" style:column-width="2.041cm"/>
|
||||
</style:style>
|
||||
<style:style style:name="co2" style:family="table-column">
|
||||
<style:table-column-properties fo:break-before="auto" style:column-width="6.442cm"/>
|
||||
</style:style>
|
||||
<style:style style:name="co3" style:family="table-column">
|
||||
<style:table-column-properties fo:break-before="auto" style:column-width="2.484cm"/>
|
||||
</style:style>
|
||||
<style:style style:name="co4" style:family="table-column">
|
||||
<style:table-column-properties fo:break-before="auto" style:column-width="2.258cm"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro1" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.857cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro2" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.84cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro3" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.404cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro4" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.545cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro5" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.4cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro6" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.55cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro7" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.487cm" fo:break-before="auto" style:use-optimal-row-height="true"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro8" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.452cm" fo:break-before="auto" style:use-optimal-row-height="true"/>
|
||||
</style:style>
|
||||
<style:style style:name="ta1" style:family="table" style:master-page-name="Default">
|
||||
<style:table-properties table:display="true" style:writing-mode="lr-tb"/>
|
||||
</style:style>
|
||||
<number:number-style style:name="N2">
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1"/>
|
||||
</number:number-style>
|
||||
<number:text-style style:name="N100">
|
||||
<number:text-content/>
|
||||
</number:text-style>
|
||||
<number:number-style style:name="N20003" number:language="es" number:country="CO">
|
||||
<number:number number:decimal-places="0" number:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
|
||||
</number:number-style>
|
||||
<number:number-style style:name="N30000" number:language="en" number:country="US">
|
||||
<number:number number:min-integer-digits="1"/>
|
||||
</number:number-style>
|
||||
<style:style style:name="ce61" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#808080" style:font-name="DejaVu Sans" fo:font-size="12pt" fo:font-weight="normal" style:font-size-asian="12pt" style:font-weight-asian="normal" style:font-size-complex="12pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce62" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="0.06pt solid #ffffff" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans Light" fo:font-size="14pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="14pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="14pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="bold" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce63" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties style:font-name="DejaVu Sans"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce65" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N100">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#ffffff" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans Condensed" fo:font-size="8pt" fo:language="es" fo:country="CO" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="8pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="8pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce67" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:border-bottom="none" fo:background-color="#cfe7f5" style:text-align-source="fix" style:repeat-content="false" fo:wrap-option="wrap" fo:border-left="0.06pt solid #ffffff" fo:border-right="0.06pt solid #ffffff" fo:border-top="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#1c1c1c" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="6pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce68" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce69" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce70" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N100">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:language="es" fo:country="CO" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce71" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N100">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="6pt" fo:font-weight="bold" style:font-size-asian="6pt" style:font-weight-asian="bold" style:font-size-complex="6pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce72" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="11pt" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce73" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#333333" style:font-name="DejaVu Sans Condensed" fo:font-size="8pt" fo:font-weight="bold" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-name-complex="Lohit Hindi" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce74" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:border-bottom="none" fo:background-color="#cfe7f5" style:text-align-source="fix" style:repeat-content="false" fo:border-left="0.06pt solid #ffffff" fo:border-right="0.06pt solid #ffffff" fo:border-top="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#1c1c1c" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="6pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce75" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce76" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="6pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce77" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="6pt" fo:font-weight="bold" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-weight-asian="bold" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce78" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:vertical-align="middle"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce79" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:border-bottom="none" style:text-align-source="fix" style:repeat-content="false" fo:border-left="0.26pt solid #cfe7f5" fo:border-right="none" fo:border-top="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center"/>
|
||||
<style:text-properties fo:color="#666666" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="7pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce80" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:border-bottom="none" style:text-align-source="fix" style:repeat-content="false" fo:border-left="0.26pt solid #cfe7f5" fo:border-right="none" fo:border-top="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center"/>
|
||||
<style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="7pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce81" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#333333" style:font-name="DejaVu Sans Condensed" fo:font-size="8pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="8pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce82" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:border-bottom="none" fo:background-color="#ffffcc" style:text-align-source="fix" style:repeat-content="false" fo:border-left="0.06pt solid #ffffff" fo:border-right="0.06pt solid #ffffff" fo:border-top="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#1c1c1c" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="6pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce83" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce84" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:font-weight="bold" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-weight-asian="bold" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce85" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#ffffff" style:font-name="DejaVu Sans Condensed" fo:font-size="8pt" fo:font-weight="bold" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-name-complex="Lohit Hindi" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce86" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:border-bottom="none" fo:background-color="#ff6666" style:text-align-source="fix" style:repeat-content="false" fo:border-left="0.06pt solid #ffffff" fo:border-right="0.06pt solid #ffffff" fo:border-top="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#ffffff" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="6pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce87" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce88" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce89" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:vertical-align="middle"/>
|
||||
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="11pt" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce90" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:vertical-align="middle"/>
|
||||
<style:text-properties style:font-name="DejaVu Sans Condensed" fo:font-size="8pt" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce91" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:border-bottom="none" fo:background-color="#ffffcc" style:text-align-source="fix" style:repeat-content="false" fo:wrap-option="wrap" fo:border-left="0.06pt solid #ffffff" fo:border-right="0.06pt solid #ffffff" fo:border-top="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#1c1c1c" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="6pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce92" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties style:vertical-align="middle"/>
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
|
||||
</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="1cm" fo:margin-bottom="1cm" fo:margin-left="0.801cm" fo:margin-right="0.801cm" style:writing-mode="lr-tb"/>
|
||||
<style:header-style>
|
||||
<style:header-footer-properties fo:min-height="0.75cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-bottom="0.25cm"/>
|
||||
</style:header-style>
|
||||
<style:footer-style>
|
||||
<style:header-footer-properties fo:min-height="0.75cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0.25cm"/>
|
||||
</style:footer-style>
|
||||
</style:page-layout>
|
||||
<style:page-layout style:name="pm2">
|
||||
<style:page-layout-properties style:writing-mode="lr-tb"/>
|
||||
<style:header-style>
|
||||
<style:header-footer-properties fo:min-height="0.75cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-bottom="0.25cm" fo:border="2.49pt solid #000000" fo:padding="0.018cm" fo:background-color="#c0c0c0">
|
||||
<style:background-image/>
|
||||
</style:header-footer-properties>
|
||||
</style:header-style>
|
||||
<style:footer-style>
|
||||
<style:header-footer-properties fo:min-height="0.75cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0.25cm" fo:border="2.49pt solid #000000" fo:padding="0.018cm" fo:background-color="#c0c0c0">
|
||||
<style:background-image/>
|
||||
</style:header-footer-properties>
|
||||
</style:footer-style>
|
||||
</style:page-layout>
|
||||
</office:automatic-styles>
|
||||
<office:master-styles>
|
||||
<style:master-page style:name="Default" style:page-layout-name="pm1">
|
||||
<style:header>
|
||||
<text:p><text:sheet-name>???</text:sheet-name></text:p>
|
||||
</style:header>
|
||||
<style:header-left style:display="false"/>
|
||||
<style:footer>
|
||||
<text:p>Página <text:page-number>1</text:page-number></text:p>
|
||||
</style:footer>
|
||||
<style:footer-left style:display="false"/>
|
||||
</style:master-page>
|
||||
<style:master-page style:name="Report" style:page-layout-name="pm2">
|
||||
<style:header>
|
||||
<style:region-left>
|
||||
<text:p><text:sheet-name>???</text:sheet-name><text:s/>(<text:title>???</text:title>)</text:p>
|
||||
</style:region-left>
|
||||
<style:region-right>
|
||||
<text:p><text:date style:data-style-name="N2" text:date-value="2020-09-24">00/00/0000</text:date>, <text:time style:data-style-name="N2" text:time-value="21:11:14.465008960">00:00:00</text:time></text:p>
|
||||
</style:region-right>
|
||||
</style:header>
|
||||
<style:header-left style:display="false"/>
|
||||
<style:footer>
|
||||
<text:p>Página <text:page-number>1</text:page-number><text:s/>/ <text:page-count>99</text:page-count></text:p>
|
||||
</style:footer>
|
||||
<style:footer-left style:display="false"/>
|
||||
</style:master-page>
|
||||
</office:master-styles>
|
||||
<office:body>
|
||||
<office:spreadsheet>
|
||||
<table:table table:name="Hoja1" table:style-name="ta1">
|
||||
<office:forms form:automatic-focus="false" form:apply-design-mode="false">
|
||||
<form:form form:name="Formulario" form:apply-filter="true" form:command-type="table" form:control-implementation="ooo:com.sun.star.form.component.Form" office:target-frame="">
|
||||
<form:properties>
|
||||
<form:property form:property-name="PropertyChangeNotificationEnabled" office:value-type="boolean" office:boolean-value="true"/>
|
||||
<form:property form:property-name="TargetURL" office:value-type="string" office:string-value=""/>
|
||||
</form:properties>
|
||||
</form:form>
|
||||
</office:forms>
|
||||
<table:table-column table:style-name="co1" table:default-cell-style-name="ce72"/>
|
||||
<table:table-column table:style-name="co2" table:default-cell-style-name="ce72"/>
|
||||
<table:table-column table:style-name="co3" table:default-cell-style-name="ce72"/>
|
||||
<table:table-column table:style-name="co3" table:number-columns-repeated="3" table:default-cell-style-name="ce89"/>
|
||||
<table:table-column table:style-name="co4" table:number-columns-repeated="58" table:default-cell-style-name="ce89"/>
|
||||
<table:table-row table:style-name="ro1">
|
||||
<table:table-cell table:style-name="ce61" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://company.rec_name" xlink:type="simple">company.rec_name</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Default"/>
|
||||
<table:table-cell table:style-name="ce78"/>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="3"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro2">
|
||||
<table:table-cell table:style-name="ce62" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>BALANCE DE PRUEBA</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce63"/>
|
||||
<table:table-cell table:style-name="ce79" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>PERIODO INICIAL</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce79"/>
|
||||
<table:table-cell table:style-name="ce79" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>PERIODO FINAL</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce79"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro3">
|
||||
<table:table-cell table:style-name="ce63" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce80" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://start_period.name" xlink:type="simple">start_period.name</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce80"/>
|
||||
<table:table-cell table:style-name="ce80" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://end_period.name" xlink:type="simple">end_period.name</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce80"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro3">
|
||||
<table:table-cell table:style-name="ce65"/>
|
||||
<table:table-cell table:style-name="ce73"/>
|
||||
<table:table-cell table:style-name="ce81"/>
|
||||
<table:table-cell table:style-name="ce85"/>
|
||||
<table:table-cell table:style-name="ce90" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro4">
|
||||
<table:table-cell table:style-name="ce67" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>COD.</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce74" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>CUENTA</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce82" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>SALDO INICIAL</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce86" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>DEBITO</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce86" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>CREDITO</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce91" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>SALDO FINAL</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Default"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro5">
|
||||
<table:table-cell table:style-name="ce68" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://for%20each=%22account%20in%20accounts%22" xlink:type="simple">for each="account in accounts"</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce75" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce87" table:number-columns-repeated="3"/>
|
||||
<table:table-cell table:style-name="Default"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro5">
|
||||
<table:table-cell table:style-name="ce69" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://account['code']" xlink:type="simple">account['code']</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce68" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://account['name']" xlink:type="simple">account['name']</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce83" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://sum(account['start_balance'])" xlink:type="simple">sum(account['start_balance'])</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce83" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://sum(account['debit'])" xlink:type="simple">sum(account['debit'])</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce83" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://sum(account['credit'])" xlink:type="simple">sum(account['credit'])</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce83" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://sum(account['end_balance'])" xlink:type="simple">sum(account['end_balance'])</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Default"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro6">
|
||||
<table:table-cell table:style-name="ce70" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio:///for" xlink:type="simple">/for</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce76" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce88" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce92"/>
|
||||
<table:table-cell table:style-name="Default"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro6">
|
||||
<table:table-cell table:style-name="ce71" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1">
|
||||
<text:p>TOTAL</text:p>
|
||||
</table:table-cell>
|
||||
<table:covered-table-cell table:style-name="ce77"/>
|
||||
<table:table-cell table:style-name="ce84" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://sumto(accounts,%20'start_balance')" xlink:type="simple">sumto(accounts, 'start_balance')</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce84" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://sumto(accounts,%20'debit')" xlink:type="simple">sumto(accounts, 'debit')</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce84" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://sumto(accounts,%20'credit')" xlink:type="simple">sumto(accounts, 'credit')</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce84" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://sumto(accounts,%20'end_balance')" xlink:type="simple">sumto(accounts, 'end_balance')</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Default"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro7">
|
||||
<table:table-cell table:number-columns-repeated="64"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro7">
|
||||
<table:table-cell table:style-name="Default"/>
|
||||
<table:table-cell table:number-columns-repeated="63"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro7" table:number-rows-repeated="1048562">
|
||||
<table:table-cell table:number-columns-repeated="64"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro8" table:number-rows-repeated="2">
|
||||
<table:table-cell table:number-columns-repeated="64"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro8">
|
||||
<table:table-cell table:number-columns-repeated="64"/>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<table:named-expressions/>
|
||||
</office:spreadsheet>
|
||||
</office:body>
|
||||
</office:document>
|
||||
814
modules/account_co_reports/report/trial_balance_detailed.fods
Normal file
814
modules/account_co_reports/report/trial_balance_detailed.fods
Normal file
@@ -0,0 +1,814 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<office:document xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" 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.spreadsheet">
|
||||
<office:meta><meta:creation-date>2015-03-21T09:18:00.143995121</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/7.3.7.2$Linux_X86_64 LibreOffice_project/30$Build-2</meta:generator><meta:document-statistic meta:table-count="1" meta:cell-count="37" meta:object-count="0"/></office:meta>
|
||||
<office:settings>
|
||||
<config:config-item-set config:name="ooo:view-settings">
|
||||
<config:config-item config:name="VisibleAreaTop" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="VisibleAreaLeft" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="VisibleAreaWidth" config:type="int">18417</config:config-item>
|
||||
<config:config-item config:name="VisibleAreaHeight" config:type="int">8008</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">view1</config:config-item>
|
||||
<config:config-item-map-named config:name="Tables">
|
||||
<config:config-item-map-entry config:name="Hoja1">
|
||||
<config:config-item config:name="CursorPositionX" config:type="int">1</config:config-item>
|
||||
<config:config-item config:name="CursorPositionY" config:type="int">10</config:config-item>
|
||||
<config:config-item config:name="ActiveSplitRange" config:type="short">2</config:config-item>
|
||||
<config:config-item config:name="PositionLeft" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="PositionRight" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="PositionTop" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="PositionBottom" config:type="int">0</config:config-item>
|
||||
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
|
||||
<config:config-item config:name="ZoomValue" config:type="int">180</config:config-item>
|
||||
<config:config-item config:name="PageViewZoomValue" config:type="int">140</config:config-item>
|
||||
<config:config-item config:name="ShowGrid" 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-named>
|
||||
<config:config-item config:name="ActiveTable" config:type="string">Hoja1</config:config-item>
|
||||
<config:config-item config:name="HorizontalScrollbarWidth" config:type="int">1845</config:config-item>
|
||||
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
|
||||
<config:config-item config:name="ZoomValue" config:type="int">180</config:config-item>
|
||||
<config:config-item config:name="PageViewZoomValue" config:type="int">140</config:config-item>
|
||||
<config:config-item config:name="ShowPageBreakPreview" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="GridColor" config:type="int">12632256</config:config-item>
|
||||
<config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="HasColumnRowHeaders" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="HasSheetTabs" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="IsValueHighlightingEnabled" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="IsSnapToRaster" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="RasterIsVisible" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="RasterResolutionX" config:type="int">1000</config:config-item>
|
||||
<config:config-item config:name="RasterResolutionY" config:type="int">1000</config:config-item>
|
||||
<config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item>
|
||||
<config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item>
|
||||
<config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</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="AllowPrintJobCancel" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="ApplyUserData" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="AutoCalculate" 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="EmbedAsianScriptFonts" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="EmbedComplexScriptFonts" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="EmbedFonts" config:type="boolean">false</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-map-indexed config:name="ForbiddenCharacters">
|
||||
<config:config-item-map-entry>
|
||||
<config:config-item config:name="Language" config:type="string">en</config:config-item>
|
||||
<config:config-item config:name="Country" config:type="string">US</config:config-item>
|
||||
<config:config-item config:name="Variant" config:type="string"/>
|
||||
<config:config-item config:name="BeginLine" config:type="string"/>
|
||||
<config:config-item config:name="EndLine" config:type="string"/>
|
||||
</config:config-item-map-entry>
|
||||
<config:config-item-map-entry>
|
||||
<config:config-item config:name="Language" config:type="string">es</config:config-item>
|
||||
<config:config-item config:name="Country" config:type="string">CO</config:config-item>
|
||||
<config:config-item config:name="Variant" config:type="string"/>
|
||||
<config:config-item config:name="BeginLine" config:type="string"/>
|
||||
<config:config-item config:name="EndLine" config:type="string"/>
|
||||
</config:config-item-map-entry>
|
||||
</config:config-item-map-indexed>
|
||||
<config:config-item config:name="GridColor" config:type="int">12632256</config:config-item>
|
||||
<config:config-item config:name="HasColumnRowHeaders" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="HasSheetTabs" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="IsDocumentShared" 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="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="IsSnapToRaster" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="LinkUpdateMode" config:type="short">3</config:config-item>
|
||||
<config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="PrinterName" config:type="string">Generic Printer</config:config-item>
|
||||
<config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="PrinterSetup" config:type="base64Binary">mAH+/0dlbmVyaWMgUHJpbnRlcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAU0dFTlBSVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAMAuQAAAAAAAAAIAFZUAAAkbQAASm9iRGF0YSAxCnByaW50ZXI9R2VuZXJpYyBQcmludGVyCm9yaWVudGF0aW9uPVBvcnRyYWl0CmNvcGllcz0xCmNvbGxhdGU9ZmFsc2UKbWFyZ2luYWRqdXN0bWVudD0wLDAsMCwwCmNvbG9yZGVwdGg9MjQKcHNsZXZlbD0wCnBkZmRldmljZT0xCmNvbG9yZGV2aWNlPTAKUFBEQ29udGV4dERhdGEKUGFnZVNpemU6TGV0dGVyAAASAENPTVBBVF9EVVBMRVhfTU9ERQ8ARHVwbGV4TW9kZTo6T2Zm</config:config-item>
|
||||
<config:config-item config:name="RasterIsVisible" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="RasterResolutionX" config:type="int">1000</config:config-item>
|
||||
<config:config-item config:name="RasterResolutionY" config:type="int">1000</config:config-item>
|
||||
<config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item>
|
||||
<config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item>
|
||||
<config:config-item config:name="SaveThumbnail" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="SyntaxStringRef" config:type="short">0</config:config-item>
|
||||
<config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
|
||||
<config:config-item-map-named config:name="ScriptConfiguration">
|
||||
<config:config-item-map-entry config:name="Hoja1">
|
||||
<config:config-item config:name="CodeName" config:type="string">Hoja1</config:config-item>
|
||||
</config:config-item-map-entry>
|
||||
</config:config-item-map-named>
|
||||
</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">
|
||||
<ooo:library-embedded ooo:name="Standard"/>
|
||||
</ooo:libraries>
|
||||
</office:script>
|
||||
</office:scripts>
|
||||
<office:font-face-decls>
|
||||
<style:font-face style:name="Arial" svg:font-family="Arial" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="DejaVu Sans" svg:font-family="'DejaVu Sans'" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="DejaVu Sans Condensed" svg:font-family="'DejaVu Sans Condensed'" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="DejaVu Sans Light" svg:font-family="'DejaVu Sans Light'" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="DejaVu Sans1" svg:font-family="'DejaVu Sans'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="Droid Sans Fallback" svg:font-family="'Droid Sans Fallback'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="Liberation Sans" svg:font-family="'Liberation Sans'" style:font-adornments="Normal" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="Liberation Sans1" svg:font-family="'Liberation Sans'" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
<style:font-face style:name="Lohit Hindi" svg:font-family="'Lohit Hindi'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||
</office:font-face-decls>
|
||||
<office:styles>
|
||||
<style:default-style style:family="table-cell">
|
||||
<style:paragraph-properties style:tab-stop-distance="1.25cm"/>
|
||||
<style:text-properties style:font-name="Arial" fo:font-size="10pt" fo:language="es" fo:country="CO" style:font-name-asian="DejaVu Sans1" style:font-size-asian="10pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="DejaVu Sans1" style:font-size-complex="10pt" style:language-complex="hi" style:country-complex="IN"/>
|
||||
</style:default-style>
|
||||
<number:number-style style:name="N0">
|
||||
<number:number number:min-integer-digits="1"/>
|
||||
</number:number-style>
|
||||
<number:currency-style style:name="N104P0" style:volatile="true">
|
||||
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
</number:currency-style>
|
||||
<number:currency-style style:name="N104">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
<number:text>(</number:text>
|
||||
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text>)</number:text>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N104P0"/>
|
||||
</number:currency-style>
|
||||
<number:currency-style style:name="N115P0" style:volatile="true">
|
||||
<number:currency-symbol number:language="en" number:country="US">$</number:currency-symbol>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
</number:currency-style>
|
||||
<number:currency-style style:name="N115">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
<number:text>-</number:text>
|
||||
<number:currency-symbol number:language="en" number:country="US">$</number:currency-symbol>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N115P0"/>
|
||||
</number:currency-style>
|
||||
<number:number-style style:name="N113P0" style:volatile="true">
|
||||
<number:number number:decimal-places="0" number:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
|
||||
</number:number-style>
|
||||
<number:number-style style:name="N113">
|
||||
<number:text>(</number:text>
|
||||
<number:number number:decimal-places="0" number:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text>)</number:text>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N113P0"/>
|
||||
</number:number-style>
|
||||
<number:number-style style:name="N112">
|
||||
<number:text>(</number:text>
|
||||
<number:number number:decimal-places="0" number:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text>)</number:text>
|
||||
</number:number-style>
|
||||
<number:number-style style:name="N111P0" style:volatile="true">
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
</number:number-style>
|
||||
<number:number-style style:name="N111">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
<number:text>-</number:text>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N111P0"/>
|
||||
</number:number-style>
|
||||
<number:number-style style:name="N110P0" style:volatile="true">
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1"/>
|
||||
</number:number-style>
|
||||
<number:number-style style:name="N110">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
<number:text>-</number:text>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1"/>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N110P0"/>
|
||||
</number:number-style>
|
||||
<number:currency-style style:name="N109P0" style:volatile="true">
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text> </number:text>
|
||||
<number:currency-symbol number:language="fr" number:country="BE">€</number:currency-symbol>
|
||||
</number:currency-style>
|
||||
<number:currency-style style:name="N109">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
<number:text>-</number:text>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text> </number:text>
|
||||
<number:currency-symbol number:language="fr" number:country="BE">€</number:currency-symbol>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N109P0"/>
|
||||
</number:currency-style>
|
||||
<number:currency-style style:name="N10108P0" style:volatile="true" number:language="sl" number:country="SI">
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text> </number:text>
|
||||
<number:currency-symbol number:language="sl" number:country="SI">€</number:currency-symbol>
|
||||
</number:currency-style>
|
||||
<number:currency-style style:name="N10108" number:language="sl" number:country="SI">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
<number:text>-</number:text>
|
||||
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||
<number:text> </number:text>
|
||||
<number:currency-symbol number:language="sl" number:country="SI">€</number:currency-symbol>
|
||||
<style:map style:condition="value()>=0" style:apply-style-name="N10108P0"/>
|
||||
</number:currency-style>
|
||||
<style:style style:name="Default" style:family="table-cell">
|
||||
<style:text-properties style:font-name-asian="Droid Sans Fallback" style:font-family-asian="'Droid Sans Fallback'" style:font-family-generic-asian="system" style:font-pitch-asian="variable" style:font-name-complex="Lohit Hindi" style:font-family-complex="'Lohit Hindi'" style:font-family-generic-complex="system" style:font-pitch-complex="variable"/>
|
||||
</style:style>
|
||||
<style:style style:name="Heading" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/>
|
||||
<style:paragraph-properties fo:text-align="center"/>
|
||||
<style:text-properties fo:font-size="16pt" fo:font-style="italic" fo:font-weight="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="Heading_20_1" style:display-name="Heading 1" style:family="table-cell" style:parent-style-name="Heading">
|
||||
<style:table-cell-properties style:rotation-angle="90"/>
|
||||
</style:style>
|
||||
<style:style style:name="Heading_20_2" style:display-name="Heading 2" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#000000" fo:font-size="12pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Text" style:family="table-cell" style:parent-style-name="Default"/>
|
||||
<style:style style:name="Note" style:family="table-cell" style:parent-style-name="Text">
|
||||
<style:table-cell-properties fo:background-color="#ffffcc" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" fo:border="0.74pt solid #808080"/>
|
||||
<style:text-properties fo:color="#333333" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Footnote" style:family="table-cell" style:parent-style-name="Text">
|
||||
<style:text-properties fo:color="#808080" fo:font-size="10pt" fo:font-style="italic" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Hyperlink" style:family="table-cell" style:parent-style-name="Text">
|
||||
<style:text-properties fo:color="#0000ee" fo:font-size="10pt" fo:font-style="normal" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="#0000ee" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Status" style:family="table-cell" style:parent-style-name="Default"/>
|
||||
<style:style style:name="Good" style:family="table-cell" style:parent-style-name="Status">
|
||||
<style:table-cell-properties fo:background-color="#ccffcc"/>
|
||||
<style:text-properties fo:color="#006600" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Neutral" style:family="table-cell" style:parent-style-name="Status">
|
||||
<style:table-cell-properties fo:background-color="#ffffcc"/>
|
||||
<style:text-properties fo:color="#996600" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Bad" style:family="table-cell" style:parent-style-name="Status">
|
||||
<style:table-cell-properties fo:background-color="#ffcccc"/>
|
||||
<style:text-properties fo:color="#cc0000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Warning" style:family="table-cell" style:parent-style-name="Status">
|
||||
<style:text-properties fo:color="#cc0000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Error" style:family="table-cell" style:parent-style-name="Status">
|
||||
<style:table-cell-properties fo:background-color="#cc0000"/>
|
||||
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="Accent" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#000000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="Accent_20_1" style:display-name="Accent 1" style:family="table-cell" style:parent-style-name="Accent">
|
||||
<style:table-cell-properties fo:background-color="#000000"/>
|
||||
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Accent_20_2" style:display-name="Accent 2" style:family="table-cell" style:parent-style-name="Accent">
|
||||
<style:table-cell-properties fo:background-color="#808080"/>
|
||||
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="Accent_20_3" style:display-name="Accent 3" style:family="table-cell" style:parent-style-name="Accent">
|
||||
<style:table-cell-properties fo:background-color="#dddddd"/>
|
||||
</style:style>
|
||||
<style:style style:name="Result" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:font-style="italic" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="Heading" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/>
|
||||
<style:paragraph-properties fo:text-align="center"/>
|
||||
<style:text-properties fo:font-size="16pt" fo:font-style="italic" fo:font-weight="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="Result2" style:family="table-cell" style:parent-style-name="Result" style:data-style-name="N104"/>
|
||||
<style:style style:name="Sin_20_nombre1" style:display-name="Sin nombre1" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#ff0000" style:font-name="Liberation Sans" fo:font-family="'Liberation Sans'" style:font-style-name="Normal" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||
</style:style>
|
||||
<style:style style:name="Sin_20_nombre2" style:display-name="Sin nombre2" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
</style:style>
|
||||
<style:style style:name="Sin_20_nombre3" style:display-name="Sin nombre3" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
</style:style>
|
||||
<style:style style:name="Sin_20_nombre4" style:display-name="Sin nombre4" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
</style:style>
|
||||
<style:style style:name="Sin_20_nombre5" style:display-name="Sin nombre5" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties fo:color="#ff0000"/>
|
||||
</style:style>
|
||||
</office:styles>
|
||||
<office:automatic-styles>
|
||||
<style:style style:name="co1" style:family="table-column">
|
||||
<style:table-column-properties fo:break-before="auto" style:column-width="2.041cm"/>
|
||||
</style:style>
|
||||
<style:style style:name="co2" style:family="table-column">
|
||||
<style:table-column-properties fo:break-before="auto" style:column-width="6.442cm"/>
|
||||
</style:style>
|
||||
<style:style style:name="co3" style:family="table-column">
|
||||
<style:table-column-properties fo:break-before="auto" style:column-width="2.484cm"/>
|
||||
</style:style>
|
||||
<style:style style:name="co4" style:family="table-column">
|
||||
<style:table-column-properties fo:break-before="auto" style:column-width="2.258cm"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro1" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.857cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro2" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.482cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro3" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.586cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro4" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.28cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro5" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.393cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro6" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.55cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro7" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.545cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro8" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.4cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro9" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.582cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
|
||||
</style:style>
|
||||
<style:style style:name="ro10" style:family="table-row">
|
||||
<style:table-row-properties style:row-height="0.487cm" fo:break-before="auto" style:use-optimal-row-height="true"/>
|
||||
</style:style>
|
||||
<style:style style:name="ta1" style:family="table" style:master-page-name="Default">
|
||||
<style:table-properties table:display="true" style:writing-mode="lr-tb"/>
|
||||
</style:style>
|
||||
<number:text-style style:name="N100">
|
||||
<number:text-content/>
|
||||
</number:text-style>
|
||||
<number:number-style style:name="N20003" number:language="es" number:country="CO">
|
||||
<number:number number:decimal-places="0" number:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
|
||||
</number:number-style>
|
||||
<number:number-style style:name="N30000" number:language="en" number:country="US">
|
||||
<number:number number:min-integer-digits="1"/>
|
||||
</number:number-style>
|
||||
<style:style style:name="ce83" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="0.06pt solid #ffffff" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans Light" fo:font-size="13pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="13pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="13pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="bold" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce2" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-size="11pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="11pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-size-complex="11pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="bold" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce3" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:font-weight="normal" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce4" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="value-type" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans Condensed" fo:font-size="7pt" fo:font-weight="bold" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce85" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N100">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#ffffff" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans Condensed" fo:font-size="8pt" fo:language="es" fo:country="CO" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="8pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="8pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce86" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N100">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:language="es" fo:country="CO" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce87" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" fo:background-color="#eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#111111" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:font-weight="normal" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce88" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:border-bottom="none" fo:background-color="#cfe7f5" style:text-align-source="fix" style:repeat-content="false" fo:wrap-option="wrap" fo:border-left="0.06pt solid #ffffff" fo:border-right="0.06pt solid #ffffff" fo:border-top="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#1c1c1c" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="6pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce89" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce90" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce91" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N100">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="6pt" fo:font-weight="bold" style:font-size-asian="6pt" style:font-weight-asian="bold" style:font-size-complex="6pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce92" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:vertical-align="middle"/>
|
||||
<style:text-properties style:font-name="DejaVu Sans"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce93" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N100">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce14" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-size="6pt" fo:language="en" fo:country="US" fo:font-style="italic" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="italic" style:font-weight-asian="normal" style:font-size-complex="6pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="italic" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce94" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="11pt" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce95" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:vertical-align="middle"/>
|
||||
<style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-size="8pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="8pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce17" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:wrap-option="wrap" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:font-weight="normal" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce18" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans Condensed" fo:font-size="7pt" fo:font-weight="bold" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce96" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#333333" style:font-name="DejaVu Sans Condensed" fo:font-size="8pt" fo:font-weight="bold" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-name-complex="Lohit Hindi" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce97" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#333333" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:font-weight="bold" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-weight-asian="bold" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce98" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" fo:background-color="#eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#111111" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:font-weight="bold" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-weight-asian="bold" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce99" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:border-bottom="none" fo:background-color="#cfe7f5" style:text-align-source="fix" style:repeat-content="false" fo:border-left="0.06pt solid #ffffff" fo:border-right="0.06pt solid #ffffff" fo:border-top="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#1c1c1c" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="6pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce100" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce101" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="6pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce102" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="6pt" fo:font-weight="normal" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce103" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="11pt" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce104" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:vertical-align="middle"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce28" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#666666" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="10pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="10pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="10pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce105" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:border-bottom="none" style:text-align-source="fix" style:repeat-content="false" fo:border-left="0.26pt solid #cfe7f5" fo:border-right="none" fo:border-top="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center"/>
|
||||
<style:text-properties fo:color="#666666" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="7pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce106" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:border-bottom="none" style:text-align-source="fix" style:repeat-content="false" fo:border-left="0.26pt solid #cfe7f5" fo:border-right="none" fo:border-top="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center"/>
|
||||
<style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="7pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="7pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce107" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#333333" style:font-name="DejaVu Sans Condensed" fo:font-size="8pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="8pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce108" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#333333" style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce109" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:border-bottom="none" fo:background-color="#ff9999" style:text-align-source="fix" style:repeat-content="false" fo:border-left="0.06pt solid #ffffff" fo:border-right="0.06pt solid #ffffff" fo:border-top="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#ffffff" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="6pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce110" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce111" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:font-weight="normal" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce112" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#ffffff" style:font-name="DejaVu Sans Condensed" fo:font-size="8pt" fo:font-weight="bold" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-name-complex="Lohit Hindi" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce113" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30000">
|
||||
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#ffffff" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:font-weight="bold" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-weight-asian="bold" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce114" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" fo:background-color="#eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#111111" style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce115" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:border-bottom="none" fo:background-color="#666666" style:text-align-source="fix" style:repeat-content="false" fo:border-left="0.06pt solid #ffffff" fo:border-right="0.06pt solid #ffffff" fo:border-top="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#ffffff" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="6pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce116" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce117" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce118" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:vertical-align="middle"/>
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="11pt" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce119" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:vertical-align="middle"/>
|
||||
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="11pt" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce120" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:vertical-align="middle"/>
|
||||
<style:text-properties style:font-name="DejaVu Sans Condensed" fo:font-size="8pt" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce121" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties style:vertical-align="middle"/>
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce122" style:family="table-cell" style:parent-style-name="Default">
|
||||
<style:table-cell-properties fo:border-bottom="none" fo:background-color="#ff9999" style:text-align-source="fix" style:repeat-content="false" fo:wrap-option="wrap" fo:border-left="0.06pt solid #ffffff" fo:border-right="0.06pt solid #ffffff" fo:border-top="none" style:vertical-align="middle"/>
|
||||
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
|
||||
<style:text-properties fo:color="#ffffff" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans" fo:font-size="6pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="6pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
|
||||
</style:style>
|
||||
<style:style style:name="ce123" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20003">
|
||||
<style:table-cell-properties style:vertical-align="middle"/>
|
||||
<style:text-properties style:font-name="DejaVu Sans" fo:font-size="6pt" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
|
||||
</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="1cm" fo:margin-bottom="1cm" fo:margin-left="0.801cm" fo:margin-right="0.801cm" style:writing-mode="lr-tb"/>
|
||||
<style:header-style>
|
||||
<style:header-footer-properties fo:min-height="0.75cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-bottom="0.25cm"/>
|
||||
</style:header-style>
|
||||
<style:footer-style>
|
||||
<style:header-footer-properties fo:min-height="0.75cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0.25cm"/>
|
||||
</style:footer-style>
|
||||
</style:page-layout>
|
||||
<style:style style:name="T1" style:family="text">
|
||||
<style:text-properties fo:font-weight="normal" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
|
||||
</style:style>
|
||||
<style:style style:name="T2" style:family="text">
|
||||
<style:text-properties style:font-name-asian="Droid Sans Fallback" style:font-name-complex="Lohit Hindi"/>
|
||||
</style:style>
|
||||
</office:automatic-styles>
|
||||
<office:master-styles>
|
||||
<style:master-page style:name="Default" style:page-layout-name="pm1">
|
||||
<style:header>
|
||||
<text:p><text:sheet-name>???</text:sheet-name></text:p>
|
||||
</style:header>
|
||||
<style:header-left style:display="false"/>
|
||||
<style:header-first style:display="false"/>
|
||||
<style:footer>
|
||||
<text:p>Página <text:page-number>1</text:page-number></text:p>
|
||||
</style:footer>
|
||||
<style:footer-left style:display="false"/>
|
||||
<style:footer-first style:display="false"/>
|
||||
</style:master-page>
|
||||
</office:master-styles>
|
||||
<office:body>
|
||||
<office:spreadsheet>
|
||||
<table:table table:name="Hoja1" table:style-name="ta1">
|
||||
<office:forms form:automatic-focus="false" form:apply-design-mode="false">
|
||||
<form:form form:name="Formulario" form:apply-filter="true" form:command-type="table" form:control-implementation="ooo:com.sun.star.form.component.Form" office:target-frame="">
|
||||
<form:properties>
|
||||
<form:property form:property-name="PropertyChangeNotificationEnabled" office:value-type="boolean" office:boolean-value="true"/>
|
||||
<form:property form:property-name="TargetURL" office:value-type="string" office:string-value=""/>
|
||||
</form:properties>
|
||||
</form:form>
|
||||
</office:forms>
|
||||
<table:table-column table:style-name="co1" table:default-cell-style-name="ce94"/>
|
||||
<table:table-column table:style-name="co2" table:default-cell-style-name="ce94"/>
|
||||
<table:table-column table:style-name="co3" table:default-cell-style-name="ce94"/>
|
||||
<table:table-column table:style-name="co3" table:number-columns-repeated="3" table:default-cell-style-name="ce119"/>
|
||||
<table:table-column table:style-name="co4" table:number-columns-repeated="58" table:default-cell-style-name="ce119"/>
|
||||
<table:table-row table:style-name="ro1">
|
||||
<table:table-cell table:style-name="ce83" office:value-type="string" calcext:value-type="string"><text:p>BALANCE DE PRUEBA <text:span text:style-name="T1">DETALLADO</text:span></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Default"/>
|
||||
<table:table-cell table:style-name="ce104"/>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="3"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro1">
|
||||
<table:table-cell table:style-name="ce2" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"><text:p><text:a xlink:href="relatorio://company.rec_name" xlink:type="simple">company.rec_name</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:covered-table-cell table:style-name="Default"/>
|
||||
<table:table-cell table:style-name="ce28" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"><text:p>NIT <text:a xlink:href="relatorio://company.party.identifiers%20and%20company.party.identifiers[0].code" xlink:type="simple">company.party.identifiers and company.party.identifiers[0].code</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:covered-table-cell table:style-name="Default"/>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro2">
|
||||
<table:table-cell table:style-name="ce3" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>Teléfono:</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce17" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>Dirección: </text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce105" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>PERIODO INICIAL</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce105" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>PERIODO FINAL</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce105" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>AÑO FISCAL</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce105"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro3">
|
||||
<table:table-cell table:style-name="ce4" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://company.party.get_contact_mechanism('phone')" xlink:type="simple">company.party.get_contact_mechanism('phone')</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce18" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://company.party.address_get().full_address" xlink:type="simple">company.party.address_get().full_address</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce106" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://start_period" xlink:type="simple">start_period</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce106" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://end_period" xlink:type="simple">end_period</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce106" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://fiscalyear.name" xlink:type="simple">fiscalyear.name</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce106"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro4">
|
||||
<table:table-cell table:style-name="ce85"/>
|
||||
<table:table-cell table:style-name="ce96"/>
|
||||
<table:table-cell table:style-name="ce107"/>
|
||||
<table:table-cell table:style-name="ce112"/>
|
||||
<table:table-cell table:style-name="ce120" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro5">
|
||||
<table:table-cell table:style-name="ce86" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://for%20each=%22account,%20lines,%20total%20in%20accounts%22" xlink:type="simple">for each="account, lines, total in accounts"</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce97"/>
|
||||
<table:table-cell table:style-name="ce108"/>
|
||||
<table:table-cell table:style-name="ce113"/>
|
||||
<table:table-cell table:style-name="ce121" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:number-columns-repeated="58"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro6">
|
||||
<table:table-cell table:style-name="ce87" office:value-type="string" calcext:value-type="string"><text:p><text:span text:style-name="T2"><text:a xlink:href="relatorio://account.code%20or%20''" xlink:type="simple">account.code or ''</text:a></text:span><text:span text:style-name="T2"> </text:span></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce98" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://account.name%20or%20''" xlink:type="simple">account.name or ''</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce98"/>
|
||||
<table:table-cell table:style-name="ce114" table:number-columns-repeated="3"/>
|
||||
<table:table-cell table:style-name="Default"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro7">
|
||||
<table:table-cell table:style-name="ce88" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>ID</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce99" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>TERCERO</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce109" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>SALDO INICIAL</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce115" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>DEBITO</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce115" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>CREDITO</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce122" office:value-type="string" calcext:value-type="string">
|
||||
<text:p>SALDO FINAL</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Default"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro8">
|
||||
<table:table-cell table:style-name="ce89" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://for%20each=%22line%20in%20lines.values()%22" xlink:type="simple">for each="line in lines.values()"</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce100" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce116" table:number-columns-repeated="3"/>
|
||||
<table:table-cell table:style-name="Default"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro8">
|
||||
<table:table-cell table:style-name="ce90" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://line['id_number']" xlink:type="simple">line['id_number']</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce89" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://line['party']" xlink:type="simple">line['party']</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce110" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://line['start_balance']" xlink:type="simple">line['start_balance']</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce110" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://line['debit']" xlink:type="simple">line['debit']</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce110" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://line['credit']" xlink:type="simple">line['credit']</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce110" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://line['end_balance']" xlink:type="simple">line['end_balance']</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Default"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro6">
|
||||
<table:table-cell table:style-name="ce86" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio:///for" xlink:type="simple">/for</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce101" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce117" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce123"/>
|
||||
<table:table-cell table:style-name="Default"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro6">
|
||||
<table:table-cell table:style-name="ce91" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1">
|
||||
<text:p>TOTAL</text:p>
|
||||
</table:table-cell>
|
||||
<table:covered-table-cell table:style-name="ce102"/>
|
||||
<table:table-cell table:style-name="ce111" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://sum(total['start_balance'])" xlink:type="simple">sum(total['start_balance'])</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce111" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://sum(total['debits'])" xlink:type="simple">sum(total['debits'])</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce111" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://sum(total['credits'])" xlink:type="simple">sum(total['credits'])</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce111" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://sum(total['end_balance'])" xlink:type="simple">sum(total['end_balance'])</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Default"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro9">
|
||||
<table:table-cell table:style-name="ce92" table:number-columns-repeated="4"/>
|
||||
<table:table-cell table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="Default"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro10">
|
||||
<table:table-cell table:style-name="ce93" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio:///for" xlink:type="simple">/for</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="ce103" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:style-name="ce118"/>
|
||||
<table:table-cell/>
|
||||
<table:table-cell table:style-name="Default" table:number-columns-repeated="2"/>
|
||||
<table:table-cell table:number-columns-repeated="57"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro10">
|
||||
<table:table-cell table:style-name="ce14" office:value-type="string" calcext:value-type="string"><text:p>Impresión: <text:a xlink:href="relatorio://format_date(datetime.date.today(),%20company.party.lang)" xlink:type="simple">format_date(datetime.date.today(), company.party.lang)</text:a></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:number-columns-repeated="63"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro10" table:number-rows-repeated="3">
|
||||
<table:table-cell table:number-columns-repeated="64"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro10">
|
||||
<table:table-cell table:style-name="ce95"/>
|
||||
<table:table-cell table:number-columns-repeated="63"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro10" table:number-rows-repeated="1048556">
|
||||
<table:table-cell table:number-columns-repeated="64"/>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="ro10">
|
||||
<table:table-cell table:number-columns-repeated="64"/>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<table:named-expressions/>
|
||||
</office:spreadsheet>
|
||||
</office:body>
|
||||
</office:document>
|
||||
119
modules/account_co_reports/setup.py
Normal file
119
modules/account_co_reports/setup.py
Normal file
@@ -0,0 +1,119 @@
|
||||
#!/usr/bin/env python3
|
||||
import io
|
||||
import os
|
||||
import re
|
||||
from configparser import ConfigParser
|
||||
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
MODULE2PREFIX = {}
|
||||
|
||||
|
||||
def read(fname):
|
||||
content = io.open(
|
||||
os.path.join(os.path.dirname(__file__), fname),
|
||||
'r', encoding='utf-8').read()
|
||||
content = re.sub(
|
||||
r'(?m)^\.\. toctree::\r?\n((^$|^\s.*$)\r?\n)*', '', content)
|
||||
return content
|
||||
|
||||
|
||||
def get_require_version(name):
|
||||
require = '%s >= %s.%s, < %s.%s'
|
||||
require %= (name, major_version, minor_version,
|
||||
major_version, minor_version + 1)
|
||||
return require
|
||||
|
||||
|
||||
config = ConfigParser()
|
||||
config.read_file(open(os.path.join(os.path.dirname(__file__), 'tryton.cfg')))
|
||||
info = dict(config.items('tryton'))
|
||||
for key in ('depends', 'extras_depend', 'xml'):
|
||||
if key in info:
|
||||
info[key] = info[key].strip().splitlines()
|
||||
version = info.get('version', '0.0.1')
|
||||
major_version, minor_version, _ = version.split('.', 2)
|
||||
major_version = int(major_version)
|
||||
minor_version = int(minor_version)
|
||||
name = 'trytondo_account_co_reports'
|
||||
|
||||
requires = []
|
||||
for dep in info.get('depends', []):
|
||||
if not re.match(r'(ir|res)(\W|$)', dep):
|
||||
prefix = MODULE2PREFIX.get(dep, 'trytond')
|
||||
requires.append(get_require_version('%s_%s' % (prefix, dep)))
|
||||
requires.append(get_require_version('trytond'))
|
||||
|
||||
tests_require = [get_require_version('proteus')]
|
||||
|
||||
setup(name=name,
|
||||
version=version,
|
||||
description='Account Colombia Reports',
|
||||
long_description=read('README.rst'),
|
||||
author='OneCluster',
|
||||
author_email='info@onecluster.org',
|
||||
url='https://gitea.onecluster.org/OneTeam/trytondo-account_co_reports',
|
||||
keywords='Account, Colombia, Reports',
|
||||
package_dir={'trytond.modules.account_co_reports': '.'},
|
||||
packages=(
|
||||
['trytond.modules.account_co_reports']
|
||||
+ ['trytond.modules.account_co_reports.%s' % p
|
||||
for p in find_packages()]
|
||||
),
|
||||
package_data={
|
||||
'trytond.modules.account_co_reports': (info.get('xml', [])
|
||||
+ ['tryton.cfg', 'view/*.xml', 'locale/*.po', '*.fodt',
|
||||
'icons/*.svg', 'tests/*.rst', 'tests/*.json']),
|
||||
},
|
||||
classifiers=[
|
||||
'Development Status :: 5 - Production/Stable',
|
||||
'Environment :: Plugins',
|
||||
'Framework :: Tryton',
|
||||
'Intended Audience :: Developers',
|
||||
'Intended Audience :: Financial and Insurance Industry',
|
||||
'Intended Audience :: Legal Industry',
|
||||
'License :: OSI Approved :: '
|
||||
'GNU General Public License v3 or later (GPLv3+)',
|
||||
'Natural Language :: Bulgarian',
|
||||
'Natural Language :: Catalan',
|
||||
'Natural Language :: Chinese (Simplified)',
|
||||
'Natural Language :: Czech',
|
||||
'Natural Language :: Dutch',
|
||||
'Natural Language :: English',
|
||||
'Natural Language :: Finnish',
|
||||
'Natural Language :: French',
|
||||
'Natural Language :: German',
|
||||
'Natural Language :: Hungarian',
|
||||
'Natural Language :: Indonesian',
|
||||
'Natural Language :: Italian',
|
||||
'Natural Language :: Persian',
|
||||
'Natural Language :: Polish',
|
||||
'Natural Language :: Portuguese (Brazilian)',
|
||||
'Natural Language :: Romanian',
|
||||
'Natural Language :: Russian',
|
||||
'Natural Language :: Slovenian',
|
||||
'Natural Language :: Spanish',
|
||||
'Natural Language :: Turkish',
|
||||
'Natural Language :: Ukrainian',
|
||||
'Operating System :: OS Independent',
|
||||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 3.8',
|
||||
'Programming Language :: Python :: 3.9',
|
||||
'Programming Language :: Python :: 3.10',
|
||||
'Programming Language :: Python :: 3.11',
|
||||
'Programming Language :: Python :: 3.12',
|
||||
'Programming Language :: Python :: Implementation :: CPython',
|
||||
'Topic :: Office/Business',
|
||||
],
|
||||
license='GPL-3',
|
||||
python_requires='>=3.8',
|
||||
# install_requires=requires,
|
||||
extras_require={
|
||||
'test': tests_require,
|
||||
},
|
||||
zip_safe=False,
|
||||
entry_points="""
|
||||
[trytond.modules]
|
||||
account_co_reports = trytond.modules.account_co_reports
|
||||
""", # noqa: E501
|
||||
)
|
||||
6
modules/account_co_reports/tests/__init__.py
Normal file
6
modules/account_co_reports/tests/__init__.py
Normal file
@@ -0,0 +1,6 @@
|
||||
try:
|
||||
from trytond.modules.account_co_reports.tests.test_account_co_reports import suite # noqa: E501
|
||||
except ImportError:
|
||||
from .test_account_co_reports import suite
|
||||
|
||||
__all__ = ['suite']
|
||||
17
modules/account_co_reports/tests/test_account_col_reports.py
Normal file
17
modules/account_co_reports/tests/test_account_col_reports.py
Normal file
@@ -0,0 +1,17 @@
|
||||
import unittest
|
||||
|
||||
|
||||
from trytond.tests.test_tryton import ModuleTestCase
|
||||
from trytond.tests.test_tryton import suite as test_suite
|
||||
|
||||
|
||||
class AccountCoReportsTestCase(ModuleTestCase):
|
||||
'Test Account Co Reports module'
|
||||
module = 'account_co_reports'
|
||||
|
||||
|
||||
def suite():
|
||||
suite = test_suite()
|
||||
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
|
||||
AccountCoReportsTestCase))
|
||||
return suite
|
||||
15
modules/account_co_reports/tox.ini
Normal file
15
modules/account_co_reports/tox.ini
Normal file
@@ -0,0 +1,15 @@
|
||||
[tox]
|
||||
envlist = {py35,py36,py37,py38}-{sqlite,postgresql},pypy3-{sqlite,postgresql}
|
||||
|
||||
[testenv]
|
||||
commands = {envpython} setup.py test
|
||||
deps =
|
||||
{py35,py36,py37,py38}-postgresql: psycopg2 >= 2.5
|
||||
pypy3-postgresql: psycopg2cffi >= 2.5
|
||||
{py35,py36}-sqlite: sqlitebck
|
||||
setenv =
|
||||
sqlite: TRYTOND_DATABASE_URI={env:SQLITE_URI:sqlite://}
|
||||
postgresql: TRYTOND_DATABASE_URI={env:POSTGRESQL_URI:postgresql://}
|
||||
sqlite: DB_NAME={env:SQLITE_NAME::memory:}
|
||||
postgresql: DB_NAME={env:POSTGRESQL_NAME:test}
|
||||
install_command = pip install --pre --find-links https://trydevpi.tryton.org/?mirror=bitbucket {opts} {packages}
|
||||
280
modules/account_co_reports/trial_balance.py
Executable file
280
modules/account_co_reports/trial_balance.py
Executable file
@@ -0,0 +1,280 @@
|
||||
# The COPYRIGHT file at the top level of this repository contains the full
|
||||
# copyright notices and license terms.
|
||||
from trytond.model import ModelView, fields
|
||||
from trytond.wizard import Wizard, StateView, Button, StateReport
|
||||
from trytond.report import Report
|
||||
from trytond.pool import Pool, PoolMeta
|
||||
from trytond.transaction import Transaction
|
||||
from trytond.pyson import Eval
|
||||
from decimal import Decimal
|
||||
import operator
|
||||
from itertools import groupby
|
||||
|
||||
|
||||
class PrintTrialBalanceStart(ModelView):
|
||||
'Print Trial Balance'
|
||||
__name__ = 'account.print_trial_balance.start'
|
||||
fiscalyear = fields.Many2One('account.fiscalyear', 'Fiscal Year',
|
||||
required=True)
|
||||
start_period = fields.Many2One('account.period', 'Start Period',
|
||||
domain=[
|
||||
('fiscalyear', '=', Eval('fiscalyear')),
|
||||
('start_date', '<=', (Eval('end_period'), 'start_date'))
|
||||
],
|
||||
depends=['end_period', 'fiscalyear'])
|
||||
end_period = fields.Many2One('account.period', 'End Period',
|
||||
domain=[
|
||||
('fiscalyear', '=', Eval('fiscalyear')),
|
||||
('start_date', '>=', (Eval('start_period'), 'start_date'))
|
||||
],
|
||||
depends=['start_period', 'fiscalyear'])
|
||||
company = fields.Many2One('company.company', 'Company', required=True)
|
||||
posted = fields.Boolean('Posted Move', help='Show only posted move')
|
||||
empty_account = fields.Boolean('Empty Account',
|
||||
help='With account without move')
|
||||
detailed = fields.Boolean('Detailed',
|
||||
help='Include the accounts of kind view')
|
||||
accounts_with_balance = fields.Boolean('Accounts with Balance',
|
||||
help='Show accounts with balances in previous periods')
|
||||
|
||||
@staticmethod
|
||||
def default_fiscalyear():
|
||||
FiscalYear = Pool().get('account.fiscalyear')
|
||||
return FiscalYear.find(
|
||||
Transaction().context.get('company'), exception=False)
|
||||
|
||||
@staticmethod
|
||||
def default_company():
|
||||
return Transaction().context.get('company')
|
||||
|
||||
@staticmethod
|
||||
def default_posted():
|
||||
return False
|
||||
|
||||
@staticmethod
|
||||
def default_empty_account():
|
||||
return False
|
||||
|
||||
@fields.depends('fiscalyear')
|
||||
def on_change_fiscalyear(self):
|
||||
self.start_period = None
|
||||
self.end_period = None
|
||||
|
||||
|
||||
class PrintTrialBalance(Wizard):
|
||||
'Print Trial Balance'
|
||||
__name__ = 'account.print_trial_balance'
|
||||
start = StateView('account.print_trial_balance.start',
|
||||
'account_co_reports.print_trial_balance_start_view_form', [
|
||||
Button('Cancel', 'end', 'tryton-cancel'),
|
||||
Button('Print', 'print_', 'tryton-print', default=True),
|
||||
])
|
||||
print_ = StateReport('account_co_reports.trial_balance_classic')
|
||||
|
||||
def do_print_(self, action):
|
||||
if self.start.start_period:
|
||||
start_period = self.start.start_period.id
|
||||
else:
|
||||
start_period = None
|
||||
if self.start.end_period:
|
||||
end_period = self.start.end_period.id
|
||||
else:
|
||||
end_period = None
|
||||
data = {
|
||||
'company': self.start.company.id,
|
||||
'fiscalyear': self.start.fiscalyear.id,
|
||||
'start_period': start_period,
|
||||
'end_period': end_period,
|
||||
'posted': self.start.posted,
|
||||
'empty_account': self.start.empty_account,
|
||||
'accounts_with_balance': self.start.accounts_with_balance,
|
||||
'detailed': self.start.detailed,
|
||||
}
|
||||
return action, data
|
||||
|
||||
def transition_print_(self):
|
||||
return 'end'
|
||||
|
||||
|
||||
class TrialBalanceClassic(Report):
|
||||
__name__ = 'account_co_reports.trial_balance_classic'
|
||||
|
||||
@classmethod
|
||||
def get_context(cls, records, header, data):
|
||||
report_context = super(TrialBalanceClassic, cls).get_context(records, header, data)
|
||||
pool = Pool()
|
||||
Account = pool.get('account.account')
|
||||
Period = pool.get('account.period')
|
||||
Company = pool.get('company.company')
|
||||
Fiscalyear = pool.get('account.fiscalyear')
|
||||
|
||||
company = Company(data['company'])
|
||||
|
||||
dom_accounts = [
|
||||
('company', '=', data['company']),
|
||||
('code', '!=', None),
|
||||
]
|
||||
|
||||
if not data['detailed']:
|
||||
dom_accounts.append(('closed', '=', False))
|
||||
|
||||
accounts = Account.search(dom_accounts)
|
||||
|
||||
start_periods = []
|
||||
if data['start_period']:
|
||||
start_period = Period(data['start_period'])
|
||||
start_periods = Period.search([
|
||||
('fiscalyear', '=', data['fiscalyear']),
|
||||
('end_date', '<=', start_period.start_date),
|
||||
])
|
||||
else:
|
||||
fiscalyear = Fiscalyear(data['fiscalyear'])
|
||||
start_periods = Period.search([
|
||||
('fiscalyear', '=', data['fiscalyear']),
|
||||
('end_date', '<=', fiscalyear.start_date),
|
||||
])
|
||||
|
||||
if data['end_period']:
|
||||
end_period = Period(data['end_period'])
|
||||
end_periods = Period.search([
|
||||
('fiscalyear', '=', data['fiscalyear']),
|
||||
('end_date', '<=', end_period.start_date),
|
||||
])
|
||||
end_periods = list(set(end_periods).difference(
|
||||
set(start_periods)))
|
||||
if end_period not in end_periods:
|
||||
end_periods.append(end_period)
|
||||
else:
|
||||
end_periods = Period.search([
|
||||
('fiscalyear', '=', data['fiscalyear']),
|
||||
])
|
||||
end_periods = list(set(end_periods).difference(
|
||||
set(start_periods)))
|
||||
|
||||
start_period_ids = [p.id for p in start_periods] or [0]
|
||||
end_period_ids = [p.id for p in end_periods]
|
||||
|
||||
with Transaction().set_context(
|
||||
fiscalyear=data['fiscalyear'],
|
||||
periods=start_period_ids,
|
||||
posted=data['posted']):
|
||||
start_accounts = Account.browse(accounts)
|
||||
|
||||
with Transaction().set_context(
|
||||
fiscalyear=None,
|
||||
periods=end_period_ids,
|
||||
posted=data['posted']):
|
||||
in_accounts = Account.browse(accounts)
|
||||
|
||||
|
||||
with Transaction().set_context(
|
||||
fiscalyear=data['fiscalyear'],
|
||||
periods=start_period_ids + end_period_ids,
|
||||
posted=data['posted']):
|
||||
end_accounts = Account.browse(accounts)
|
||||
|
||||
to_remove = []
|
||||
if not data['empty_account']:
|
||||
for account in in_accounts:
|
||||
if account.debit == Decimal('0.0') \
|
||||
and account.credit == Decimal('0.0'):
|
||||
to_remove.append(account.id)
|
||||
|
||||
if not data['detailed']:
|
||||
accounts = cls._accounts(data, to_remove,
|
||||
start_accounts, in_accounts, end_accounts)
|
||||
else:
|
||||
accounts = cls._accounts_view(data, to_remove,
|
||||
start_accounts, in_accounts, end_accounts)
|
||||
|
||||
periods = end_periods
|
||||
report_context['accounts'] = accounts
|
||||
periods.sort(key=operator.attrgetter('start_date'))
|
||||
report_context['start_period'] = periods[0]
|
||||
periods.sort(key=operator.attrgetter('end_date'))
|
||||
report_context['end_period'] = periods[-1]
|
||||
report_context['company'] = company
|
||||
report_context['digits'] = company.currency.digits
|
||||
report_context['sumto'] = lambda accounts, field: cls.sumto(accounts, field)
|
||||
return report_context
|
||||
|
||||
@classmethod
|
||||
def _accounts_view(cls, data, to_remove,
|
||||
start_accounts, in_accounts, end_accounts):
|
||||
dict_accounts = dict()
|
||||
for start_account, in_account, end_account in zip(
|
||||
start_accounts, in_accounts, end_accounts):
|
||||
|
||||
empty_account = all([
|
||||
start_account.balance == 0,
|
||||
in_account.debit == 0,
|
||||
in_account.credit == 0,
|
||||
end_account.balance == 0
|
||||
])
|
||||
|
||||
if start_account.closed == False and empty_account:
|
||||
continue
|
||||
if start_account.closed == True:
|
||||
start_balance = []
|
||||
end_balance = []
|
||||
debit = []
|
||||
credit = []
|
||||
else:
|
||||
start_balance = [start_account.balance]
|
||||
debit = [in_account.debit]
|
||||
credit = [in_account.credit]
|
||||
end_balance = [end_account.balance]
|
||||
|
||||
|
||||
def sum_amount_to_parent(acc):
|
||||
try:
|
||||
dict_accounts[acc.parent]['debit'].extend(debit)
|
||||
dict_accounts[acc.parent]['credit'].extend(credit)
|
||||
dict_accounts[acc.parent]['start_balance'].extend(start_balance)
|
||||
dict_accounts[acc.parent]['end_balance'].extend(end_balance)
|
||||
if acc.parent.parent and acc.parent.code:
|
||||
sum_amount_to_parent(acc.parent)
|
||||
except:
|
||||
pass
|
||||
|
||||
if start_account.closed == False and start_account.parent \
|
||||
and not empty_account:
|
||||
sum_amount_to_parent(start_account)
|
||||
|
||||
dict_accounts[start_account] = {
|
||||
'code': start_account.code,
|
||||
'name': start_account.name,
|
||||
'start_balance': start_balance,
|
||||
'debit': debit,
|
||||
'credit': credit,
|
||||
'end_balance': end_balance,
|
||||
}
|
||||
|
||||
return dict_accounts.values()
|
||||
|
||||
@classmethod
|
||||
def _accounts(cls, data, to_remove,
|
||||
start_accounts, in_accounts, end_accounts):
|
||||
accounts = []
|
||||
for start_account, in_account, end_account in zip(
|
||||
start_accounts, in_accounts, end_accounts):
|
||||
if in_account.id in to_remove:
|
||||
if not data['accounts_with_balance'] or \
|
||||
start_account.balance == Decimal('0.0'):
|
||||
continue
|
||||
accounts.append({
|
||||
'code': start_account.code,
|
||||
'name': start_account.name,
|
||||
'start_balance': [start_account.balance],
|
||||
'debit': [in_account.debit],
|
||||
'credit': [in_account.credit],
|
||||
'end_balance': [end_account.balance],
|
||||
})
|
||||
return accounts
|
||||
|
||||
@classmethod
|
||||
def sumto(cls, accounts, field):
|
||||
amount = Decimal('0.0')
|
||||
for account in accounts:
|
||||
amount += sum(account[field])
|
||||
return amount
|
||||
24
modules/account_co_reports/trial_balance.xml
Executable file
24
modules/account_co_reports/trial_balance.xml
Executable file
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0"?>
|
||||
<tryton>
|
||||
<data>
|
||||
<record model="ir.ui.view" id="print_trial_balance_start_view_form">
|
||||
<field name="model">account.print_trial_balance.start</field>
|
||||
<field name="type">form</field>
|
||||
<field name="name">print_trial_balance_start_form</field>
|
||||
</record>
|
||||
<record model="ir.action.wizard" id="wizard_print_trial_balance">
|
||||
<field name="name">Print Trial Balance</field>
|
||||
<field name="wiz_name">account.print_trial_balance</field>
|
||||
</record>
|
||||
<menuitem parent="account.menu_reporting" action="wizard_print_trial_balance"
|
||||
id="menu_print_trial_balance" icon="tryton-print"/>
|
||||
|
||||
<record model="ir.action.report" id="report_trial_balance_classic">
|
||||
<field name="name">Trial Balance</field>
|
||||
<field name="model"></field>
|
||||
<field name="report_name">account_co_reports.trial_balance_classic</field>
|
||||
<field name="report">account_co_reports/report/trial_balance.fods</field>
|
||||
<field name="template_extension">ods</field>
|
||||
</record>
|
||||
</data>
|
||||
</tryton>
|
||||
331
modules/account_co_reports/trial_balance_detailed.py
Normal file
331
modules/account_co_reports/trial_balance_detailed.py
Normal file
@@ -0,0 +1,331 @@
|
||||
# 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 decimal import Decimal
|
||||
|
||||
from sql.conditionals import Coalesce
|
||||
from sql.aggregate import Sum
|
||||
from collections import OrderedDict
|
||||
|
||||
from trytond.model import ModelView, ModelSQL, fields
|
||||
from trytond.wizard import Wizard, StateView, Button, StateReport
|
||||
from trytond.transaction import Transaction
|
||||
from trytond.report import Report
|
||||
from trytond.pyson import Eval, PYSONEncoder
|
||||
from trytond.pool import Pool, PoolMeta
|
||||
|
||||
|
||||
class PrintTrialBalanceDetailedStart(ModelView):
|
||||
'Print Trial Balance Detailed'
|
||||
__name__ = 'account_co_reports.print_trial_balance_detailed.start'
|
||||
fiscalyear = fields.Many2One('account.fiscalyear', 'Fiscal Year',
|
||||
required=True, depends=['start_period', 'end_period'])
|
||||
start_period = fields.Many2One('account.period', 'Start Period',
|
||||
domain=[
|
||||
('fiscalyear', '=', Eval('fiscalyear')),
|
||||
('start_date', '<=', (Eval('end_period'), 'start_date'))
|
||||
],
|
||||
depends=['end_period', 'fiscalyear'])
|
||||
end_period = fields.Many2One('account.period', 'End Period',
|
||||
domain=[
|
||||
('fiscalyear', '=', Eval('fiscalyear')),
|
||||
('start_date', '>=', (Eval('start_period'), 'start_date'))
|
||||
],
|
||||
depends=['start_period', 'fiscalyear'])
|
||||
party = fields.Many2One('party.party', 'Party')
|
||||
accounts = fields.Many2Many('account.account', None, None, 'Accounts',
|
||||
domain=[
|
||||
('type', '!=', ''),
|
||||
])
|
||||
company = fields.Many2One('company.company', 'Company', required=True)
|
||||
posted = fields.Boolean('Posted Move', help='Show only posted move')
|
||||
by_reference = fields.Boolean('By Reference', help='Show all moves by reference ignoring the parties')
|
||||
empty_account = fields.Boolean('Empty Account',
|
||||
help='With account without move')
|
||||
|
||||
@staticmethod
|
||||
def default_fiscalyear():
|
||||
FiscalYear = Pool().get('account.fiscalyear')
|
||||
return FiscalYear.find(
|
||||
Transaction().context.get('company'), exception=False)
|
||||
|
||||
@staticmethod
|
||||
def default_company():
|
||||
return Transaction().context.get('company')
|
||||
|
||||
@staticmethod
|
||||
def default_posted():
|
||||
return False
|
||||
|
||||
@staticmethod
|
||||
def default_by_reference():
|
||||
return False
|
||||
|
||||
@staticmethod
|
||||
def default_empty_account():
|
||||
return False
|
||||
|
||||
@fields.depends('fiscalyear')
|
||||
def on_change_fiscalyear(self):
|
||||
self.start_period = None
|
||||
self.end_period = None
|
||||
|
||||
|
||||
class PrintTrialBalanceDetailed(Wizard):
|
||||
'Print Trial Balance Detailed'
|
||||
__name__ = 'account_co_reports.print_trial_balance_detailed'
|
||||
start = StateView('account_co_reports.print_trial_balance_detailed.start',
|
||||
'account_co_reports.print_trial_balance_detailed_start_view_form', [
|
||||
Button('Cancel', 'end', 'tryton-cancel'),
|
||||
Button('Print', 'print_', 'tryton-print', default=True),
|
||||
])
|
||||
print_ = StateReport('account_co_reports.trial_balance_detailed')
|
||||
|
||||
def do_print_(self, action):
|
||||
start_period = None
|
||||
end_period = None
|
||||
party_id = None
|
||||
accounts_ids = []
|
||||
if self.start.start_period:
|
||||
start_period = self.start.start_period.id
|
||||
if self.start.end_period:
|
||||
end_period = self.start.end_period.id
|
||||
if self.start.party:
|
||||
party_id = self.start.party.id
|
||||
|
||||
if self.start.accounts:
|
||||
accounts_ids = [acc.id for acc in self.start.accounts]
|
||||
|
||||
data = {
|
||||
'company': self.start.company.id,
|
||||
'fiscalyear': self.start.fiscalyear.id,
|
||||
'start_period': start_period,
|
||||
'end_period': end_period,
|
||||
'party': party_id,
|
||||
'accounts': accounts_ids,
|
||||
'posted': self.start.posted,
|
||||
'empty_account': self.start.empty_account,
|
||||
'by_reference': self.start.by_reference,
|
||||
}
|
||||
return action, data
|
||||
|
||||
def transition_print_(self):
|
||||
return 'end'
|
||||
|
||||
|
||||
class TrialBalanceDetailed(Report):
|
||||
__name__ = 'account_co_reports.trial_balance_detailed'
|
||||
|
||||
@classmethod
|
||||
def get_context(cls, records, header, data):
|
||||
report_context = super(TrialBalanceDetailed, cls).get_context(records, header, data)
|
||||
pool = Pool()
|
||||
Account = pool.get('account.account')
|
||||
Move = pool.get('account.move')
|
||||
Line = pool.get('account.move.line')
|
||||
Period = pool.get('account.period')
|
||||
Company = pool.get('company.company')
|
||||
Party = pool.get('party.party')
|
||||
FiscalYear = pool.get('account.fiscalyear')
|
||||
cursor = Transaction().connection.cursor()
|
||||
|
||||
move = Move.__table__()
|
||||
line = Line.__table__()
|
||||
start_period_name = None
|
||||
end_period_name = None
|
||||
|
||||
# ----- Set Periods -----
|
||||
start_periods = []
|
||||
if data['start_period']:
|
||||
start_period = Period(data['start_period'])
|
||||
start_periods = Period.search([
|
||||
('fiscalyear', '=', data['fiscalyear']),
|
||||
('end_date', '<=', start_period.start_date),
|
||||
])
|
||||
start_period_name = start_period.name
|
||||
else:
|
||||
fiscalyear = FiscalYear(data['fiscalyear'])
|
||||
start_periods = Period.search([
|
||||
('end_date', '<=', fiscalyear.start_date),
|
||||
])
|
||||
|
||||
|
||||
if data['end_period']:
|
||||
end_period = Period(data['end_period'])
|
||||
end_periods = Period.search([
|
||||
('fiscalyear', '=', data['fiscalyear']),
|
||||
('end_date', '<=', end_period.start_date),
|
||||
])
|
||||
end_periods = list(set(end_periods).difference(
|
||||
set(start_periods)))
|
||||
end_period_name = end_period.name
|
||||
if end_period not in end_periods:
|
||||
end_periods.append(end_period)
|
||||
else:
|
||||
end_periods = Period.search([
|
||||
('fiscalyear', '=', data['fiscalyear']),
|
||||
])
|
||||
end_periods = list(set(end_periods).difference(
|
||||
set(start_periods)))
|
||||
|
||||
# Select Query for In
|
||||
in_periods = [p.id for p in end_periods]
|
||||
join1 = line.join(move)
|
||||
join1.condition = join1.right.id == line.move
|
||||
|
||||
entity = line.party
|
||||
default_entity = 0
|
||||
if not data['party'] and data['by_reference']:
|
||||
entity = line.reference
|
||||
default_entity = '0'
|
||||
select1 = join1.select(
|
||||
line.account, Coalesce(entity, default_entity), Sum(line.debit), Sum(line.credit),
|
||||
group_by=(line.account, entity),
|
||||
order_by=line.account,
|
||||
)
|
||||
select1.where = (join1.right.period.in_(in_periods))
|
||||
if data['party']:
|
||||
select1.where = select1.where & (line.party == data['party'])
|
||||
|
||||
if data['accounts']:
|
||||
select1.where = select1.where & (line.account.in_(data['accounts']))
|
||||
cursor.execute(*select1)
|
||||
result_in = cursor.fetchall()
|
||||
|
||||
# Select Query for Start
|
||||
start_periods_ids = [p.id for p in start_periods]
|
||||
result_start = []
|
||||
|
||||
if start_periods_ids:
|
||||
join1 = line.join(move)
|
||||
join1.condition = join1.right.id == line.move
|
||||
|
||||
select2 = join1.select(
|
||||
line.account, Coalesce(entity, default_entity), Sum(line.debit) - Sum(line.credit),
|
||||
group_by=(line.account, entity),
|
||||
order_by=line.account,
|
||||
)
|
||||
select2.where = (join1.right.period.in_(start_periods_ids))
|
||||
|
||||
if data['party']:
|
||||
select2.where = select2.where & (line.party == data['party'])
|
||||
|
||||
if data['accounts']:
|
||||
select2.where = select2.where & (line.account.in_(data['accounts']))
|
||||
|
||||
cursor.execute(*select2)
|
||||
result_start = cursor.fetchall()
|
||||
|
||||
all_result = result_in + result_start
|
||||
accs_ids = []
|
||||
parties_ids = []
|
||||
for r in all_result:
|
||||
accs_ids.append(r[0])
|
||||
parties_ids.append(r[1])
|
||||
accounts = OrderedDict()
|
||||
# Prepare accounts
|
||||
if accs_ids:
|
||||
acc_records = Account.search_read([
|
||||
('id', 'in', list(set(accs_ids))),
|
||||
('active', 'in', [False, True]),
|
||||
], order=[('code', 'ASC')], fields_names=['code', 'name'])
|
||||
|
||||
for acc in acc_records:
|
||||
accounts[acc['id']] = [
|
||||
acc,
|
||||
{},
|
||||
{
|
||||
'debits': [],
|
||||
'credits': [],
|
||||
'start_balance': [],
|
||||
'end_balance': [],
|
||||
}
|
||||
]
|
||||
|
||||
if not data['by_reference']:
|
||||
parties_obj = Party.search_read([
|
||||
('id', 'in', parties_ids),
|
||||
('active', 'in', [False, True]),
|
||||
], fields_names=['name'])
|
||||
|
||||
parties = {p['id'] : p for p in parties_obj}
|
||||
else:
|
||||
parties = {p : p for p in parties_ids}
|
||||
|
||||
|
||||
def _get_process_result(kind, values):
|
||||
for val in values:
|
||||
party_id = 0
|
||||
id_number = '---'
|
||||
party_name = '---'
|
||||
if not data['by_reference']:
|
||||
if val[1]:
|
||||
party_id = val[1]
|
||||
if Party(party_id).identifiers:
|
||||
id_number = Party(party_id).identifiers[0].code
|
||||
else:
|
||||
id_number = ''
|
||||
party_name = parties[party_id]['name']
|
||||
else:
|
||||
party_id = val[1]
|
||||
id_number = val[1]
|
||||
party_name = val[1]
|
||||
|
||||
acc_id = val[0]
|
||||
|
||||
debit = 0
|
||||
credit = 0
|
||||
start_balance = 0
|
||||
|
||||
if kind == 'in':
|
||||
debit = val[2]
|
||||
credit = val[3]
|
||||
amount = debit - credit
|
||||
else: # kind == start
|
||||
start_balance = val[2]
|
||||
amount = val[2]
|
||||
if debit == credit == start_balance == 0:
|
||||
continue
|
||||
|
||||
if party_id not in accounts[acc_id][1].keys():
|
||||
end_balance = start_balance + debit - credit
|
||||
rec = {
|
||||
'id_number': id_number,
|
||||
'party': party_name,
|
||||
'start_balance': start_balance,
|
||||
'debit': debit,
|
||||
'credit': credit,
|
||||
'end_balance': end_balance,
|
||||
}
|
||||
accounts[acc_id][1][party_id] = rec
|
||||
amount = end_balance
|
||||
else:
|
||||
dictval = accounts[acc_id][1][party_id]
|
||||
if kind == 'in':
|
||||
dictval['debit'] = debit
|
||||
dictval['credit'] = credit
|
||||
else:
|
||||
dictval['start_balance'] = start_balance
|
||||
|
||||
end_balance = dictval['start_balance'] + dictval['debit'] - dictval['credit']
|
||||
dictval['end_balance'] = end_balance
|
||||
|
||||
accounts[acc_id][2]['debits'].append(debit)
|
||||
accounts[acc_id][2]['credits'].append(credit)
|
||||
accounts[acc_id][2]['start_balance'].append(start_balance)
|
||||
accounts[acc_id][2]['end_balance'].append(amount)
|
||||
|
||||
_get_process_result(kind='in', values=result_in)
|
||||
_get_process_result(kind='start', values=result_start)
|
||||
|
||||
if accounts:
|
||||
records = accounts.values()
|
||||
else:
|
||||
records = accounts
|
||||
report_context['accounts'] = records
|
||||
report_context['fiscalyear'] = FiscalYear(data['fiscalyear'])
|
||||
report_context['start_period'] = start_period_name
|
||||
report_context['end_period'] = end_period_name
|
||||
report_context['company'] = Company(data['company'])
|
||||
return report_context
|
||||
|
||||
|
||||
28
modules/account_co_reports/trial_balance_detailed.xml
Normal file
28
modules/account_co_reports/trial_balance_detailed.xml
Normal file
@@ -0,0 +1,28 @@
|
||||
<?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="print_trial_balance_detailed_start_view_form">
|
||||
<field name="model">account_co_reports.print_trial_balance_detailed.start</field>
|
||||
<field name="type">form</field>
|
||||
<field name="name">trial_balance_detailed_start_form</field>
|
||||
</record>
|
||||
<record model="ir.action.wizard" id="wizard_trial_balance_detailed">
|
||||
<field name="name">Trial Balance Detailed</field>
|
||||
<field name="wiz_name">account_co_reports.print_trial_balance_detailed</field>
|
||||
</record>
|
||||
<record model="ir.action.report" id="report_trial_balance_detailed">
|
||||
<field name="name">Trial Balance Detailed</field>
|
||||
<field name="model"></field>
|
||||
<field name="report_name">account_co_reports.trial_balance_detailed</field>
|
||||
<field name="report">account_co_reports/report/trial_balance_detailed.fods</field>
|
||||
<field name="template_extension">ods</field>
|
||||
</record>
|
||||
<menuitem parent="account.menu_reporting" action="wizard_trial_balance_detailed"
|
||||
id="menu_trial_balance_detailed" icon="tryton-print"/>
|
||||
|
||||
|
||||
</data>
|
||||
</tryton>
|
||||
18
modules/account_co_reports/tryton.cfg
Normal file
18
modules/account_co_reports/tryton.cfg
Normal file
@@ -0,0 +1,18 @@
|
||||
[tryton]
|
||||
version=6.8.0
|
||||
depends=
|
||||
ir
|
||||
res
|
||||
account
|
||||
company
|
||||
xml:
|
||||
auxiliary_party.xml
|
||||
auxiliary_book.xml
|
||||
party_book_account.xml
|
||||
trial_balance.xml
|
||||
trial_balance_detailed.xml
|
||||
balance_sheet.xml
|
||||
balance_sheet_colgaap.xml
|
||||
income_statement.xml
|
||||
income_statement_colgaap.xml
|
||||
balance_invoice_party.xml
|
||||
9
modules/account_co_reports/view/balance_sheet_context_col_form.xml
Executable file
9
modules/account_co_reports/view/balance_sheet_context_col_form.xml
Executable 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/field[@name='posted']" position="after">
|
||||
<label name="utility_temp"/>
|
||||
<field name="utility_temp"/>
|
||||
</xpath>
|
||||
</data>
|
||||
9
modules/account_co_reports/view/income_statement_context_col_form.xml
Executable file
9
modules/account_co_reports/view/income_statement_context_col_form.xml
Executable 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/field[@name='posted']" position="after">
|
||||
<label name="utility_temp"/>
|
||||
<field name="utility_temp"/>
|
||||
</xpath>
|
||||
</data>
|
||||
8
modules/account_co_reports/view/party_book_account_tree.xml
Executable file
8
modules/account_co_reports/view/party_book_account_tree.xml
Executable file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0"?>
|
||||
<tree>
|
||||
<field name="party"/>
|
||||
<field name="name"/>
|
||||
<field name="code"/>
|
||||
<field name="credit"/>
|
||||
<field name="debit"/>
|
||||
</tree>
|
||||
23
modules/account_co_reports/view/print_auxiliary_book_start_form.xml
Executable file
23
modules/account_co_reports/view/print_auxiliary_book_start_form.xml
Executable file
@@ -0,0 +1,23 @@
|
||||
<?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="fiscalyear"/>
|
||||
<field name="fiscalyear"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="start_period"/>
|
||||
<field name="start_period"/>
|
||||
<label name="end_period"/>
|
||||
<field name="end_period"/>
|
||||
<label name="start_account"/>
|
||||
<field name="start_account"/>
|
||||
<label name="end_account"/>
|
||||
<field name="end_account"/>
|
||||
<label name="party"/>
|
||||
<field name="party"/>
|
||||
<label name="empty_account"/>
|
||||
<field name="empty_account"/>
|
||||
<label name="posted"/>
|
||||
<field name="posted"/>
|
||||
</form>
|
||||
21
modules/account_co_reports/view/print_auxiliary_party_start_form.xml
Executable file
21
modules/account_co_reports/view/print_auxiliary_party_start_form.xml
Executable 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="party"/>
|
||||
<field name="party"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="start_period"/>
|
||||
<field name="start_period"/>
|
||||
<label name="end_period"/>
|
||||
<field name="end_period"/>
|
||||
<label name="empty_account"/>
|
||||
<field name="empty_account"/>
|
||||
<label name="posted"/>
|
||||
<field name="posted"/>
|
||||
<label name="grouped_by_account"/>
|
||||
<field name="grouped_by_account"/>
|
||||
<newline/>
|
||||
<field name="accounts" colspan="4"/>
|
||||
</form>
|
||||
@@ -0,0 +1,15 @@
|
||||
<?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="party"/>
|
||||
<field name="party"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="start_period"/>
|
||||
<field name="start_period"/>
|
||||
<label name="end_period"/>
|
||||
<field name="end_period"/>
|
||||
<label name="party_type"/>
|
||||
<field name="party_type"/>
|
||||
</form>
|
||||
17
modules/account_co_reports/view/print_balance_sheet_colgaap_start_form.xml
Executable file
17
modules/account_co_reports/view/print_balance_sheet_colgaap_start_form.xml
Executable file
@@ -0,0 +1,17 @@
|
||||
<?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="fiscalyear"/>
|
||||
<field name="fiscalyear"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="period"/>
|
||||
<field name="period"/>
|
||||
<label name="posted"/>
|
||||
<field name="posted"/>
|
||||
<label name="detailed"/>
|
||||
<field name="detailed"/>
|
||||
<label name="account_profit"/>
|
||||
<field name="account_profit"/>
|
||||
</form>
|
||||
@@ -0,0 +1,17 @@
|
||||
<?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="fiscalyear"/>
|
||||
<field name="fiscalyear"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="start_period"/>
|
||||
<field name="start_period"/>
|
||||
<label name="end_period"/>
|
||||
<field name="end_period"/>
|
||||
<label name="posted"/>
|
||||
<field name="posted"/>
|
||||
<label name="detailed"/>
|
||||
<field name="detailed"/>
|
||||
</form>
|
||||
21
modules/account_co_reports/view/print_trial_balance_start_form.xml
Executable file
21
modules/account_co_reports/view/print_trial_balance_start_form.xml
Executable 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="fiscalyear"/>
|
||||
<field name="fiscalyear"/>
|
||||
<label name="empty_account"/>
|
||||
<field name="empty_account"/>
|
||||
<label name="start_period"/>
|
||||
<field name="start_period"/>
|
||||
<label name="end_period"/>
|
||||
<field name="end_period"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="posted"/>
|
||||
<field name="posted"/>
|
||||
<label name="accounts_with_balance"/>
|
||||
<field name="accounts_with_balance"/>
|
||||
<label name="detailed"/>
|
||||
<field name="detailed"/>
|
||||
</form>
|
||||
@@ -0,0 +1,22 @@
|
||||
<?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="fiscalyear"/>
|
||||
<field name="fiscalyear"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="start_period"/>
|
||||
<field name="start_period"/>
|
||||
<label name="end_period"/>
|
||||
<field name="end_period"/>
|
||||
<label name="party"/>
|
||||
<field name="party"/>
|
||||
<label name="empty_account"/>
|
||||
<field name="empty_account"/>
|
||||
<label name="posted"/>
|
||||
<field name="posted"/>
|
||||
<label name="by_reference"/>
|
||||
<field name="by_reference"/>
|
||||
<field name="accounts" colspan="4"/>
|
||||
</form>
|
||||
Reference in New Issue
Block a user