details: https://code.tryton.org/tryton/commit/4957009a2225
branch: default
user: Cédric Krier <[email protected]>
date: Mon May 11 15:51:51 2026 +0200
description:
Print general ledger lines per party for account with party required
Closes #14828
diffstat:
modules/account/account.py | 36 +
modules/account/general_ledger.fodt | 1092 +++++++++++++++++++++-------------
2 files changed, 694 insertions(+), 434 deletions(-)
diffs (1527 lines):
diff -r 609bb3237c0d -r 4957009a2225 modules/account/account.py
--- a/modules/account/account.py Mon May 11 15:50:41 2026 +0200
+++ b/modules/account/account.py Mon May 11 15:51:51 2026 +0200
@@ -2112,6 +2112,10 @@
lines = fields.One2Many(
'account.general_ledger.line', 'account', "Lines", readonly=True,
order=[('move.date', 'ASC'), ('id', None)])
+ parties = fields.One2Many(
+ 'account.general_ledger.account.party', 'account', "Parties",
+ readonly=True)
+ party_required = fields.Boolean("Party Required")
general_ledger_balance = fields.Boolean("General Ledger Balance")
@classmethod
@@ -2285,6 +2289,12 @@
'company': Eval('company', -1),
},
depends={'company'})
+ lines = fields.Function(fields.Many2Many(
+ 'account.general_ledger.line', None, None, "Lines", readonly=True,
+ context={
+ 'party_cumulate': True,
+ }),
+ 'get_lines')
@classmethod
def __setup__(cls):
@@ -2292,6 +2302,32 @@
cls._order.insert(1, ('party', 'ASC'))
@classmethod
+ def get_lines(cls, parties, name):
+ pool = Pool()
+ Line = pool.get('account.general_ledger.line')
+ Move = pool.get('account.move')
+ table = cls.__table__()
+ line = Line.__table__()
+ move = Move.__table__()
+ cursor = Transaction().connection.cursor()
+
+ query = (line
+ .join(table,
+ condition=(
+ (line.account == table.account)
+ & (line.party == table.party)))
+ .join(move,
+ condition=line.move == move.id)
+ .select(table.id, line.id,
+ where=fields.SQL_OPERATORS['in'](
+ table.id, list(map(int, parties))),
+ order_by=[table.id, move.date.asc, line.id]))
+ cursor.execute(*query)
+ return defaultdict(list, (
+ (i, [r[1] for r in g])
+ for i, g in groupby(cursor, lambda row: row[0])))
+
+ @classmethod
def _get_account(cls):
pool = Pool()
return pool.get('account.account.party')
diff -r 609bb3237c0d -r 4957009a2225 modules/account/general_ledger.fodt
--- a/modules/account/general_ledger.fodt Mon May 11 15:50:41 2026 +0200
+++ b/modules/account/general_ledger.fodt Mon May 11 15:51:51 2026 +0200
@@ -1,24 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
-<office:document xmlns:officeooo="http://openoffice.org/2009/office"
xmlns:css3t="http://www.w3.org/TR/css3-text/"
xmlns:grddl="http://www.w3.org/2003/g/data-view#"
xmlns:xhtml="http://www.w3.org/1999/xhtml"
xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0"
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0"
xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0"
xmlns:oooc="http://openoffice.org/2004/calc"
xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0"
xmlns:ooow="http://openoffice.org/2004/writer"
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:rpt="http://openoffice.org/2005/report"
xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0"
xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0"
xmlns:ooo="http://openoffice.org/2004/office"
xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0"
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0"
xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0"
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0"
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2"
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
xmlns:tableooo="http://openoffice.org/2009/table"
xmlns:drawooo="http://openoffice.org/2010/draw"
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
xmlns:dom="http://www.w3.org/2001/xml-events"
xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0"
xmlns:math="http://www.w3.org/1998/Math/MathML"
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0"
xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0"
xmlns:xforms="http://www.w3.org/2002/xforms" office:version="1.3"
office:mimetype="application/vnd.oasis.opendocument.text">
- <office:meta><meta:generator>LibreOffice/7.3.5.2$Linux_X86_64
LibreOffice_project/30$Build-2</meta:generator><meta:creation-date>2008-06-07T15:26:41</meta:creation-date><dc:date>2008-08-27T17:03:36</dc:date><meta:editing-cycles>1</meta:editing-cycles><meta:editing-duration>PT0S</meta:editing-duration><meta:document-statistic
meta:table-count="4" meta:image-count="0" meta:object-count="0"
meta:page-count="3" meta:paragraph-count="51" meta:word-count="145"
meta:character-count="1808"
meta:non-whitespace-character-count="1714"/><meta:user-defined meta:name="Info
1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info
3"/><meta:user-defined meta:name="Info 4"/></office:meta>
+<office:document 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:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xforms="http://www.w3.org/2002/xforms"
xmlns:dom="http://www.w3.org/2001/xml-events"
xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0"
xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0"
xmlns:math="http://www.w3.org/1998/Math/MathML"
xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0"
xmlns:ooo="http://openoffice.org/2004/office"
xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0"
xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0"
xmlns:ooow="http://openoffice.org/2004/writer"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:drawooo="http://openoffice.org/2010/draw"
xmlns:oooc="http://openoffice.org/2004/calc"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0"
xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0"
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2"
xmlns:tableooo="http://openoffice.org/2009/table"
xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0"
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0"
xmlns:rpt="http://openoffice.org/2005/report"
xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0"
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0"
xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0"
xmlns:officeooo="http://openoffice.org/2009/office"
xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0"
xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0"
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0"
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0"
xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0"
office:version="1.4" office:mimetype="application/vnd.oasis.opendocument.text">
+ <office:meta>
+ <meta:generator>LibreOffice/25.2.7.2$Linux_X86_64
LibreOffice_project/520$Build-2
+ </meta:generator>
+ <meta:user-defined meta:name="Info 1" meta:value-type="string"/>
+ <meta:user-defined meta:name="Info 2" meta:value-type="string"/>
+ <meta:user-defined meta:name="Info 3" meta:value-type="string"/>
+ <meta:user-defined meta:name="Info 4" meta:value-type="string"/>
+ <meta:document-statistic meta:page-count="5" meta:table-count="5"
meta:image-count="0" meta:object-count="0" meta:paragraph-count="78"
meta:word-count="207" meta:character-count="2753"/>
+ </office:meta>
<office:settings>
<config:config-item-set config:name="ooo:view-settings">
- <config:config-item config:name="ViewAreaTop"
config:type="long">24130</config:config-item>
+ <config:config-item config:name="ViewAreaTop"
config:type="long">84455</config:config-item>
<config:config-item config:name="ViewAreaLeft"
config:type="long">0</config:config-item>
- <config:config-item config:name="ViewAreaWidth"
config:type="long">48129</config:config-item>
- <config:config-item config:name="ViewAreaHeight"
config:type="long">22994</config:config-item>
+ <config:config-item config:name="ViewAreaWidth"
config:type="long">48103</config:config-item>
+ <config:config-item config:name="ViewAreaHeight"
config:type="long">23947</config:config-item>
<config:config-item config:name="ShowRedlineChanges"
config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode"
config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry>
<config:config-item config:name="ViewId"
config:type="string">view2</config:config-item>
- <config:config-item config:name="ViewLeft"
config:type="long">19627</config:config-item>
- <config:config-item config:name="ViewTop"
config:type="long">29242</config:config-item>
+ <config:config-item config:name="ViewLeft"
config:type="long">12081</config:config-item>
+ <config:config-item config:name="ViewTop"
config:type="long">33024</config:config-item>
<config:config-item config:name="VisibleLeft"
config:type="long">0</config:config-item>
- <config:config-item config:name="VisibleTop"
config:type="long">24130</config:config-item>
- <config:config-item config:name="VisibleRight"
config:type="long">48128</config:config-item>
- <config:config-item config:name="VisibleBottom"
config:type="long">47122</config:config-item>
+ <config:config-item config:name="VisibleTop"
config:type="long">84455</config:config-item>
+ <config:config-item config:name="VisibleRight"
config:type="long">48101</config:config-item>
+ <config:config-item config:name="VisibleBottom"
config:type="long">108400</config:config-item>
<config:config-item config:name="ZoomType"
config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns"
config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutBookMode"
config:type="boolean">false</config:config-item>
@@ -26,112 +34,126 @@
<config:config-item config:name="IsSelectedFrame"
config:type="boolean">false</config:config-item>
<config:config-item config:name="KeepRatio"
config:type="boolean">false</config:config-item>
<config:config-item config:name="AnchoredTextOverflowLegacy"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="LegacySingleLineFontwork"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="ConnectorUseSnapRect"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="IgnoreBreakAfterMultilineField"
config:type="boolean">false</config:config-item>
</config:config-item-map-entry>
</config:config-item-map-indexed>
</config:config-item-set>
<config:config-item-set config:name="ooo:configuration-settings">
- <config:config-item config:name="PrintProspect"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="PrintReversed"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="PrintSingleJobs"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="PrintLeftPages"
config:type="boolean">true</config:config-item>
- <config:config-item config:name="PrintTables"
config:type="boolean">true</config:config-item>
- <config:config-item config:name="PrintControls"
config:type="boolean">true</config:config-item>
+ <config:config-item config:name="PrintProspectRTL"
config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintPageBackground"
config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintDrawings"
config:type="boolean">true</config:config-item>
- <config:config-item config:name="PrintBlackFonts"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrintFaxName" config:type="string"/>
+ <config:config-item config:name="PrintReversed"
config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintAnnotationMode"
config:type="short">0</config:config-item>
- <config:config-item config:name="PrintTextPlaceholder"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="ProtectFields"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="ProtectBookmarks"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="EmptyDbFieldHidesPara"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="DisableOffPagePositioning"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrintHiddenText"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrintEmptyPages"
config:type="boolean">true</config:config-item>
+ <config:config-item config:name="MsWordCompGridMetrics"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PaintHellOverHeaderFooter"
config:type="boolean">false</config:config-item>
+ <config:config-item
config:name="ApplyParagraphMarkFormatToEmptyLineAtEndOfParagraph"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrintGraphics"
config:type="boolean">true</config:config-item>
+ <config:config-item config:name="NoNumberingShowFollowBy"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="MinRowHeightInclBorder"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="HyphenateURLs"
config:type="boolean">true</config:config-item>
+ <config:config-item config:name="ImagePreferredDPI"
config:type="int">0</config:config-item>
+ <config:config-item config:name="FootnoteInColumnToPageEnd"
config:type="boolean">true</config:config-item>
+ <config:config-item config:name="GutterAtTop"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="ContinuousEndnotes"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="FrameAutowidthWithMorePara"
config:type="boolean">false</config:config-item>
<config:config-item config:name="SubtractFlysAnchoredAtFlys"
config:type="boolean">true</config:config-item>
- <config:config-item config:name="PropLineSpacingShrinksFirstLine"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="ApplyParagraphMarkFormatToNumbering"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="GutterAtTop"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="SurroundTextWrapSmall"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrintControls"
config:type="boolean">true</config:config-item>
<config:config-item config:name="TreatSingleColumnBreakAsPageBreak"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="EmbedSystemFonts"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="TabOverSpacing"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="AutoFirstLineIndentDisregardLineSpace"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="TabOverMargin"
config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedComplexScriptFonts"
config:type="boolean">true</config:config-item>
<config:config-item config:name="EmbedAsianScriptFonts"
config:type="boolean">true</config:config-item>
- <config:config-item config:name="EmbedLatinScriptFonts"
config:type="boolean">true</config:config-item>
- <config:config-item config:name="EmbedOnlyUsedFonts"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="ContinuousEndnotes"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrintTextPlaceholder"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="ApplyTextAttrToEmptyLineAtEndOfParagraph"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="EmbedSystemFonts"
config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedFonts"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="ClippedPictures"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="FloattableNomargins"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="UnbreakableNumberings"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="HeaderSpacingBelowLastPara"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="NoClippingWithWrapPolygon"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="DisableOffPagePositioning"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="BackgroundParaOverDrawings"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="TabOverflow"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="SmallCapsPercentage66"
config:type="boolean">true</config:config-item>
<config:config-item config:name="AllowPrintJobCancel"
config:type="boolean">true</config:config-item>
- <config:config-item config:name="UseOldPrinterMetrics"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="TabOverMargin"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="TabsRelativeToIndent"
config:type="boolean">true</config:config-item>
- <config:config-item config:name="UseOldNumbering"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="InvertBorderSpacing"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="PrintPaperFromSetup"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="UpdateFromTemplate"
config:type="boolean">true</config:config-item>
- <config:config-item config:name="CurrentDatabaseCommandType"
config:type="int">0</config:config-item>
- <config:config-item config:name="LinkUpdateMode"
config:type="short">1</config:config-item>
- <config:config-item config:name="AddParaSpacingToTableCells"
config:type="boolean">true</config:config-item>
- <config:config-item config:name="FrameAutowidthWithMorePara"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="CurrentDatabaseCommand"
config:type="string"/>
+ <config:config-item config:name="AddVerticalFrameOffsets"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="ProtectBookmarks"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="AddFrameOffsets"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrintBlackFonts"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="TableRowKeep"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="ApplyParagraphMarkFormatToNumbering"
config:type="boolean">false</config:config-item>
<config:config-item config:name="PrinterIndependentLayout"
config:type="string">high-resolution</config:config-item>
- <config:config-item config:name="ApplyUserData"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="PrintFaxName" config:type="string"/>
+ <config:config-item config:name="JustifyLinesWithShrinking"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="RsidRoot"
config:type="int">2070049</config:config-item>
+ <config:config-item config:name="PrintProspect"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="CollapseEmptyCellPara"
config:type="boolean">true</config:config-item>
+ <config:config-item config:name="PrintPaperFromSetup"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="CurrentDatabaseCommand"
config:type="string"/>
<config:config-item config:name="CurrentDatabaseDataSource"
config:type="string"/>
- <config:config-item config:name="ClipAsCharacterAnchoredWriterFlyFrames"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="IsKernAsianPunctuation"
config:type="boolean">false</config:config-item>
<config:config-item config:name="SaveThumbnail"
config:type="boolean">true</config:config-item>
- <config:config-item config:name="UseFormerTextWrapping"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="AddExternalLeading"
config:type="boolean">true</config:config-item>
+ <config:config-item config:name="EmbeddedDatabaseName"
config:type="string"/>
+ <config:config-item config:name="UnbreakableNumberings"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="SaveGlobalDocumentLinks"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="MsWordCompTrailingBlanks"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrintTables"
config:type="boolean">true</config:config-item>
+ <config:config-item config:name="PrintLeftPages"
config:type="boolean">true</config:config-item>
<config:config-item config:name="AddParaTableSpacing"
config:type="boolean">true</config:config-item>
- <config:config-item config:name="StylesNoDefault"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrinterPaperFromSetup"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="CurrentDatabaseCommandType"
config:type="int">0</config:config-item>
<config:config-item config:name="ChartAutoUpdate"
config:type="boolean">true</config:config-item>
- <config:config-item config:name="PrinterSetup" config:type="base64Binary"/>
- <config:config-item config:name="AddParaTableSpacingAtStart"
config:type="boolean">true</config:config-item>
- <config:config-item config:name="Rsid"
config:type="int">4069242</config:config-item>
- <config:config-item config:name="EmbeddedDatabaseName"
config:type="string"/>
+ <config:config-item config:name="OutlineLevelYieldsNumbering"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="UseOldNumbering"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="AddParaSpacingToTableCells"
config:type="boolean">true</config:config-item>
<config:config-item config:name="FieldAutoUpdate"
config:type="boolean">true</config:config-item>
- <config:config-item config:name="OutlineLevelYieldsNumbering"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="FootnoteInColumnToPageEnd"
config:type="boolean">true</config:config-item>
- <config:config-item config:name="AlignTabStopPosition"
config:type="boolean">true</config:config-item>
- <config:config-item config:name="CharacterCompressionType"
config:type="short">0</config:config-item>
- <config:config-item config:name="PrinterName" config:type="string"/>
- <config:config-item config:name="SaveGlobalDocumentLinks"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="PrinterPaperFromSetup"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PropLineSpacingShrinksFirstLine"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="TabAtLeftIndentForParagraphsInList"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="PrintRightPages"
config:type="boolean">true</config:config-item>
+ <config:config-item config:name="DoNotCaptureDrawObjsOnPage"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="LoadReadonly"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="HeaderSpacingBelowLastPara"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="SaveVersionOnClose"
config:type="boolean">false</config:config-item>
<config:config-item config:name="UseFormerLineSpacing"
config:type="boolean">false</config:config-item>
<config:config-item config:name="AddParaLineSpacingToTableCells"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="UseFormerObjectPositioning"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="PrintGraphics"
config:type="boolean">true</config:config-item>
- <config:config-item config:name="SurroundTextWrapSmall"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="ConsiderTextWrapOnObjPos"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="MsWordCompTrailingBlanks"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="TabAtLeftIndentForParagraphsInList"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="PrintRightPages"
config:type="boolean">true</config:config-item>
- <config:config-item config:name="TabOverSpacing"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="IgnoreFirstLineIndentInNumbering"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="RedlineProtectionKey"
config:type="base64Binary"/>
+ <config:config-item config:name="IsKernAsianPunctuation"
config:type="boolean">false</config:config-item>
<config:config-item config:name="DoNotJustifyLinesWithManualBreak"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="PrintProspectRTL"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="PrintEmptyPages"
config:type="boolean">true</config:config-item>
+ <config:config-item config:name="CharacterCompressionType"
config:type="short">0</config:config-item>
+ <config:config-item config:name="IsLabelDocument"
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="UseVariableWidthNBSP"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="EmbedOnlyUsedFonts"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="ApplyUserData"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="AddParaTableSpacingAtStart"
config:type="boolean">true</config:config-item>
+ <config:config-item config:name="InvertBorderSpacing"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="ProtectFields"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="AddExternalLeading"
config:type="boolean">true</config:config-item>
+ <config:config-item config:name="LinkUpdateMode"
config:type="short">1</config:config-item>
+ <config:config-item config:name="UseFormerObjectPositioning"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="UnxForceZeroExtLeading"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="UseFormerTextWrapping"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="ConsiderTextWrapOnObjPos"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="StylesNoDefault"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="IgnoreFirstLineIndentInNumbering"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="NoGapAfterNoteNumber"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="EmptyDbFieldHidesPara"
config:type="boolean">false</config:config-item>
<config:config-item config:name="DoNotResetParaAttrsForNumFont"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="AddFrameOffsets"
config:type="boolean">false</config:config-item>
<config:config-item config:name="IgnoreTabsAndBlanksForLineCalculation"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="LoadReadonly"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="DoNotCaptureDrawObjsOnPage"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="AddVerticalFrameOffsets"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="UnxForceZeroExtLeading"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="IsLabelDocument"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="TableRowKeep"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="RsidRoot"
config:type="int">2070049</config:config-item>
- <config:config-item config:name="PrintHiddenText"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="ClippedPictures"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="MathBaselineAlignment"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="AlignTabStopPosition"
config:type="boolean">true</config:config-item>
+ <config:config-item config:name="IgnoreHiddenCharsForLineCalculation"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="ClipAsCharacterAnchoredWriterFlyFrames"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="DropCapPunctuation"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="UseOldPrinterMetrics"
config:type="boolean">false</config:config-item>
+ <config:config-item config:name="RedlineProtectionKey"
config:type="base64Binary"/>
+ <config:config-item config:name="TabsRelativeToIndent"
config:type="boolean">true</config:config-item>
+ <config:config-item config:name="Rsid"
config:type="int">4093891</config:config-item>
+ <config:config-item config:name="UpdateFromTemplate"
config:type="boolean">true</config:config-item>
<config:config-item config:name="ProtectForm"
config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompMinLineHeightByFly"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="BackgroundParaOverDrawings"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="SaveVersionOnClose"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="MathBaselineAlignment"
config:type="boolean">false</config:config-item>
- <config:config-item config:name="SmallCapsPercentage66"
config:type="boolean">true</config:config-item>
- <config:config-item config:name="CollapseEmptyCellPara"
config:type="boolean">true</config:config-item>
- <config:config-item config:name="TabOverflow"
config:type="boolean">false</config:config-item>
</config:config-item-set>
</office:settings>
<office:scripts>
@@ -151,15 +173,15 @@
</office:font-face-decls>
<office:styles>
<style:default-style style:family="graphic">
- <style:graphic-properties svg:stroke-color="#000000"
draw:fill-color="#99ccff" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.3cm"
draw:shadow-offset-y="0.3cm" draw:start-line-spacing-horizontal="0.283cm"
draw:start-line-spacing-vertical="0.283cm"
draw:end-line-spacing-horizontal="0.283cm"
draw:end-line-spacing-vertical="0.283cm" style:flow-with-text="false"/>
- <style:paragraph-properties style:text-autospace="ideograph-alpha"
style:line-break="strict" style:writing-mode="lr-tb"
style:font-independent-line-spacing="false">
+ <style:graphic-properties svg:stroke-color="#000000"
draw:fill-color="#99ccff" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.3cm"
draw:shadow-offset-y="0.3cm" draw:start-line-spacing-horizontal="0.283cm"
draw:start-line-spacing-vertical="0.283cm"
draw:end-line-spacing-horizontal="0.283cm"
draw:end-line-spacing-vertical="0.283cm" style:writing-mode="lr-tb"
style:flow-with-text="false"/>
+ <style:paragraph-properties style:text-autospace="ideograph-alpha"
style:line-break="strict" loext:tab-stop-distance="0cm"
style:font-independent-line-spacing="false">
<style:tab-stops/>
</style:paragraph-properties>
<style:text-properties style:use-window-font-color="true"
loext:opacity="0%" style:font-name="Thorndale AMT" fo:font-size="12pt"
fo:language="en" fo:country="US" style:letter-kerning="true"
style:font-name-asian="Andale Sans UI" style:font-size-asian="10.5pt"
style:language-asian="zxx" style:country-asian="none"
style:font-name-complex="Andale Sans UI" style:font-size-complex="12pt"
style:language-complex="zxx" style:country-complex="none"/>
</style:default-style>
<style:default-style style:family="paragraph">
- <style:paragraph-properties fo:hyphenation-ladder-count="no-limit"
style:text-autospace="ideograph-alpha" style:punctuation-wrap="hanging"
style:line-break="strict" style:tab-stop-distance="1.251cm"
style:writing-mode="lr-tb"/>
- <style:text-properties style:use-window-font-color="true"
loext:opacity="0%" style:font-name="Thorndale AMT" fo:font-size="12pt"
fo:language="en" fo:country="US" style:letter-kerning="true"
style:font-name-asian="Andale Sans UI" style:font-size-asian="10.5pt"
style:language-asian="zxx" style:country-asian="none"
style:font-name-complex="Andale Sans UI" style:font-size-complex="12pt"
style:language-complex="zxx" style:country-complex="none" fo:hyphenate="false"
fo:hyphenation-remain-char-count="2" fo:hyphenation-push-char-count="2"
loext:hyphenation-no-caps="false"/>
+ <style:paragraph-properties fo:hyphenation-ladder-count="no-limit"
fo:hyphenation-keep="auto" loext:hyphenation-keep-type="column"
style:text-autospace="ideograph-alpha" style:punctuation-wrap="hanging"
style:line-break="strict" style:tab-stop-distance="1.251cm"
style:writing-mode="lr-tb"/>
+ <style:text-properties style:use-window-font-color="true"
loext:opacity="0%" style:font-name="Thorndale AMT" fo:font-size="12pt"
fo:language="en" fo:country="US" style:letter-kerning="true"
style:font-name-asian="Andale Sans UI" style:font-size-asian="10.5pt"
style:language-asian="zxx" style:country-asian="none"
style:font-name-complex="Andale Sans UI" style:font-size-complex="12pt"
style:language-complex="zxx" style:country-complex="none" fo:hyphenate="false"
fo:hyphenation-remain-char-count="2" fo:hyphenation-push-char-count="2"
loext:hyphenation-no-caps="false" loext:hyphenation-no-last-word="false"
loext:hyphenation-word-char-count="5" loext:hyphenation-zone="no-limit"/>
</style:default-style>
<style:default-style style:family="table">
<style:table-properties table:border-model="collapsing"/>
@@ -170,7 +192,7 @@
<style:style style:name="Standard" style:family="paragraph"
style:class="text">
<style:text-properties style:font-name="Liberation Sans"
fo:font-family="'Liberation Sans'" style:font-style-name="Regular"
style:font-family-generic="swiss" style:font-pitch="variable"
style:font-size-asian="10.5pt"/>
</style:style>
- <style:style style:name="Heading" style:family="paragraph"
style:parent-style-name="Standard" style:next-style-name="Text_20_body"
style:class="text">
+ <style:style style:name="Heading" style:family="paragraph"
style:parent-style-name="Standard" style:next-style-name="Text_20_body"
style:class="chapter">
<style:paragraph-properties fo:margin-top="0.423cm"
fo:margin-bottom="0.212cm" style:contextual-spacing="false"
fo:keep-with-next="always"/>
<style:text-properties style:font-name="Liberation Serif2"
fo:font-family="'Liberation Serif'" style:font-style-name="Regular"
style:font-family-generic="roman" style:font-pitch="variable"
fo:font-size="16pt" style:font-name-asian="DejaVu Sans"
style:font-family-asian="'DejaVu Sans'"
style:font-family-generic-asian="system" style:font-pitch-asian="variable"
style:font-size-asian="14pt" style:font-name-complex="DejaVu Sans"
style:font-family-complex="'DejaVu Sans'"
style:font-family-generic-complex="system" style:font-pitch-complex="variable"
style:font-size-complex="14pt"/>
</style:style>
@@ -193,7 +215,7 @@
<style:paragraph-properties text:number-lines="false" text:line-number="0"/>
<style:text-properties fo:font-size="11pt" style:font-size-asian="10.5pt"/>
</style:style>
- <style:style style:name="Heading_20_1" style:display-name="Heading 1"
style:family="paragraph" style:parent-style-name="Heading"
style:next-style-name="Text_20_body" style:class="text">
+ <style:style style:name="Heading_20_1" style:display-name="Heading 1"
style:family="paragraph" style:parent-style-name="Heading"
style:next-style-name="Text_20_body" style:class="chapter">
<style:text-properties fo:font-size="16pt" fo:font-weight="bold"
style:font-size-asian="115%" style:font-weight-asian="bold"
style:font-size-complex="115%" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="Table_20_Heading" style:display-name="Table
Heading" style:family="paragraph" style:parent-style-name="Table_20_Contents"
style:class="extra">
@@ -221,7 +243,7 @@
</style:paragraph-properties>
<style:text-properties fo:font-size="9pt" style:font-size-asian="10.5pt"/>
</style:style>
- <style:style style:name="Heading_20_2" style:display-name="Heading 2"
style:family="paragraph" style:parent-style-name="Heading"
style:next-style-name="Text_20_body" style:class="text">
+ <style:style style:name="Heading_20_2" style:display-name="Heading 2"
style:family="paragraph" style:parent-style-name="Heading"
style:next-style-name="Text_20_body" style:class="chapter">
<style:text-properties fo:font-size="14pt" fo:font-style="italic"
fo:font-weight="bold" style:font-size-asian="14pt"
style:font-style-asian="italic" style:font-weight-asian="bold"
style:font-size-complex="14pt" style:font-style-complex="italic"
style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="Footer" style:family="paragraph"
style:parent-style-name="Standard" style:class="extra">
@@ -233,7 +255,7 @@
</style:paragraph-properties>
<style:text-properties fo:font-size="9pt" style:font-size-asian="10.5pt"/>
</style:style>
- <style:style style:name="Heading_20_3" style:display-name="Heading 3"
style:family="paragraph" style:parent-style-name="Heading"
style:next-style-name="Text_20_body" style:class="text">
+ <style:style style:name="Heading_20_3" style:display-name="Heading 3"
style:family="paragraph" style:parent-style-name="Heading"
style:next-style-name="Text_20_body" style:class="chapter">
<style:text-properties fo:font-size="14pt" fo:font-weight="bold"
style:font-size-asian="14pt" style:font-weight-asian="bold"
style:font-size-complex="14pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="Text_20_body_20_indent" style:display-name="Text
body indent" style:family="paragraph" style:parent-style-name="Text_20_body"
style:class="text">
@@ -293,51 +315,67 @@
<text:linenumbering-configuration text:number-lines="false"
text:offset="0.499cm" style:num-format="1" text:number-position="left"
text:increment="5"/>
<style:style style:name="Default_20_Style.1" style:display-name="Default
Style.1" style:family="table-cell">
<style:table-cell-properties fo:border-left="0.51pt solid #000000"
fo:border-top="0.51pt solid #000000" fo:border-bottom="0.51pt solid #000000"/>
+ <style:text-properties/>
</style:style>
<style:style style:name="Default_20_Style.2" style:display-name="Default
Style.2" style:family="table-cell">
<style:table-cell-properties fo:border-left="0.51pt solid #000000"
fo:border-bottom="0.51pt solid #000000"/>
+ <style:text-properties/>
</style:style>
<style:style style:name="Default_20_Style.3" style:display-name="Default
Style.3" style:family="table-cell">
<style:table-cell-properties fo:border-left="0.51pt solid #000000"
fo:border-bottom="0.51pt solid #000000"/>
+ <style:text-properties/>
</style:style>
<style:style style:name="Default_20_Style.4" style:display-name="Default
Style.4" style:family="table-cell">
<style:table-cell-properties fo:border-left="0.51pt solid #000000"
fo:border-right="0.51pt solid #000000" fo:border-bottom="0.51pt solid #000000"/>
+ <style:text-properties/>
</style:style>
<style:style style:name="Default_20_Style.5" style:display-name="Default
Style.5" style:family="table-cell">
<style:table-cell-properties fo:border-left="0.51pt solid #000000"
fo:border-bottom="0.51pt solid #000000"/>
+ <style:text-properties/>
</style:style>
<style:style style:name="Default_20_Style.6" style:display-name="Default
Style.6" style:family="table-cell">
<style:table-cell-properties fo:border-left="0.51pt solid #000000"
fo:border-bottom="0.51pt solid #000000"/>
+ <style:text-properties/>
</style:style>
<style:style style:name="Default_20_Style.7" style:display-name="Default
Style.7" style:family="table-cell">
<style:table-cell-properties fo:border-left="0.51pt solid #000000"
fo:border-bottom="0.51pt solid #000000"/>
+ <style:text-properties/>
</style:style>
<style:style style:name="Default_20_Style.8" style:display-name="Default
Style.8" style:family="table-cell">
<style:table-cell-properties fo:border-left="0.51pt solid #000000"
fo:border-bottom="0.51pt solid #000000"/>
+ <style:text-properties/>
</style:style>
<style:style style:name="Default_20_Style.9" style:display-name="Default
Style.9" style:family="table-cell">
<style:table-cell-properties fo:border-left="0.51pt solid #000000"
fo:border-bottom="0.51pt solid #000000"/>
+ <style:text-properties/>
</style:style>
<style:style style:name="Default_20_Style.10" style:display-name="Default
Style.10" style:family="table-cell">
<style:table-cell-properties fo:border-left="0.51pt solid #000000"
fo:border-right="0.51pt solid #000000" fo:border-bottom="0.51pt solid #000000"/>
+ <style:text-properties/>
</style:style>
<style:style style:name="Default_20_Style.11" style:display-name="Default
Style.11" style:family="table-cell">
<style:table-cell-properties fo:border-left="0.51pt solid #000000"
fo:border-top="0.51pt solid #000000" fo:border-bottom="0.51pt solid #000000"/>
+ <style:text-properties/>
</style:style>
<style:style style:name="Default_20_Style.12" style:display-name="Default
Style.12" style:family="table-cell">
<style:table-cell-properties fo:border-left="0.51pt solid #000000"
fo:border-right="0.51pt solid #000000" fo:border-top="0.51pt solid #000000"
fo:border-bottom="0.51pt solid #000000"/>
+ <style:text-properties/>
</style:style>
<style:style style:name="Default_20_Style.13" style:display-name="Default
Style.13" style:family="table-cell">
<style:table-cell-properties fo:border-left="0.51pt solid #000000"
fo:border-bottom="0.51pt solid #000000"/>
+ <style:text-properties/>
</style:style>
<style:style style:name="Default_20_Style.14" style:display-name="Default
Style.14" style:family="table-cell">
<style:table-cell-properties fo:border-left="0.51pt solid #000000"
fo:border-right="0.51pt solid #000000" fo:border-bottom="0.51pt solid #000000"/>
+ <style:text-properties/>
</style:style>
<style:style style:name="Default_20_Style.15" style:display-name="Default
Style.15" style:family="table-cell">
<style:table-cell-properties fo:border-left="0.51pt solid #000000"
fo:border-top="0.51pt solid #000000" fo:border-bottom="0.51pt solid #000000"/>
+ <style:text-properties/>
</style:style>
<style:style style:name="Default_20_Style.16" style:display-name="Default
Style.16" style:family="table-cell">
<style:table-cell-properties fo:border-left="0.51pt solid #000000"
fo:border-bottom="0.51pt solid #000000"/>
+ <style:text-properties/>
</style:style>
<table:table-template table:name="Default Style"
table:first-row-end-column="row" table:first-row-start-column="row"
table:last-row-end-column="row" table:last-row-start-column="row">
<table:first-row table:style-name="Default_20_Style.1"/>
@@ -357,6 +395,22 @@
<loext:last-row-end-column table:style-name="Default_20_Style.14"/>
<loext:last-row-start-column table:style-name="Default_20_Style.13"/>
</table:table-template>
+ <loext:theme loext:name="Office">
+ <loext:theme-colors loext:name="LibreOffice">
+ <loext:color loext:name="dark1" loext:color="#000000"/>
+ <loext:color loext:name="light1" loext:color="#ffffff"/>
+ <loext:color loext:name="dark2" loext:color="#000000"/>
+ <loext:color loext:name="light2" loext:color="#ffffff"/>
+ <loext:color loext:name="accent1" loext:color="#18a303"/>
+ <loext:color loext:name="accent2" loext:color="#0369a3"/>
+ <loext:color loext:name="accent3" loext:color="#a33e03"/>
+ <loext:color loext:name="accent4" loext:color="#8e03a3"/>
+ <loext:color loext:name="accent5" loext:color="#c99c00"/>
+ <loext:color loext:name="accent6" loext:color="#c9211e"/>
+ <loext:color loext:name="hyperlink" loext:color="#0000ee"/>
+ <loext:color loext:name="followed-hyperlink" loext:color="#551a8b"/>
+ </loext:theme-colors>
+ </loext:theme>
</office:styles>
<office:automatic-styles>
<style:style style:name="Table2" style:family="table">
@@ -382,36 +436,140 @@
<style:style style:name="Table1.A1" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border="none"/>
</style:style>
- <style:style style:name="Table2" style:family="table">
- <style:table-properties style:width="23.94cm" table:align="margins"/>
+ <style:style style:name="Table3" style:family="table">
+ <style:table-properties style:width="23.94cm" fo:break-before="auto"
fo:break-after="auto" table:align="margins" fo:background-color="transparent"
style:shadow="none" fo:keep-with-next="always"
style:may-break-between-rows="true" style:writing-mode="lr-tb"
table:border-model="collapsing">
+ <style:background-image/>
+ </style:table-properties>
+ </style:style>
+ <style:style style:name="Table3.A" style:family="table-column">
+ <style:table-column-properties style:column-width="5.851cm"
style:rel-column-width="16017*"/>
+ </style:style>
+ <style:style style:name="Table3.B" style:family="table-column">
+ <style:table-column-properties style:column-width="3.362cm"
style:rel-column-width="9204*"/>
+ </style:style>
+ <style:style style:name="Table3.E" style:family="table-column">
+ <style:table-column-properties style:column-width="4.001cm"
style:rel-column-width="10952*"/>
+ </style:style>
+ <style:style style:name="Table3.F" style:family="table-column">
+ <style:table-column-properties style:column-width="4.002cm"
style:rel-column-width="10954*"/>
</style:style>
- <style:style style:name="Table2.A" style:family="table-column">
- <style:table-column-properties style:column-width="7.98cm"
style:rel-column-width="21845*"/>
+ <style:style style:name="Table3.1" style:family="table-row">
+ <style:table-row-properties fo:background-color="transparent"
fo:keep-together="auto">
+ <style:background-image/>
+ </style:table-row-properties>
+ </style:style>
+ <style:style style:name="Table3.A1" style:family="table-cell">
+ <style:table-cell-properties style:vertical-align=""
fo:background-color="#b3b3b3" fo:padding="0.097cm" fo:border="0.5pt solid
#000000" style:writing-mode="page">
+ <style:background-image/>
+ </style:table-cell-properties>
</style:style>
- <style:style style:name="Table2.A1" style:family="table-cell">
- <style:table-cell-properties fo:background-color="transparent"
fo:padding="0.097cm" fo:border="none">
+ <style:style style:name="Table3.2" style:family="table-row">
+ <style:table-row-properties fo:background-color="transparent"
fo:keep-together="always">
+ <style:background-image/>
+ </style:table-row-properties>
+ </style:style>
+ <style:style style:name="Table3.A2" style:family="table-cell">
+ <style:table-cell-properties style:vertical-align=""
fo:background-color="transparent" fo:padding="0.097cm" fo:border-left="0.5pt
solid #000000" fo:border-right="none" fo:border-top="none"
fo:border-bottom="0.5pt solid #000000" style:writing-mode="page">
+ <style:background-image/>
+ </style:table-cell-properties>
+ </style:style>
+ <style:style style:name="Table3.F2" style:family="table-cell">
+ <style:table-cell-properties style:vertical-align=""
fo:background-color="transparent" fo:padding="0.097cm" fo:border-left="0.5pt
solid #000000" fo:border-right="0.5pt solid #000000" fo:border-top="none"
fo:border-bottom="0.5pt solid #000000" style:writing-mode="page">
<style:background-image/>
</style:table-cell-properties>
</style:style>
- <style:style style:name="Table1" style:family="table">
- <style:table-properties style:width="23.94cm" table:align="margins"/>
+ <style:style style:name="Table4" style:family="table">
+ <style:table-properties style:width="23.945cm" fo:margin-left="0cm"
fo:margin-right="-0.005cm" fo:break-before="auto" fo:break-after="auto"
table:align="margins" fo:background-color="transparent"
fo:keep-with-next="always" style:may-break-between-rows="true"
style:writing-mode="lr-tb">
+ <style:background-image/>
+ </style:table-properties>
+ </style:style>
+ <style:style style:name="Table4.A" style:family="table-column">
+ <style:table-column-properties style:column-width="2.498cm"
style:rel-column-width="1416*"/>
+ </style:style>
+ <style:style style:name="Table4.B" style:family="table-column">
+ <style:table-column-properties style:column-width="3.358cm"
style:rel-column-width="1904*"/>
+ </style:style>
+ <style:style style:name="Table4.C" style:family="table-column">
+ <style:table-column-properties style:column-width="3.36cm"
style:rel-column-width="1905*"/>
+ </style:style>
+ <style:style style:name="Table4.F" style:family="table-column">
+ <style:table-column-properties style:column-width="4.002cm"
style:rel-column-width="2269*"/>
</style:style>
- <style:style style:name="Table1.A" style:family="table-column">
- <style:table-column-properties style:column-width="11.97cm"
style:rel-column-width="32768*"/>
+ <style:style style:name="Table4.G" style:family="table-column">
+ <style:table-column-properties style:column-width="4.009cm"
style:rel-column-width="2273*"/>
+ </style:style>
+ <style:style style:name="Table4.1" style:family="table-row">
+ <style:table-row-properties fo:keep-together="always"/>
+ </style:style>
+ <style:style style:name="Table4.A1" style:family="table-cell">
+ <style:table-cell-properties fo:background-color="#b3b3b3"
fo:padding="0.097cm" fo:border="0.05pt solid #000000">
+ <style:background-image/>
+ </style:table-cell-properties>
+ </style:style>
+ <style:style style:name="Table4.A2" style:family="table-cell">
+ <style:table-cell-properties fo:background-color="#e6e6e6"
fo:padding="0.097cm" fo:border-left="0.05pt solid #000000"
fo:border-right="none" fo:border-top="0.05pt solid #000000"
fo:border-bottom="0.05pt solid #000000">
+ <style:background-image/>
+ </style:table-cell-properties>
+ </style:style>
+ <style:style style:name="Table4.G2" style:family="table-cell">
+ <style:table-cell-properties fo:background-color="#e6e6e6"
fo:padding="0.097cm" fo:border-left="0.05pt solid #000000"
fo:border-right="0.05pt solid #000000" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000">
+ <style:background-image/>
+ </style:table-cell-properties>
</style:style>
- <style:style style:name="Table1.B" style:family="table-column">
- <style:table-column-properties style:column-width="11.97cm"
style:rel-column-width="32767*"/>
+ <style:style style:name="Table4.A3" style:family="table-cell">
+ <style:table-cell-properties fo:background-color="#cccccc"
fo:padding="0.097cm" fo:border-left="0.05pt solid #000000"
fo:border-right="none" fo:border-top="0.05pt solid #000000"
fo:border-bottom="0.05pt solid #000000">
+ <style:background-image/>
+ </style:table-cell-properties>
+ </style:style>
+ <style:style style:name="Table4.C3" style:family="table-cell">
+ <style:table-cell-properties fo:background-color="#cccccc"
fo:padding="0.097cm" fo:border-left="0.05pt solid #000000"
fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid
#000000">
+ <style:background-image/>
+ </style:table-cell-properties>
+ </style:style>
+ <style:style style:name="Table4.G3" style:family="table-cell">
+ <style:table-cell-properties fo:background-color="#cccccc"
fo:padding="0.097cm" fo:border-left="0.05pt solid #000000"
fo:border-right="0.05pt solid #000000" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000">
+ <style:background-image/>
+ </style:table-cell-properties>
+ </style:style>
+ <style:style style:name="Table4.A4" style:family="table-cell">
+ <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt
solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000"/>
+ </style:style>
+ <style:style style:name="Table4.A5" style:family="table-cell">
+ <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt
solid #000000" fo:border-right="none" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000"/>
</style:style>
- <style:style style:name="Table1.A1" style:family="table-cell">
- <style:table-cell-properties fo:padding="0.097cm" fo:border="none"/>
+ <style:style style:name="Table4.B5" style:family="table-cell">
+ <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt
solid #000000" fo:border-right="none" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000"/>
+ </style:style>
+ <style:style style:name="Table4.C5" style:family="table-cell">
+ <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt
solid #000000" fo:border-right="none" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000"/>
+ </style:style>
+ <style:style style:name="Table4.D5" style:family="table-cell">
+ <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt
solid #000000" fo:border-right="none" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000"/>
+ </style:style>
+ <style:style style:name="Table4.E5" style:family="table-cell">
+ <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt
solid #000000" fo:border-right="none" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000"/>
+ </style:style>
+ <style:style style:name="Table4.F5" style:family="table-cell">
+ <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt
solid #000000" fo:border-right="none" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000"/>
+ </style:style>
+ <style:style style:name="Table4.G5" style:family="table-cell">
+ <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt
solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000"/>
+ </style:style>
+ <style:style style:name="Table4.A6" style:family="table-cell">
+ <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt
solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000"/>
+ </style:style>
+ <style:style style:name="Table4.A7" style:family="table-cell">
+ <style:table-cell-properties fo:background-color="#e6e6e6"
fo:padding="0.097cm" fo:border-left="0.05pt solid #000000"
fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid
#000000">
+ <style:background-image/>
+ </style:table-cell-properties>
</style:style>
<style:style style:name="Lines" style:family="table">
- <style:table-properties style:width="23.94cm" fo:margin-left="0cm"
fo:margin-right="0cm" fo:break-before="auto" fo:break-after="auto"
table:align="margins" fo:background-color="transparent"
fo:keep-with-next="always" style:may-break-between-rows="true"
style:writing-mode="lr-tb">
+ <style:table-properties style:width="23.945cm" fo:margin-left="0cm"
fo:margin-right="-0.005cm" fo:break-before="auto" fo:break-after="auto"
table:align="margins" fo:background-color="transparent"
fo:keep-with-next="always" style:may-break-between-rows="true"
style:writing-mode="lr-tb">
<style:background-image/>
</style:table-properties>
</style:style>
<style:style style:name="Lines.A" style:family="table-column">
- <style:table-column-properties style:column-width="2.499cm"
style:rel-column-width="1417*"/>
+ <style:table-column-properties style:column-width="2.498cm"
style:rel-column-width="1416*"/>
</style:style>
<style:style style:name="Lines.B" style:family="table-column">
<style:table-column-properties style:column-width="3.358cm"
style:rel-column-width="1904*"/>
@@ -422,6 +580,9 @@
<style:style style:name="Lines.F" style:family="table-column">
<style:table-column-properties style:column-width="4.002cm"
style:rel-column-width="2269*"/>
</style:style>
+ <style:style style:name="Lines.G" style:family="table-column">
+ <style:table-column-properties style:column-width="4.009cm"
style:rel-column-width="2273*"/>
+ </style:style>
<style:style style:name="Lines.1" style:family="table-row">
<style:table-row-properties fo:keep-together="always"/>
</style:style>
@@ -431,108 +592,65 @@
</style:table-cell-properties>
</style:style>
<style:style style:name="Lines.A2" style:family="table-cell">
- <style:table-cell-properties fo:background-color="#b3b3b3"
fo:padding="0.097cm" fo:border-left="0.05pt solid #000000"
fo:border-right="0.05pt solid #000000" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000">
+ <style:table-cell-properties fo:background-color="#e6e6e6"
fo:padding="0.097cm" fo:border-left="0.05pt solid #000000"
fo:border-right="none" fo:border-top="0.05pt solid #000000"
fo:border-bottom="0.05pt solid #000000">
+ <style:background-image/>
+ </style:table-cell-properties>
+ </style:style>
+ <style:style style:name="Lines.G2" style:family="table-cell">
+ <style:table-cell-properties fo:background-color="#e6e6e6"
fo:padding="0.097cm" fo:border-left="0.05pt solid #000000"
fo:border-right="0.05pt solid #000000" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000">
<style:background-image/>
</style:table-cell-properties>
</style:style>
<style:style style:name="Lines.A3" style:family="table-cell">
- <style:table-cell-properties fo:background-color="#e6e6e6"
fo:padding="0.097cm" fo:border-left="0.05pt solid #000000"
fo:border-right="none" fo:border-top="0.05pt solid #000000"
fo:border-bottom="0.05pt solid #000000">
+ <style:table-cell-properties fo:background-color="#cccccc"
fo:padding="0.097cm" fo:border-left="0.05pt solid #000000"
fo:border-right="none" fo:border-top="0.05pt solid #000000"
fo:border-bottom="0.05pt solid #000000">
+ <style:background-image/>
+ </style:table-cell-properties>
+ </style:style>
+ <style:style style:name="Lines.C3" style:family="table-cell">
+ <style:table-cell-properties fo:background-color="#cccccc"
fo:padding="0.097cm" fo:border-left="0.05pt solid #000000"
fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid
#000000">
<style:background-image/>
</style:table-cell-properties>
</style:style>
<style:style style:name="Lines.G3" style:family="table-cell">
- <style:table-cell-properties fo:background-color="#e6e6e6"
fo:padding="0.097cm" fo:border-left="0.05pt solid #000000"
fo:border-right="0.05pt solid #000000" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000">
- <style:background-image/>
- </style:table-cell-properties>
- </style:style>
- <style:style style:name="Lines.A4" style:family="table-cell">
- <style:table-cell-properties fo:background-color="#cccccc"
fo:padding="0.097cm" fo:border-left="0.05pt solid #000000"
fo:border-right="none" fo:border-top="0.05pt solid #000000"
fo:border-bottom="0.05pt solid #000000">
- <style:background-image/>
- </style:table-cell-properties>
- </style:style>
- <style:style style:name="Lines.C4" style:family="table-cell">
- <style:table-cell-properties fo:background-color="#cccccc"
fo:padding="0.097cm" fo:border-left="0.05pt solid #000000"
fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid
#000000">
- <style:background-image/>
- </style:table-cell-properties>
- </style:style>
- <style:style style:name="Lines.G4" style:family="table-cell">
<style:table-cell-properties fo:background-color="#cccccc"
fo:padding="0.097cm" fo:border-left="0.05pt solid #000000"
fo:border-right="0.05pt solid #000000" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000">
<style:background-image/>
</style:table-cell-properties>
</style:style>
+ <style:style style:name="Lines.A4" style:family="table-cell">
+ <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt
solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000"/>
+ </style:style>
<style:style style:name="Lines.A5" style:family="table-cell">
+ <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt
solid #000000" fo:border-right="none" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000"/>
+ </style:style>
+ <style:style style:name="Lines.B5" style:family="table-cell">
+ <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt
solid #000000" fo:border-right="none" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000"/>
+ </style:style>
+ <style:style style:name="Lines.C5" style:family="table-cell">
+ <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt
solid #000000" fo:border-right="none" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000"/>
+ </style:style>
+ <style:style style:name="Lines.D5" style:family="table-cell">
+ <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt
solid #000000" fo:border-right="none" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000"/>
+ </style:style>
+ <style:style style:name="Lines.E5" style:family="table-cell">
+ <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt
solid #000000" fo:border-right="none" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000"/>
+ </style:style>
+ <style:style style:name="Lines.F5" style:family="table-cell">
+ <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt
solid #000000" fo:border-right="none" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000"/>
+ </style:style>
+ <style:style style:name="Lines.G5" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt
solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000"/>
</style:style>
<style:style style:name="Lines.A6" style:family="table-cell">
- <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt
solid #000000" fo:border-right="none" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000"/>
- </style:style>
- <style:style style:name="Lines.B6" style:family="table-cell">
- <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt
solid #000000" fo:border-right="none" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000"/>
- </style:style>
- <style:style style:name="Lines.C6" style:family="table-cell">
- <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt
solid #000000" fo:border-right="none" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000"/>
- </style:style>
- <style:style style:name="Lines.D6" style:family="table-cell">
- <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt
solid #000000" fo:border-right="none" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000"/>
- </style:style>
- <style:style style:name="Lines.E6" style:family="table-cell">
- <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt
solid #000000" fo:border-right="none" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000"/>
- </style:style>
- <style:style style:name="Lines.F6" style:family="table-cell">
- <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt
solid #000000" fo:border-right="none" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000"/>
- </style:style>
- <style:style style:name="Lines.G6" style:family="table-cell">
<style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt
solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000"/>
</style:style>
<style:style style:name="Lines.A7" style:family="table-cell">
- <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt
solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000"/>
- </style:style>
- <style:style style:name="Lines.A8" style:family="table-cell">
<style:table-cell-properties fo:background-color="#e6e6e6"
fo:padding="0.097cm" fo:border-left="0.05pt solid #000000"
fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid
#000000">
<style:background-image/>
</style:table-cell-properties>
</style:style>
- <style:style style:name="Table3" style:family="table"
style:master-page-name="">
- <style:table-properties style:width="23.94cm" style:page-number="auto"
fo:break-before="auto" fo:break-after="auto" table:align="margins"
fo:background-color="transparent" style:shadow="none"
fo:keep-with-next="always" style:may-break-between-rows="true"
style:writing-mode="lr-tb">
- <style:background-image/>
- </style:table-properties>
- </style:style>
- <style:style style:name="Table3.A" style:family="table-column">
- <style:table-column-properties style:column-width="5.851cm"
style:rel-column-width="3317*"/>
- </style:style>
- <style:style style:name="Table3.B" style:family="table-column">
- <style:table-column-properties style:column-width="3.362cm"
style:rel-column-width="1906*"/>
- </style:style>
- <style:style style:name="Table3.E" style:family="table-column">
- <style:table-column-properties style:column-width="4.001cm"
style:rel-column-width="2268*"/>
- </style:style>
- <style:style style:name="Table3.1" style:family="table-row">
- <style:table-row-properties fo:background-color="transparent"
fo:keep-together="always">
- <style:background-image/>
- </style:table-row-properties>
- </style:style>
- <style:style style:name="Table3.A1" style:family="table-cell">
- <style:table-cell-properties style:vertical-align=""
fo:background-color="#b3b3b3" fo:padding="0.097cm" fo:border="0.05pt solid
#000000" style:writing-mode="lr-tb">
- <style:background-image/>
- </style:table-cell-properties>
- </style:style>
- <style:style style:name="Table3.A2" style:family="table-cell">
- <style:table-cell-properties style:vertical-align=""
fo:background-color="#b3b3b3" fo:padding="0.097cm" fo:border-left="0.05pt solid
#000000" fo:border-right="0.05pt solid #000000" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000" style:writing-mode="lr-tb">
- <style:background-image/>
- </style:table-cell-properties>
- </style:style>
- <style:style style:name="Table3.A3" style:family="table-cell">
- <style:table-cell-properties style:vertical-align=""
fo:background-color="#cccccc" fo:padding="0.097cm" fo:border-left="0.05pt solid
#000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt
solid #000000" style:writing-mode="lr-tb">
- <style:background-image/>
- </style:table-cell-properties>
- </style:style>
- <style:style style:name="Table3.F3" style:family="table-cell">
- <style:table-cell-properties style:vertical-align=""
fo:background-color="#cccccc" fo:padding="0.097cm" fo:border-left="0.05pt solid
#000000" fo:border-right="0.05pt solid #000000" fo:border-top="none"
fo:border-bottom="0.05pt solid #000000" style:writing-mode="lr-tb">
- <style:background-image/>
- </style:table-cell-properties>
- </style:style>
<style:style style:name="P1" style:family="paragraph"
style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="center"
style:justify-single-word="false"/>
+ <style:text-properties style:text-underline-style="none"
officeooo:paragraph-rsid="003e177a"/>
</style:style>
<style:style style:name="P2" style:family="paragraph"
style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="end"
style:justify-single-word="false"/>
@@ -540,154 +658,124 @@
<style:style style:name="P3" style:family="paragraph"
style:parent-style-name="Footer">
<style:paragraph-properties fo:text-align="end"
style:justify-single-word="false"/>
</style:style>
- <style:style style:name="P4" style:family="paragraph"
style:parent-style-name="Table_20_Contents">
- <style:paragraph-properties fo:text-align="end"
style:justify-single-word="false" fo:keep-together="always"
fo:keep-with-next="always"/>
- </style:style>
- <style:style style:name="P5" style:family="paragraph"
style:parent-style-name="Table_20_Heading">
- <style:paragraph-properties fo:keep-together="always" style:shadow="none"
fo:keep-with-next="always"/>
+ <style:style style:name="P4" style:family="paragraph"
style:parent-style-name="Heading_20_1">
+ <style:paragraph-properties fo:text-align="center"
style:justify-single-word="false"/>
+ <style:text-properties style:text-underline-style="solid"
style:text-underline-width="auto" style:text-underline-color="font-color"/>
</style:style>
- <style:style style:name="P6" style:family="paragraph"
style:parent-style-name="Table_20_Heading">
- <style:paragraph-properties fo:keep-together="always"
fo:keep-with-next="always"/>
+ <style:style style:name="P5" style:family="paragraph"
style:parent-style-name="Text_20_body">
+ <style:text-properties officeooo:paragraph-rsid="003a045d"/>
</style:style>
- <style:style style:name="P7" style:family="paragraph"
style:parent-style-name="Table_20_Contents">
- <style:paragraph-properties fo:text-align="start"
style:justify-single-word="false" fo:keep-together="always" style:shadow="none"
fo:keep-with-next="always"/>
- <style:text-properties fo:font-size="12pt" fo:font-weight="bold"
style:font-size-asian="12pt" style:font-weight-asian="bold"
style:font-size-complex="12pt" style:font-weight-complex="bold"/>
+ <style:style style:name="P6" style:family="paragraph"
style:parent-style-name="Text_20_body">
+ <style:text-properties officeooo:rsid="003955ec"
officeooo:paragraph-rsid="003a045d"/>
+ </style:style>
+ <style:style style:name="P7" style:family="paragraph"
style:parent-style-name="Text_20_body">
+ <style:text-properties style:text-underline-style="none"/>
</style:style>
<style:style style:name="P8" style:family="paragraph"
style:parent-style-name="Text_20_body">
- <style:paragraph-properties fo:text-align="start"
style:justify-single-word="false"/>
- <style:text-properties fo:font-size="12pt"
style:text-underline-style="none" fo:font-weight="normal"
style:font-size-asian="10.5pt" style:font-weight-asian="normal"
style:font-size-complex="12pt" style:font-weight-complex="normal"/>
+ <style:paragraph-properties fo:text-align="start"
style:justify-single-word="false" fo:keep-together="always"
fo:break-before="page" fo:keep-with-next="always"/>
+ <style:text-properties style:text-underline-style="none"
officeooo:paragraph-rsid="003e177a"/>
</style:style>
- <style:style style:name="P9" style:family="paragraph"
style:parent-style-name="Table_20_Heading">
- <style:paragraph-properties fo:text-align="center"
style:justify-single-word="false" fo:keep-together="always"
fo:keep-with-next="always"/>
- <style:text-properties style:font-size-asian="10.5pt"/>
+ <style:style style:name="P9" style:family="paragraph"
style:parent-style-name="Text_20_body">
+ <style:paragraph-properties fo:text-align="start"
style:justify-single-word="false" fo:keep-together="always"
fo:keep-with-next="always"/>
+ <style:text-properties style:text-underline-style="none"
officeooo:paragraph-rsid="003e177a"/>
</style:style>
<style:style style:name="P10" style:family="paragraph"
style:parent-style-name="Table_20_Contents">
- <style:paragraph-properties fo:text-align="center"
style:justify-single-word="false" fo:keep-together="always"
fo:keep-with-next="always"/>
- <style:text-properties style:font-size-asian="10.5pt"/>
+ <style:paragraph-properties fo:text-align="start"
style:justify-single-word="false" fo:keep-together="always" style:shadow="none"
fo:keep-with-next="always"/>
+ <style:text-properties style:font-name="Liberation Sans"
fo:font-size="12pt" fo:font-weight="bold" officeooo:paragraph-rsid="003e77c3"
style:font-size-asian="12pt" style:font-weight-asian="bold"
style:font-size-complex="12pt" style:font-weight-complex="bold"/>
</style:style>
- <style:style style:name="P11" style:family="paragraph"
style:parent-style-name="Table_20_Contents">
- <style:paragraph-properties fo:text-align="center"
style:justify-single-word="false" fo:keep-together="always"
fo:keep-with-next="always"/>
- <style:text-properties officeooo:paragraph-rsid="002aca3c"
style:font-size-asian="10.5pt"/>
+ <style:style style:name="P11" style:family="paragraph"
style:parent-style-name="Table_20_Heading">
+ <style:paragraph-properties fo:text-align="start"
style:justify-single-word="false"/>
+ <style:text-properties fo:color="#000000" loext:opacity="100%"
style:text-outline="false" style:text-line-through-style="none"
style:text-line-through-type="none" style:font-name="Liberation Serif"
fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none"
style:text-underline-style="none" fo:font-weight="normal"
style:font-size-asian="12pt" style:font-style-asian="normal"
style:font-weight-asian="normal" style:font-size-complex="12pt"
style:font-style-complex="normal" style:font-weight-complex="normal"
style:text-overline-style="none" style:text-overline-color="font-color"/>
</style:style>
<style:style style:name="P12" style:family="paragraph"
style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start"
style:justify-single-word="false" fo:keep-together="always"
fo:keep-with-next="always"/>
+ <style:text-properties fo:color="#000000" loext:opacity="100%"
style:text-outline="false" style:text-line-through-style="none"
style:text-line-through-type="none" style:font-name="Liberation Serif"
fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none"
style:text-underline-style="none" fo:font-weight="normal"
officeooo:paragraph-rsid="002aca3c" style:font-size-asian="12pt"
style:font-style-asian="normal" style:font-weight-asian="normal"
style:font-size-complex="12pt" style:font-style-complex="normal"
style:font-weight-complex="normal" style:text-overline-style="none"
style:text-overline-color="font-color"/>
</style:style>
<style:style style:name="P13" style:family="paragraph"
style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start"
style:justify-single-word="false" fo:keep-together="always"
fo:keep-with-next="always"/>
- <style:text-properties fo:font-size="11pt" style:font-size-asian="11pt"
style:font-size-complex="11pt"/>
+ <style:text-properties fo:color="#000000" loext:opacity="100%"
style:text-outline="false" style:text-line-through-style="none"
style:text-line-through-type="none" style:font-name="Liberation Serif"
fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none"
style:text-underline-style="none" fo:font-weight="normal"
style:font-size-asian="12pt" style:font-style-asian="normal"
style:font-weight-asian="normal" style:font-size-complex="12pt"
style:font-style-complex="normal" style:font-weight-complex="normal"
style:text-overline-style="none" style:text-overline-color="font-color"/>
</style:style>
- <style:style style:name="P14" style:family="paragraph"
style:parent-style-name="Table_20_Contents">
- <style:paragraph-properties fo:text-align="end"
style:justify-single-word="false" fo:keep-together="always"
fo:keep-with-next="always"/>
- <style:text-properties fo:font-size="11pt" style:font-size-asian="11pt"
style:font-size-complex="11pt"/>
+ <style:style style:name="P14" style:family="paragraph"
style:parent-style-name="Text_20_body">
+ <style:paragraph-properties fo:text-align="start"
style:justify-single-word="false"/>
+ <style:text-properties style:text-underline-style="none"
officeooo:paragraph-rsid="003e177a"/>
</style:style>
- <style:style style:name="P15" style:family="paragraph"
style:parent-style-name="Text_20_body">
- <style:paragraph-properties fo:text-align="start"
style:justify-single-word="false" fo:keep-together="always"
fo:keep-with-next="always"/>
- <style:text-properties fo:font-size="11pt"
style:text-underline-style="none" style:font-size-asian="11pt"
style:font-size-complex="11pt"/>
+ <style:style style:name="P15" style:family="paragraph"
style:parent-style-name="Table_20_Heading">
+ <style:paragraph-properties fo:keep-together="always"
fo:keep-with-next="always"/>
+ <style:text-properties officeooo:paragraph-rsid="003e77c3"/>
</style:style>
- <style:style style:name="P16" style:family="paragraph"
style:parent-style-name="Text_20_body">
- <style:paragraph-properties fo:text-align="start"
style:justify-single-word="false" fo:keep-together="always"
fo:keep-with-next="always"/>
- <style:text-properties style:text-underline-style="none"/>
+ <style:style style:name="P16" style:family="paragraph"
style:parent-style-name="Table_20_Heading">
+ <style:text-properties officeooo:paragraph-rsid="003e77c3"/>
</style:style>
- <style:style style:name="P17" style:family="paragraph"
style:parent-style-name="Text_20_body">
+ <style:style style:name="P17" style:family="paragraph"
style:parent-style-name="Table_20_Contents">
+ <style:paragraph-properties fo:text-align="end"
style:justify-single-word="false" fo:keep-together="always"
fo:keep-with-next="always"/>
+ <style:text-properties officeooo:paragraph-rsid="003e77c3"/>
+ </style:style>
+ <style:style style:name="P18" style:family="paragraph"
style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start"
style:justify-single-word="false" fo:keep-together="always"
fo:keep-with-next="always"/>
- <style:text-properties style:text-underline-style="none"
officeooo:paragraph-rsid="00251ac8"/>
- </style:style>
- <style:style style:name="P18" style:family="paragraph"
style:parent-style-name="Text_20_body">
- <style:paragraph-properties fo:text-align="start"
style:justify-single-word="false"/>
- <style:text-properties style:text-underline-style="none"/>
+ <style:text-properties officeooo:paragraph-rsid="003e77c3"/>
</style:style>
<style:style style:name="P19" style:family="paragraph"
style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start"
style:justify-single-word="false" fo:keep-together="always"
fo:keep-with-next="always"/>
- <style:text-properties style:text-underline-style="none"
officeooo:paragraph-rsid="00251ac8" fo:background-color="transparent"/>
+ <style:text-properties style:text-underline-style="none"
officeooo:paragraph-rsid="003e77c3"/>
</style:style>
- <style:style style:name="P20" style:family="paragraph"
style:parent-style-name="Text_20_body">
- <style:text-properties style:text-underline-style="none"/>
+ <style:style style:name="P20" style:family="paragraph"
style:parent-style-name="Table_20_Contents">
+ <style:paragraph-properties fo:text-align="center"
style:justify-single-word="false"/>
+ <style:text-properties officeooo:paragraph-rsid="003e77c3"/>
</style:style>
- <style:style style:name="P21" style:family="paragraph"
style:parent-style-name="Text_20_body">
- <style:paragraph-properties fo:break-before="page"/>
- <style:text-properties style:text-underline-style="none"/>
+ <style:style style:name="P21" style:family="paragraph"
style:parent-style-name="Table_20_Contents">
+ <style:paragraph-properties fo:text-align="end"
style:justify-single-word="false"/>
+ <style:text-properties officeooo:paragraph-rsid="003e77c3"/>
</style:style>
- <style:style style:name="P22" style:family="paragraph"
style:parent-style-name="Text_20_body">
- <style:text-properties officeooo:paragraph-rsid="0037c304"/>
+ <style:style style:name="P22" style:family="paragraph"
style:parent-style-name="Table_20_Contents">
+ <style:text-properties officeooo:paragraph-rsid="003e77c3"/>
</style:style>
<style:style style:name="P23" style:family="paragraph"
style:parent-style-name="Text_20_body">
- <style:text-properties officeooo:paragraph-rsid="003a045d"/>
+ <style:paragraph-properties fo:text-align="start"
style:justify-single-word="false"/>
+ <style:text-properties style:text-underline-style="none"
officeooo:paragraph-rsid="003e77c3"/>
</style:style>
- <style:style style:name="P24" style:family="paragraph"
style:parent-style-name="Text_20_body">
- <style:text-properties officeooo:rsid="003955ec"
officeooo:paragraph-rsid="003a045d"/>
+ <style:style style:name="P24" style:family="paragraph"
style:parent-style-name="Table_20_Contents">
+ <style:paragraph-properties fo:text-align="start"
style:justify-single-word="false" fo:keep-together="always" style:shadow="none"
fo:keep-with-next="always"/>
+ <style:text-properties fo:font-size="12pt" fo:font-weight="bold"
style:font-size-asian="12pt" style:font-weight-asian="bold"
style:font-size-complex="12pt" style:font-weight-complex="bold"/>
</style:style>
- <style:style style:name="P25" style:family="paragraph"
style:parent-style-name="Heading_20_1">
- <style:paragraph-properties fo:text-align="center"
style:justify-single-word="false"/>
- <style:text-properties style:text-underline-style="solid"
style:text-underline-width="auto" style:text-underline-color="font-color"/>
+ <style:style style:name="P25" style:family="paragraph"
style:parent-style-name="Table_20_Heading">
+ <style:paragraph-properties fo:keep-together="always"
fo:keep-with-next="always"/>
</style:style>
<style:style style:name="P26" style:family="paragraph"
style:parent-style-name="Table_20_Contents">
- <style:paragraph-properties fo:text-align="center"
style:justify-single-word="false"/>
- <style:text-properties style:font-name="Liberation Serif1"
fo:font-weight="bold" style:font-size-asian="10.5pt"
style:font-weight-asian="bold" style:font-weight-complex="bold"/>
+ <style:paragraph-properties fo:text-align="end"
style:justify-single-word="false" fo:keep-together="always"
fo:keep-with-next="always"/>
</style:style>
- <style:style style:name="P27" style:family="paragraph"
style:parent-style-name="Header">
- <style:paragraph-properties fo:text-align="center"
style:justify-single-word="false"/>
- <style:text-properties style:text-underline-style="none"
officeooo:paragraph-rsid="003e177a"/>
+ <style:style style:name="P27" style:family="paragraph"
style:parent-style-name="Table_20_Contents">
+ <style:paragraph-properties fo:text-align="start"
style:justify-single-word="false" fo:keep-together="always"
fo:keep-with-next="always"/>
</style:style>
- <style:style style:name="P28" style:family="paragraph"
style:parent-style-name="Table_20_Contents">
+ <style:style style:name="P28" style:family="paragraph"
style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start"
style:justify-single-word="false" fo:keep-together="always"
fo:keep-with-next="always"/>
+ <style:text-properties style:text-underline-style="none"/>
</style:style>
<style:style style:name="P29" style:family="paragraph"
style:parent-style-name="Table_20_Contents">
- <style:paragraph-properties fo:text-align="start"
style:justify-single-word="false"/>
- <style:text-properties fo:color="#000000" loext:opacity="100%"
style:text-outline="false" style:text-line-through-style="none"
style:text-line-through-type="none" style:font-name="Liberation Serif"
fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none"
style:text-underline-style="none" fo:font-weight="normal"
style:font-size-asian="12pt" style:font-style-asian="normal"
style:font-weight-asian="normal" style:font-size-complex="12pt"
style:font-style-complex="normal" style:font-weight-complex="normal"
style:text-overline-style="none" style:text-overline-color="font-color"/>
- </style:style>
- <style:style style:name="P30" style:family="paragraph"
style:parent-style-name="Table_20_Contents">
- <style:paragraph-properties fo:text-align="center"
style:justify-single-word="false" fo:keep-together="always"
fo:keep-with-next="always"/>
- <style:text-properties officeooo:paragraph-rsid="002aca3c"
style:font-size-asian="10.5pt"/>
- </style:style>
- <style:style style:name="P31" style:family="paragraph"
style:parent-style-name="Table_20_Contents">
- <style:paragraph-properties fo:text-align="center"
style:justify-single-word="false" fo:keep-together="always"
fo:keep-with-next="always"/>
- <style:text-properties style:font-size-asian="10.5pt"/>
- </style:style>
- <style:style style:name="P32" style:family="paragraph"
style:parent-style-name="Table_20_Contents">
- <style:paragraph-properties fo:text-align="end"
style:justify-single-word="false"/>
- </style:style>
- <style:style style:name="P33" style:family="paragraph"
style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center"
style:justify-single-word="false"/>
</style:style>
- <style:style style:name="P34" style:family="paragraph"
style:parent-style-name="Table_20_Heading">
- <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold"
style:font-weight-complex="bold"/>
- </style:style>
- <style:style style:name="P35" style:family="paragraph"
style:parent-style-name="Table_20_Heading">
- <style:paragraph-properties fo:text-align="start"
style:justify-single-word="false"/>
- <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold"
style:font-weight-complex="bold"/>
+ <style:style style:name="P30" style:family="paragraph"
style:parent-style-name="Table_20_Contents">
+ <style:paragraph-properties fo:text-align="end"
style:justify-single-word="false"/>
</style:style>
- <style:style style:name="P36" style:family="paragraph"
style:parent-style-name="Text_20_body">
- <style:paragraph-properties fo:text-align="start"
style:justify-single-word="false" fo:keep-together="always"
fo:break-before="page" fo:keep-with-next="always"/>
- <style:text-properties style:text-underline-style="none"
officeooo:paragraph-rsid="003e177a"/>
+ <style:style style:name="P31" style:family="paragraph"
style:parent-style-name="Text_20_body">
+ <style:paragraph-properties fo:text-align="start"
style:justify-single-word="false"/>
+ <style:text-properties style:text-underline-style="none"/>
</style:style>
- <style:style style:name="P37" style:family="paragraph"
style:parent-style-name="Text_20_body">
- <style:paragraph-properties fo:text-align="start"
style:justify-single-word="false" fo:keep-together="always"
fo:keep-with-next="always"/>
- <style:text-properties style:text-underline-style="none"
officeooo:paragraph-rsid="003e177a"/>
- </style:style>
- <style:style style:name="P38" style:family="paragraph"
style:parent-style-name="Text_20_body">
+ <style:style style:name="P32" style:family="paragraph"
style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start"
style:justify-single-word="false" fo:keep-together="always"
fo:keep-with-next="always"/>
<style:text-properties fo:font-size="12pt"
style:text-underline-style="none" fo:font-weight="normal"
officeooo:paragraph-rsid="003e177a" fo:background-color="transparent"
style:font-size-asian="10.5pt" style:font-weight-asian="normal"
style:font-size-complex="12pt" style:font-weight-complex="normal"/>
</style:style>
- <style:style style:name="T1" style:family="text">
- <style:text-properties officeooo:rsid="0037c304"/>
+ <style:style style:name="P33" style:family="paragraph"
style:parent-style-name="Text_20_body">
+ <style:paragraph-properties fo:text-align="start"
style:justify-single-word="false"/>
+ <style:text-properties fo:font-size="12pt"
style:text-underline-style="none" fo:font-weight="normal"
style:font-size-asian="10.5pt" style:font-weight-asian="normal"
style:font-size-complex="12pt" style:font-weight-complex="normal"/>
</style:style>
- <style:style style:name="T2" style:family="text">
- <style:text-properties officeooo:rsid="0039b016"/>
- </style:style>
- <style:style style:name="T3" style:family="text">
+ <style:style style:name="T1" style:family="text">
<style:text-properties officeooo:rsid="003e177a"/>
</style:style>
- <style:style style:name="T4" style:family="text">
- <style:text-properties style:text-underline-style="solid"
style:text-underline-width="auto" style:text-underline-color="font-color"/>
- </style:style>
- <style:style style:name="T5" style:family="text">
- <style:text-properties style:text-underline-style="solid"
style:text-underline-width="auto" style:text-underline-color="font-color"
officeooo:rsid="003e177a"/>
+ <style:style style:name="T2" style:family="text">
+ <style:text-properties officeooo:rsid="0037c304"/>
</style:style>
- <style:style style:name="T6" style:family="text">
- <style:text-properties style:text-underline-style="none"/>
- </style:style>
- <style:style style:name="T7" style:family="text">
- <style:text-properties style:text-underline-style="none"
officeooo:rsid="003e177a"/>
+ <style:style style:name="T3" style:family="text">
+ <style:text-properties officeooo:rsid="0039b016"/>
</style:style>
<style:page-layout style:name="pm1">
<style:page-layout-properties fo:page-width="27.94cm"
fo:page-height="21.59cm" style:num-format="1"
style:print-orientation="landscape" fo:margin-top="2cm" fo:margin-bottom="2cm"
fo:margin-left="2cm" fo:margin-right="2cm" style:writing-mode="lr-tb"
style:layout-grid-color="#c0c0c0" style:layout-grid-lines="44"
style:layout-grid-base-height="0.55cm" style:layout-grid-ruby-height="0cm"
style:layout-grid-mode="none" style:layout-grid-ruby-below="false"
style:layout-grid-print="true" style:layout-grid-display="true"
style:footnote-max-height="0cm" loext:margin-gutter="0cm">
@@ -709,12 +797,12 @@
<style:header>
<table:table table:name="Table2" table:style-name="Table2">
<table:table-column table:style-name="Table2.A"
table:number-columns-repeated="3"/>
- <table:table-row table:style-name="TableLine94368948362784">
+ <table:table-row>
<table:table-cell table:style-name="Table2.A1"
office:value-type="string">
<text:p text:style-name="Header">Company: <text:placeholder
text:placeholder-type="text"><company.rec_name></text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Table2.A1"
office:value-type="string">
- <text:p text:style-name="P27">General Ledger<text:placeholder
text:placeholder-type="text"><if test="not
context.get('posted')"></text:placeholder> <text:span
text:style-name="T3">Draft</text:span><text:span
text:style-name="T3"><text:placeholder
text:placeholder-type="text"></if></text:placeholder></text:span></text:p>
+ <text:p text:style-name="P1">General Ledger<text:placeholder
text:placeholder-type="text"><if test="not
context.get('posted')"></text:placeholder> <text:span
text:style-name="T1">Draft</text:span><text:span
text:style-name="T1"><text:placeholder
text:placeholder-type="text"></if></text:placeholder></text:span></text:p>
</table:table-cell>
<table:table-cell table:style-name="Table2.A1"
office:value-type="string">
<text:p text:style-name="P2">Print Date: <text:placeholder
text:placeholder-type="text"><format_date(datetime.date.today(),
user.language)></text:placeholder><text:s/>at <text:placeholder
text:placeholder-type="text"><datetime.datetime.now().strftime('%H:%M:%S')></text:placeholder></text:p>
@@ -726,12 +814,12 @@
<table:table table:name="Table1" table:style-name="Table1">
<table:table-column table:style-name="Table1.A"/>
<table:table-column table:style-name="Table1.B"/>
- <table:table-row table:style-name="TableLine94368949141280">
+ <table:table-row>
<table:table-cell table:style-name="Table1.A1"
office:value-type="string">
<text:p text:style-name="Footer">User: <text:placeholder
text:placeholder-type="text"><user.rec_name></text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Table1.A1"
office:value-type="string">
- <text:p text:style-name="P3"><text:page-number
text:select-page="current">1</text:page-number>/<text:page-count>3</text:page-count></text:p>
+ <text:p text:style-name="P3"><text:page-number
text:select-page="current">5</text:page-number>/<text:page-count>5</text:page-count></text:p>
</table:table-cell>
</table:table-row>
</table:table>
@@ -748,76 +836,68 @@
<text:sequence-decl text:display-outline-level="0" text:name="Drawing"/>
<text:sequence-decl text:display-outline-level="0" text:name="Figure"/>
</text:sequence-decls>
- <text:p text:style-name="P25">General Ledger<text:placeholder
text:placeholder-type="text"><if test="not
context.get('posted')"></text:placeholder> <text:span
text:style-name="T3">Draft</text:span><text:span
text:style-name="T3"><text:placeholder
text:placeholder-type="text"></if></text:placeholder></text:span></text:p>
- <text:p text:style-name="P23"><text:span text:style-name="T1">Fiscal Year:
</text:span><text:placeholder
text:placeholder-type="text"><fiscalyear.rec_name></text:placeholder></text:p>
- <text:p text:style-name="P23"><text:placeholder
text:placeholder-type="text"><if test="start_period or
end_period"></text:placeholder></text:p>
- <text:p text:style-name="P23"><text:span text:style-name="T1">From
Period</text:span>: <text:placeholder
text:placeholder-type="text"><start_period.name if start_period else
''></text:placeholder><text:s/><text:span
text:style-name="T2">To</text:span> <text:placeholder
text:placeholder-type="text"><end_period.name if end_period else
''></text:placeholder></text:p>
- <text:p text:style-name="P23"><text:placeholder
text:placeholder-type="text"></if></text:placeholder></text:p>
- <text:p text:style-name="P23"><text:placeholder
text:placeholder-type="text"><if test="from_date or
to_date"></text:placeholder></text:p>
- <text:p text:style-name="P24">From Date: <text:placeholder
text:placeholder-type="text"><format_date(from_date, user.language) if
from_date else ''></text:placeholder><text:s/>To <text:placeholder
text:placeholder-type="text"><format_date(to_date, user.language) if to_date
else ''></text:placeholder></text:p>
- <text:p text:style-name="P23"><text:placeholder
text:placeholder-type="text"></if></text:placeholder></text:p>
- <text:p text:style-name="P20"><text:placeholder
text:placeholder-type="text"><for each="account in
accounts"></text:placeholder></text:p>
- <text:p text:style-name="P36"><text:placeholder
text:placeholder-type="text"><choose
test=""></text:placeholder></text:p>
- <text:p text:style-name="P37"><text:placeholder
text:placeholder-type="text"><when
test="account.general_ledger_balance"></text:placeholder></text:p>
+ <text:p text:style-name="P4">General Ledger<text:placeholder
text:placeholder-type="text"><if test="not
context.get('posted')"></text:placeholder> <text:span
text:style-name="T1">Draft</text:span><text:span
text:style-name="T1"><text:placeholder
text:placeholder-type="text"></if></text:placeholder></text:span></text:p>
+ <text:p text:style-name="P5"><text:span text:style-name="T2">Fiscal Year:
</text:span><text:placeholder
text:placeholder-type="text"><fiscalyear.rec_name></text:placeholder></text:p>
+ <text:p text:style-name="P5"><text:placeholder
text:placeholder-type="text"><if test="start_period or
end_period"></text:placeholder></text:p>
+ <text:p text:style-name="P5"><text:span text:style-name="T2">From
Period</text:span>: <text:placeholder
text:placeholder-type="text"><start_period.name if start_period else
''></text:placeholder><text:s/><text:span
text:style-name="T3">To</text:span> <text:placeholder
text:placeholder-type="text"><end_period.name if end_period else
''></text:placeholder></text:p>
+ <text:p text:style-name="P5"><text:placeholder
text:placeholder-type="text"></if></text:placeholder></text:p>
+ <text:p text:style-name="P5"><text:placeholder
text:placeholder-type="text"><if test="from_date or
to_date"></text:placeholder></text:p>
+ <text:p text:style-name="P6">From Date: <text:placeholder
text:placeholder-type="text"><format_date(from_date, user.language) if
from_date else ''></text:placeholder><text:s/>To <text:placeholder
text:placeholder-type="text"><format_date(to_date, user.language) if to_date
else ''></text:placeholder></text:p>
+ <text:p text:style-name="P5"><text:placeholder
text:placeholder-type="text"></if></text:placeholder></text:p>
+ <text:p text:style-name="P7"><text:placeholder
text:placeholder-type="text"><for each="account in
accounts"></text:placeholder></text:p>
+ <text:p text:style-name="P8"><text:placeholder
text:placeholder-type="text"><choose
test=""></text:placeholder></text:p>
+ <text:p text:style-name="P9"><text:placeholder
text:placeholder-type="text"><when
test="account.general_ledger_balance"></text:placeholder></text:p>
<table:table table:name="Table3" table:style-name="Table3"
table:template-name="Default Style">
<table:table-column table:style-name="Table3.A"/>
<table:table-column table:style-name="Table3.B"
table:number-columns-repeated="3"/>
- <table:table-column table:style-name="Table3.E"
table:number-columns-repeated="2"/>
- <table:table-header-rows>
- <table:table-row table:style-name="Table3.1">
- <table:table-cell table:style-name="Table3.A1"
table:number-columns-spanned="6" office:value-type="string">
- <text:p text:style-name="P34">Name</text:p>
- </table:table-cell>
- <table:covered-table-cell/>
- <table:covered-table-cell/>
- <table:covered-table-cell/>
- <table:covered-table-cell/>
- <table:covered-table-cell/>
- </table:table-row>
- <table:table-row table:style-name="Table3.1">
- <table:table-cell table:style-name="Table3.A2"
table:number-columns-spanned="6" office:value-type="string">
- <text:p text:style-name="P35"><text:placeholder
text:placeholder-type="text"><account.rec_name></text:placeholder></text:p>
- </table:table-cell>
- <table:covered-table-cell/>
- <table:covered-table-cell/>
- <table:covered-table-cell/>
- <table:covered-table-cell/>
- <table:covered-table-cell/>
- </table:table-row>
- </table:table-header-rows>
+ <table:table-column table:style-name="Table3.E"/>
+ <table:table-column table:style-name="Table3.F"/>
<table:table-row table:style-name="Table3.1">
- <table:table-cell table:style-name="Table3.A3" office:value-type="string">
- <text:p text:style-name="Table_20_Heading">Balance</text:p>
+ <table:table-cell table:style-name="Table3.A1"
table:number-columns-spanned="6" office:value-type="string">
+ <text:p text:style-name="P10"><text:placeholder
text:placeholder-type="text"><account.rec_name></text:placeholder></text:p>
</table:table-cell>
- <table:table-cell table:style-name="Table3.A3" office:value-type="string">
- <text:p text:style-name="P11"/>
- </table:table-cell>
- <table:table-cell table:style-name="Table3.A3" office:value-type="string">
- <text:p text:style-name="P11"/>
+ <table:covered-table-cell/>
+ <table:covered-table-cell/>
+ <table:covered-table-cell/>
+ <table:covered-table-cell/>
+ <table:covered-table-cell/>
+ </table:table-row>
+ <table:table-row table:style-name="Table3.2">
+ <table:table-cell table:style-name="Table3.A2" office:value-type="string">
+ <text:p text:style-name="P11">Balance</text:p>
</table:table-cell>
- <table:table-cell table:style-name="Table3.A3" office:value-type="string">
- <text:p text:style-name="P11"><text:placeholder
text:placeholder-type="text"><format_currency(account.end_balance,
user.language, company.currency)></text:placeholder></text:p>
+ <table:table-cell table:style-name="Table3.A2" office:value-type="string">
+ <text:p text:style-name="P12"/>
+ </table:table-cell>
+ <table:table-cell table:style-name="Table3.A2" office:value-type="string">
+ <text:p text:style-name="P12"/>
</table:table-cell>
- <table:table-cell table:style-name="Table3.A3" office:value-type="string">
- <text:p text:style-name="P10"/>
+ <table:table-cell table:style-name="Table3.A2" office:value-type="string">
+ <text:p text:style-name="P12"><text:placeholder
text:placeholder-type="text"><format_currency(account.end_balance,
user.language, company.currency)></text:placeholder></text:p>
</table:table-cell>
- <table:table-cell table:style-name="Table3.F3" office:value-type="string">
- <text:p text:style-name="P10"/>
+ <table:table-cell table:style-name="Table3.A2" office:value-type="string">
+ <text:p text:style-name="P13"/>
+ </table:table-cell>
+ <table:table-cell table:style-name="Table3.F2" office:value-type="string">
+ <text:p text:style-name="P13"/>
</table:table-cell>
</table:table-row>
</table:table>
- <text:p text:style-name="P37"><text:placeholder
text:placeholder-type="text"></when></text:placeholder></text:p>
- <text:p text:style-name="P37"><text:placeholder
text:placeholder-type="text"><otherwise
test=""></text:placeholder></text:p>
- <table:table table:name="Lines" table:style-name="Lines">
- <table:table-column table:style-name="Lines.A"/>
- <table:table-column table:style-name="Lines.B"/>
- <table:table-column table:style-name="Lines.C"/>
- <table:table-column table:style-name="Lines.B"
table:number-columns-repeated="2"/>
- <table:table-column table:style-name="Lines.F"
table:number-columns-repeated="2"/>
+ <text:p text:style-name="P9"><text:placeholder
text:placeholder-type="text"></when></text:placeholder></text:p>
+ <text:p text:style-name="P14"><text:placeholder
text:placeholder-type="text"><when
test="account.party_required"></text:placeholder></text:p>
+ <text:p text:style-name="Text_20_body"><text:placeholder
text:placeholder-type="text"><for each="party in
account.parties"></text:placeholder></text:p>
+ <table:table table:name="Table4" table:style-name="Table4">
+ <table:table-column table:style-name="Table4.A"/>
+ <table:table-column table:style-name="Table4.B"/>
+ <table:table-column table:style-name="Table4.C"/>
+ <table:table-column table:style-name="Table4.B"
table:number-columns-repeated="2"/>
+ <table:table-column table:style-name="Table4.F"/>
+ <table:table-column table:style-name="Table4.G"/>
<table:table-header-rows>
- <table:table-row table:style-name="Lines.1">
- <table:table-cell table:style-name="Lines.A1"
table:number-columns-spanned="7" office:value-type="string">
- <text:p text:style-name="P5">Name</text:p>
+ <text:soft-page-break/>
+ <table:table-row table:style-name="Table4.1">
+ <table:table-cell table:style-name="Table4.A1"
table:number-columns-spanned="7" office:value-type="string">
+ <text:p text:style-name="P10"><text:placeholder
text:placeholder-type="text"><party.rec_name></text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@@ -826,9 +906,153 @@
<table:covered-table-cell/>
<table:covered-table-cell/>
</table:table-row>
+ <table:table-row table:style-name="Table4.1">
+ <table:table-cell table:style-name="Table4.A2"
office:value-type="string">
+ <text:p text:style-name="P15">Date</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Table4.A2"
office:value-type="string">
+ <text:p text:style-name="P15">Move</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Table4.A2"
office:value-type="string">
+ <text:p text:style-name="P16">Debit</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Table4.A2"
office:value-type="string">
+ <text:p text:style-name="P15">Credit</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Table4.A2"
office:value-type="string">
+ <text:p text:style-name="P15">Balance</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Table4.A2"
office:value-type="string">
+ <text:p text:style-name="P15">Description</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Table4.G2"
office:value-type="string">
+ <text:p text:style-name="P15">Origin</text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row table:style-name="Table4.1">
+ <table:table-cell table:style-name="Table4.A3"
table:number-columns-spanned="2" office:value-type="string">
+ <text:p text:style-name="P15">Balance</text:p>
+ </table:table-cell>
+ <table:covered-table-cell/>
+ <table:table-cell table:style-name="Table4.C3"
office:value-type="string">
+ <text:p text:style-name="P17"/>
+ </table:table-cell>
+ <table:table-cell table:style-name="Table4.C3"
office:value-type="string">
+ <text:p text:style-name="P17"/>
+ </table:table-cell>
+ <table:table-cell table:style-name="Table4.C3"
office:value-type="string">
+ <text:p text:style-name="P17"><text:placeholder
text:placeholder-type="text"><format_currency(party.start_balance,
user.language, company.currency)></text:placeholder></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Table4.C3"
office:value-type="string">
+ <text:p text:style-name="P18"/>
+ </table:table-cell>
+ <table:table-cell table:style-name="Table4.G3"
office:value-type="string">
+ <text:p text:style-name="P18"/>
+ </table:table-cell>
+ </table:table-row>
+ </table:table-header-rows>
+ <table:table-row table:style-name="Table4.1">
+ <table:table-cell table:style-name="Table4.A4"
table:number-columns-spanned="7" office:value-type="string">
+ <text:p text:style-name="P19"><text:placeholder
text:placeholder-type="text"><for each="line in
party.lines"></text:placeholder></text:p>
+ </table:table-cell>
+ <table:covered-table-cell/>
+ <table:covered-table-cell/>
+ <table:covered-table-cell/>
+ <table:covered-table-cell/>
+ <table:covered-table-cell/>
+ <table:covered-table-cell/>
+ </table:table-row>
+ <table:table-row table:style-name="Table4.1">
+ <table:table-cell table:style-name="Table4.A5" office:value-type="string">
+ <text:p text:style-name="P20"><text:placeholder
text:placeholder-type="text"><format_date(line.date,
user.language)></text:placeholder></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Table4.B5" office:value-type="string">
+ <text:p text:style-name="P21"><text:placeholder
text:placeholder-type="text"><line.move.rec_name></text:placeholder></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Table4.C5" office:value-type="string">
+ <text:p text:style-name="P21"><text:placeholder
text:placeholder-type="text"><format_currency(line.debit, user.language,
company.currency)></text:placeholder></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Table4.D5" office:value-type="string">
+ <text:p text:style-name="P21"><text:placeholder
text:placeholder-type="text"><format_currency(line.credit, user.language,
company.currency)></text:placeholder></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Table4.E5" office:value-type="string">
+ <text:p text:style-name="P21"><text:placeholder
text:placeholder-type="text"><format_currency(line.balance, user.language,
company.currency)></text:placeholder></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Table4.F5" office:value-type="string">
+ <text:p text:style-name="P22"><text:placeholder
text:placeholder-type="text"><line.description or
''></text:placeholder></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Table4.G5" office:value-type="string">
+ <text:p text:style-name="P22"><text:placeholder
text:placeholder-type="text"><getattr(line.origin, 'rec_name',
'')></text:placeholder></text:p>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row table:style-name="Table4.1">
+ <table:table-cell table:style-name="Table4.A6"
table:number-columns-spanned="7" office:value-type="string">
+ <text:p text:style-name="P23"><text:placeholder
text:placeholder-type="text"></for></text:placeholder></text:p>
+ </table:table-cell>
+ <table:covered-table-cell/>
+ <table:covered-table-cell/>
+ <table:covered-table-cell/>
+ <table:covered-table-cell/>
+ <table:covered-table-cell/>
+ <table:covered-table-cell/>
+ </table:table-row>
+ <table:table-row table:style-name="Table4.1">
+ <table:table-cell table:style-name="Table4.A7"
table:number-columns-spanned="2" office:value-type="string">
+ <text:p text:style-name="P15">Total</text:p>
+ </table:table-cell>
+ <table:covered-table-cell/>
+ <table:table-cell table:style-name="Table4.A7" office:value-type="string">
+ <text:p text:style-name="P17"><text:placeholder
text:placeholder-type="text"><format_currency(party.end_debit -
party.start_debit, user.language,
company.currency)></text:placeholder></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Table4.A7" office:value-type="string">
+ <text:p text:style-name="P17"><text:placeholder
text:placeholder-type="text"><format_currency(party.end_credit -
party.start_credit, user.language,
company.currency)></text:placeholder></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Table4.A7" office:value-type="string">
+ <text:p text:style-name="P17"><text:placeholder
text:placeholder-type="text"><format_currency((party.end_debit -
party.end_credit) - (party.start_debit - party.start_credit), user.language,
company.currency)></text:placeholder></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Table4.A7" office:value-type="string">
+ <text:p text:style-name="P18"/>
+ </table:table-cell>
+ <table:table-cell table:style-name="Table4.G2" office:value-type="string">
+ <text:p text:style-name="P18"/>
+ </table:table-cell>
+ </table:table-row>
+ <table:table-row table:style-name="Table4.1">
+ <table:table-cell table:style-name="Table4.C3"
table:number-columns-spanned="2" office:value-type="string">
+ <text:p text:style-name="P15">Balance</text:p>
+ </table:table-cell>
+ <table:covered-table-cell/>
+ <table:table-cell table:style-name="Table4.C3" office:value-type="string">
+ <text:p text:style-name="P17"/>
+ </table:table-cell>
+ <table:table-cell table:style-name="Table4.C3" office:value-type="string">
+ <text:p text:style-name="P17"/>
+ </table:table-cell>
+ <table:table-cell table:style-name="Table4.C3" office:value-type="string">
+ <text:p text:style-name="P17"><text:placeholder
text:placeholder-type="text"><format_currency(party.end_balance,
user.language, company.currency)></text:placeholder></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Table4.C3" office:value-type="string">
+ <text:p text:style-name="P18"/>
+ </table:table-cell>
+ <table:table-cell table:style-name="Table4.G3" office:value-type="string">
+ <text:p text:style-name="P18"/>
+ </table:table-cell>
+ </table:table-row>
+ </table:table>
+ <text:p text:style-name="P14"><text:placeholder
text:placeholder-type="text"></for></text:placeholder></text:p>
+ <text:p text:style-name="P14"><text:soft-page-break/><text:placeholder
text:placeholder-type="text"></when></text:placeholder></text:p>
+ <text:p text:style-name="P9"><text:placeholder
text:placeholder-type="text"><otherwise
test=""></text:placeholder></text:p>
+ <table:table table:name="Lines" table:style-name="Lines">
+ <table:table-column table:style-name="Lines.A"/>
+ <table:table-column table:style-name="Lines.B"/>
+ <table:table-column table:style-name="Lines.C"/>
+ <table:table-column table:style-name="Lines.B"
table:number-columns-repeated="2"/>
+ <table:table-column table:style-name="Lines.F"/>
+ <table:table-column table:style-name="Lines.G"/>
+ <table:table-header-rows>
<table:table-row table:style-name="Lines.1">
- <table:table-cell table:style-name="Lines.A2"
table:number-columns-spanned="7" office:value-type="string">
- <text:p text:style-name="P7"><text:placeholder
text:placeholder-type="text"><account.rec_name></text:placeholder></text:p>
+ <table:table-cell table:style-name="Lines.A1"
table:number-columns-spanned="7" office:value-type="string">
+ <text:p text:style-name="P24"><text:placeholder
text:placeholder-type="text"><account.rec_name></text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@@ -838,53 +1062,53 @@
<table:covered-table-cell/>
</table:table-row>
<table:table-row table:style-name="Lines.1">
- <table:table-cell table:style-name="Lines.A3" office:value-type="string">
- <text:p text:style-name="P6">Date</text:p>
+ <table:table-cell table:style-name="Lines.A2" office:value-type="string">
+ <text:p text:style-name="P25">Date</text:p>
</table:table-cell>
- <table:table-cell table:style-name="Lines.A3" office:value-type="string">
- <text:p text:style-name="P6">Move</text:p>
+ <table:table-cell table:style-name="Lines.A2" office:value-type="string">
+ <text:p text:style-name="P25">Move</text:p>
</table:table-cell>
- <table:table-cell table:style-name="Lines.A3" office:value-type="string">
+ <table:table-cell table:style-name="Lines.A2" office:value-type="string">
<text:p text:style-name="Table_20_Heading">Debit</text:p>
</table:table-cell>
- <table:table-cell table:style-name="Lines.A3" office:value-type="string">
- <text:p text:style-name="P6">Credit</text:p>
+ <table:table-cell table:style-name="Lines.A2" office:value-type="string">
+ <text:p text:style-name="P25">Credit</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Lines.A2" office:value-type="string">
+ <text:p text:style-name="P25">Balance</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Lines.A2" office:value-type="string">
+ <text:p text:style-name="P25">Description</text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Lines.G2" office:value-type="string">
+ <text:p text:style-name="P25">Origin</text:p>
</table:table-cell>
- <table:table-cell table:style-name="Lines.A3" office:value-type="string">
- <text:p text:style-name="P6">Balance</text:p>
+ </table:table-row>
+ <table:table-row table:style-name="Lines.1">
+ <table:table-cell table:style-name="Lines.A3"
table:number-columns-spanned="2" office:value-type="string">
+ <text:p text:style-name="P25">Balance</text:p>
+ </table:table-cell>
+ <table:covered-table-cell/>
+ <table:table-cell table:style-name="Lines.C3" office:value-type="string">
+ <text:p text:style-name="P26"/>
</table:table-cell>
- <table:table-cell table:style-name="Lines.A3" office:value-type="string">
- <text:p text:style-name="P6">Description</text:p>
+ <table:table-cell table:style-name="Lines.C3" office:value-type="string">
+ <text:p text:style-name="P26"/>
+ </table:table-cell>
+ <table:table-cell table:style-name="Lines.C3" office:value-type="string">
+ <text:p text:style-name="P26"><text:placeholder
text:placeholder-type="text"><format_currency(account.start_balance,
user.language, company.currency)></text:placeholder></text:p>
+ </table:table-cell>
+ <table:table-cell table:style-name="Lines.C3" office:value-type="string">
+ <text:p text:style-name="P27"/>
</table:table-cell>
<table:table-cell table:style-name="Lines.G3" office:value-type="string">
- <text:p text:style-name="P6">Origin</text:p>
+ <text:p text:style-name="P27"/>
</table:table-cell>
</table:table-row>
</table:table-header-rows>
<table:table-row table:style-name="Lines.1">
- <table:table-cell table:style-name="Lines.A4"
table:number-columns-spanned="2" office:value-type="string">
- <text:p text:style-name="P6">Balance</text:p>
- </table:table-cell>
- <table:covered-table-cell/>
- <table:table-cell table:style-name="Lines.C4" office:value-type="string">
- <text:p text:style-name="P4"/>
- </table:table-cell>
- <table:table-cell table:style-name="Lines.C4" office:value-type="string">
- <text:p text:style-name="P4"/>
- </table:table-cell>
- <table:table-cell table:style-name="Lines.C4" office:value-type="string">
- <text:p text:style-name="P4"><text:placeholder
text:placeholder-type="text"><format_currency(account.start_balance,
user.language, company.currency)></text:placeholder></text:p>
- </table:table-cell>
- <table:table-cell table:style-name="Lines.C4" office:value-type="string">
- <text:p text:style-name="P12"/>
- </table:table-cell>
- <table:table-cell table:style-name="Lines.G4" office:value-type="string">
- <text:p text:style-name="P12"/>
- </table:table-cell>
- </table:table-row>
- <table:table-row table:style-name="Lines.1">
- <table:table-cell table:style-name="Lines.A5"
table:number-columns-spanned="7" office:value-type="string">
- <text:p text:style-name="P16"><text:placeholder
text:placeholder-type="text"><for each="line in
account.lines"></text:placeholder></text:p>
+ <table:table-cell table:style-name="Lines.A4"
table:number-columns-spanned="7" office:value-type="string">
+ <text:p text:style-name="P28"><text:placeholder
text:placeholder-type="text"><for each="line in
account.lines"></text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@@ -894,32 +1118,31 @@
<table:covered-table-cell/>
</table:table-row>
<table:table-row table:style-name="Lines.1">
- <table:table-cell table:style-name="Lines.A6" office:value-type="string">
- <text:p text:style-name="P33"><text:placeholder
text:placeholder-type="text"><format_date(line.date,
user.language)></text:placeholder></text:p>
+ <table:table-cell table:style-name="Lines.A5" office:value-type="string">
+ <text:p text:style-name="P29"><text:placeholder
text:placeholder-type="text"><format_date(line.date,
user.language)></text:placeholder></text:p>
</table:table-cell>
- <table:table-cell table:style-name="Lines.B6" office:value-type="string">
- <text:p text:style-name="P32"><text:placeholder
text:placeholder-type="text"><line.move.rec_name></text:placeholder></text:p>
+ <table:table-cell table:style-name="Lines.B5" office:value-type="string">
+ <text:p text:style-name="P30"><text:placeholder
text:placeholder-type="text"><line.move.rec_name></text:placeholder></text:p>
</table:table-cell>
- <table:table-cell table:style-name="Lines.C6" office:value-type="string">
- <text:p text:style-name="P32"><text:placeholder
text:placeholder-type="text"><format_currency(line.debit, user.language,
company.currency)></text:placeholder></text:p>
+ <table:table-cell table:style-name="Lines.C5" office:value-type="string">
+ <text:p text:style-name="P30"><text:placeholder
text:placeholder-type="text"><format_currency(line.debit, user.language,
company.currency)></text:placeholder></text:p>
</table:table-cell>
- <table:table-cell table:style-name="Lines.D6" office:value-type="string">
- <text:p text:style-name="P32"><text:placeholder
text:placeholder-type="text"><format_currency(line.credit, user.language,
company.currency)></text:placeholder></text:p>
+ <table:table-cell table:style-name="Lines.D5" office:value-type="string">
+ <text:p text:style-name="P30"><text:placeholder
text:placeholder-type="text"><format_currency(line.credit, user.language,
company.currency)></text:placeholder></text:p>
</table:table-cell>
- <table:table-cell table:style-name="Lines.E6" office:value-type="string">
- <text:p text:style-name="P32"><text:placeholder
text:placeholder-type="text"><format_currency(line.balance, user.language,
company.currency)></text:placeholder></text:p>
+ <table:table-cell table:style-name="Lines.E5" office:value-type="string">
+ <text:p text:style-name="P30"><text:placeholder
text:placeholder-type="text"><format_currency(line.balance, user.language,
company.currency)></text:placeholder></text:p>
</table:table-cell>
- <table:table-cell table:style-name="Lines.F6" office:value-type="string">
+ <table:table-cell table:style-name="Lines.F5" office:value-type="string">
<text:p text:style-name="Table_20_Contents"><text:placeholder
text:placeholder-type="text"><line.description or
''></text:placeholder></text:p>
</table:table-cell>
- <table:table-cell table:style-name="Lines.G6" office:value-type="string">
+ <table:table-cell table:style-name="Lines.G5" office:value-type="string">
<text:p text:style-name="Table_20_Contents"><text:placeholder
text:placeholder-type="text"><getattr(line.origin, 'rec_name',
'')></text:placeholder></text:p>
</table:table-cell>
</table:table-row>
- <text:soft-page-break/>
<table:table-row table:style-name="Lines.1">
- <table:table-cell table:style-name="Lines.A7"
table:number-columns-spanned="7" office:value-type="string">
- <text:p text:style-name="P18"><text:placeholder
text:placeholder-type="text"></for></text:placeholder></text:p>
+ <table:table-cell table:style-name="Lines.A6"
table:number-columns-spanned="7" office:value-type="string">
+ <text:p text:style-name="P31"><text:placeholder
text:placeholder-type="text"></for></text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@@ -929,51 +1152,52 @@
<table:covered-table-cell/>
</table:table-row>
<table:table-row table:style-name="Lines.1">
- <table:table-cell table:style-name="Lines.A8"
table:number-columns-spanned="2" office:value-type="string">
- <text:p text:style-name="P6">Total</text:p>
+ <table:table-cell table:style-name="Lines.A7"
table:number-columns-spanned="2" office:value-type="string">
+ <text:p text:style-name="P25">Total</text:p>
</table:table-cell>
<table:covered-table-cell/>
- <table:table-cell table:style-name="Lines.A8" office:value-type="string">
- <text:p text:style-name="P4"><text:placeholder
text:placeholder-type="text"><format_currency(account.end_debit -
account.start_debit, user.language,
company.currency)></text:placeholder></text:p>
+ <table:table-cell table:style-name="Lines.A7" office:value-type="string">
+ <text:p text:style-name="P26"><text:placeholder
text:placeholder-type="text"><format_currency(account.end_debit -
account.start_debit, user.language,
company.currency)></text:placeholder></text:p>
</table:table-cell>
- <table:table-cell table:style-name="Lines.A8" office:value-type="string">
- <text:p text:style-name="P4"><text:placeholder
text:placeholder-type="text"><format_currency(account.end_credit -
account.start_credit, user.language,
company.currency)></text:placeholder></text:p>
+ <table:table-cell table:style-name="Lines.A7" office:value-type="string">
+ <text:p text:style-name="P26"><text:placeholder
text:placeholder-type="text"><format_currency(account.end_credit -
account.start_credit, user.language,
company.currency)></text:placeholder></text:p>
</table:table-cell>
- <table:table-cell table:style-name="Lines.A8" office:value-type="string">
- <text:p text:style-name="P4"><text:placeholder
text:placeholder-type="text"><format_currency((account.end_debit -
account.end_credit) - (account.start_debit - account.start_credit),
user.language, company.currency)></text:placeholder></text:p>
+ <table:table-cell table:style-name="Lines.A7" office:value-type="string">
+ <text:p text:style-name="P26"><text:placeholder
text:placeholder-type="text"><format_currency((account.end_debit -
account.end_credit) - (account.start_debit - account.start_credit),
user.language, company.currency)></text:placeholder></text:p>
</table:table-cell>
- <table:table-cell table:style-name="Lines.A8" office:value-type="string">
- <text:p text:style-name="P12"/>
+ <table:table-cell table:style-name="Lines.A7" office:value-type="string">
+ <text:p text:style-name="P27"/>
</table:table-cell>
- <table:table-cell table:style-name="Lines.G3" office:value-type="string">
- <text:p text:style-name="P12"/>
+ <table:table-cell table:style-name="Lines.G2" office:value-type="string">
+ <text:p text:style-name="P27"/>
</table:table-cell>
</table:table-row>
+ <text:soft-page-break/>
<table:table-row table:style-name="Lines.1">
- <table:table-cell table:style-name="Lines.C4"
table:number-columns-spanned="2" office:value-type="string">
- <text:p text:style-name="P6">Balance</text:p>
+ <table:table-cell table:style-name="Lines.C3"
table:number-columns-spanned="2" office:value-type="string">
+ <text:p text:style-name="P25">Balance</text:p>
</table:table-cell>
<table:covered-table-cell/>
- <table:table-cell table:style-name="Lines.C4" office:value-type="string">
- <text:p text:style-name="P4"/>
+ <table:table-cell table:style-name="Lines.C3" office:value-type="string">
+ <text:p text:style-name="P26"/>
</table:table-cell>
- <table:table-cell table:style-name="Lines.C4" office:value-type="string">
- <text:p text:style-name="P4"/>
+ <table:table-cell table:style-name="Lines.C3" office:value-type="string">
+ <text:p text:style-name="P26"/>
</table:table-cell>
- <table:table-cell table:style-name="Lines.C4" office:value-type="string">
- <text:p text:style-name="P4"><text:placeholder
text:placeholder-type="text"><format_currency(account.end_balance,
user.language, company.currency)></text:placeholder></text:p>
+ <table:table-cell table:style-name="Lines.C3" office:value-type="string">
+ <text:p text:style-name="P26"><text:placeholder
text:placeholder-type="text"><format_currency(account.end_balance,
user.language, company.currency)></text:placeholder></text:p>
</table:table-cell>
- <table:table-cell table:style-name="Lines.C4" office:value-type="string">
- <text:p text:style-name="P12"/>
+ <table:table-cell table:style-name="Lines.C3" office:value-type="string">
+ <text:p text:style-name="P27"/>
</table:table-cell>
- <table:table-cell table:style-name="Lines.G4" office:value-type="string">
- <text:p text:style-name="P12"/>
+ <table:table-cell table:style-name="Lines.G3" office:value-type="string">
+ <text:p text:style-name="P27"/>
</table:table-cell>
</table:table-row>
</table:table>
- <text:p text:style-name="P38"><text:placeholder
text:placeholder-type="text"></otherwise></text:placeholder></text:p>
- <text:p text:style-name="P38"><text:placeholder
text:placeholder-type="text"></choose></text:placeholder></text:p>
- <text:p text:style-name="P8"><text:placeholder
text:placeholder-type="text"></for></text:placeholder></text:p>
+ <text:p text:style-name="P32"><text:placeholder
text:placeholder-type="text"></otherwise></text:placeholder></text:p>
+ <text:p text:style-name="P32"><text:placeholder
text:placeholder-type="text"></choose></text:placeholder></text:p>
+ <text:p text:style-name="P33"><text:placeholder
text:placeholder-type="text"></for></text:placeholder></text:p>
</office:text>
</office:body>
-</office:document>
+</office:document>
\ No newline at end of file