add grouped by products and location

This commit is contained in:
wilson gomez 2021-10-09 09:58:39 -05:00
parent 3af6a7fa14
commit 6431defca0
4 changed files with 140 additions and 117 deletions

View File

@ -0,0 +1 @@
,psk,psk-Modern,09.10.2021 09:55,file:///home/psk/.config/libreoffice/4;

View File

@ -177,6 +177,7 @@ class ProductionDetailedStart(ModelView):
'Production Detailed Start'
__name__ = 'production.detailed.start'
company = fields.Many2One('company.company', 'Company', required=True)
grouped = fields.Boolean('Grouped', help='Grouped by products')
start_date = fields.Date('Start Date')
end_date = fields.Date('End Date', required=True)
@ -205,24 +206,13 @@ class ProductionDetailed(Wizard):
])
print_ = StateReport('production.detailed_report')
def get_ids(self):
Production = Pool().get('production')
productions = Production.search_read([
('company', '=', self.start.company.id),
('effective_date', '>=', self.start.start_date),
('effective_date', '<=', self.start.end_date),
])
if productions:
return [k['id'] for k in productions]
else:
return []
def do_print_(self, action):
data = {
'ids': self.get_ids(),
'ids': [],
'company': self.start.company.id,
'start_date': self.start.start_date,
'end_date': self.start.end_date,
'grouped': self.start.grouped,
}
return action, data
@ -237,4 +227,29 @@ class ProductionDetailedReport(Report):
@classmethod
def get_context(cls, records, header, data):
report_context = super().get_context(records, header, data)
Production = Pool().get('production')
domain = [
('company', '=', data['company']),
('effective_date', '>=', data['start_date']),
('effective_date', '<=', data['end_date']),
]
fields_names = ['warehouse.name', 'location.name', 'effective_date',
'number', 'uom.name', 'quantity', 'cost', 'product.name', 'product.id']
productions = Production.search_read(domain, fields_names=fields_names)
if not data['grouped']:
records = productions
else:
records = {}
for p in productions:
key = str(p['product.']['id']) + p['location.']['name']
try:
records[key]['quantity'] += p['quantity']
records[key]['cost'] += p['cost']
except:
records[key] = p
records[key]['effective_date'] = None
records[key]['numero'] = None
records = records.values() if records else []
report_context['records'] = records
report_context['Decimal'] = Decimal
return report_context

View File

@ -1,20 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rpt="http://openoffice.org/2005/report" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:xforms="http://www.w3.org/2002/xforms" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.spreadsheet">
<office:meta><meta:creation-date>2012-09-27T06:56:34</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/7.1.1.2$Linux_X86_64 LibreOffice_project/fe0b08f4af1bacafe4c7ecc87ce55bb426164676</meta:generator><meta:document-statistic meta:table-count="1" meta:cell-count="25" meta:object-count="0"/></office:meta>
<office:meta><meta:creation-date>2012-09-27T06:56:34</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/7.1.1.2$Linux_X86_64 LibreOffice_project/fe0b08f4af1bacafe4c7ecc87ce55bb426164676</meta:generator><meta:document-statistic meta:table-count="1" meta:cell-count="27" meta:object-count="0"/></office:meta>
<office:settings>
<config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="VisibleAreaTop" config:type="int">0</config:config-item>
<config:config-item config:name="VisibleAreaLeft" config:type="int">0</config:config-item>
<config:config-item config:name="VisibleAreaWidth" config:type="int">20459</config:config-item>
<config:config-item config:name="VisibleAreaWidth" config:type="int">22849</config:config-item>
<config:config-item config:name="VisibleAreaHeight" config:type="int">4467</config:config-item>
<config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view1</config:config-item>
<config:config-item-map-named config:name="Tables">
<config:config-item-map-entry config:name="Hoja1">
<config:config-item config:name="CursorPositionX" config:type="int">5</config:config-item>
<config:config-item config:name="CursorPositionY" config:type="int">16</config:config-item>
<config:config-item config:name="CursorPositionX" config:type="int">7</config:config-item>
<config:config-item config:name="CursorPositionY" config:type="int">13</config:config-item>
<config:config-item config:name="HorizontalSplitMode" config:type="short">0</config:config-item>
<config:config-item config:name="VerticalSplitMode" config:type="short">0</config:config-item>
<config:config-item config:name="HorizontalSplitPosition" config:type="int">0</config:config-item>
@ -126,8 +126,8 @@
<office:font-face-decls>
<style:font-face style:name="Arial" svg:font-family="Arial" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="DejaVu Sans Condensed" svg:font-family="&apos;DejaVu Sans Condensed&apos;" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="Liberation Sans1" svg:font-family="&apos;Liberation Sans&apos;" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="Liberation Sans" svg:font-family="&apos;Liberation Sans&apos;" style:font-adornments="Normal" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="Liberation Sans" svg:font-family="&apos;Liberation Sans&apos;" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="Liberation Sans1" svg:font-family="&apos;Liberation Sans&apos;" style:font-adornments="Normal" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="DejaVu Sans" svg:font-family="&apos;DejaVu Sans&apos;" style:font-family-generic="system" style:font-pitch="variable"/>
<style:font-face style:name="Droid Sans Fallback" svg:font-family="&apos;Droid Sans Fallback&apos;" style:font-family-generic="system" style:font-pitch="variable"/>
<style:font-face style:name="Lohit Devanagari" svg:font-family="&apos;Lohit Devanagari&apos;" style:font-family-generic="system" style:font-pitch="variable"/>
@ -136,57 +136,57 @@
</office:font-face-decls>
<office:styles>
<style:default-style style:family="table-cell">
<style:paragraph-properties style:tab-stop-distance="1.25cm"/>
<style:paragraph-properties style:tab-stop-distance="0.4921in"/>
<style:text-properties style:font-name="Arial" fo:language="es" fo:country="CO" style:font-name-asian="DejaVu Sans" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="DejaVu Sans" style:language-complex="hi" style:country-complex="IN"/>
</style:default-style>
<number:number-style style:name="N0">
<number:number number:min-integer-digits="1"/>
</number:number-style>
<number:currency-style style:name="N105P0" style:volatile="true">
<number:currency-style style:name="N122P0" style:volatile="true">
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
</number:currency-style>
<number:currency-style style:name="N105">
<number:currency-style style:name="N122">
<style:text-properties fo:color="#ff0000"/>
<number:text>(</number:text>
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
<number:text>)</number:text>
<style:map style:condition="value()&gt;=0" style:apply-style-name="N105P0"/>
<style:map style:condition="value()&gt;=0" style:apply-style-name="N122P0"/>
</number:currency-style>
<number:currency-style style:name="N107P0" style:volatile="true">
<number:currency-style style:name="N124P0" style:volatile="true">
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
<number:text> </number:text>
<number:currency-symbol number:language="fr" number:country="BE">€</number:currency-symbol>
</number:currency-style>
<number:currency-style style:name="N107">
<number:currency-style style:name="N124">
<style:text-properties fo:color="#ff0000"/>
<number:text>-</number:text>
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
<number:text> </number:text>
<number:currency-symbol number:language="fr" number:country="BE">€</number:currency-symbol>
<style:map style:condition="value()&gt;=0" style:apply-style-name="N107P0"/>
<style:map style:condition="value()&gt;=0" style:apply-style-name="N124P0"/>
</number:currency-style>
<number:number-style style:name="N108P0" style:volatile="true">
<number:number-style style:name="N125P0" style:volatile="true">
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1"/>
</number:number-style>
<number:number-style style:name="N108">
<number:number-style style:name="N125">
<style:text-properties fo:color="#ff0000"/>
<number:text>-</number:text>
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1"/>
<style:map style:condition="value()&gt;=0" style:apply-style-name="N108P0"/>
<style:map style:condition="value()&gt;=0" style:apply-style-name="N125P0"/>
</number:number-style>
<number:currency-style style:name="N110P0" style:volatile="true">
<number:currency-style style:name="N127P0" style:volatile="true">
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
<number:number number:decimal-places="0" number:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
</number:currency-style>
<number:currency-style style:name="N110">
<number:currency-style style:name="N127">
<style:text-properties fo:color="#ff0000"/>
<number:text>(</number:text>
<number:currency-symbol number:language="es" number:country="CO">$</number:currency-symbol>
<number:number number:decimal-places="0" number:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
<number:text>)</number:text>
<style:map style:condition="value()&gt;=0" style:apply-style-name="N110P0"/>
<style:map style:condition="value()&gt;=0" style:apply-style-name="N127P0"/>
</number:currency-style>
<number:currency-style style:name="N10108P0" style:volatile="true" number:language="sl" number:country="SI">
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
@ -263,9 +263,9 @@
<style:style style:name="Result" style:family="table-cell" style:parent-style-name="Default">
<style:text-properties fo:font-style="italic" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold"/>
</style:style>
<style:style style:name="Result2" style:family="table-cell" style:parent-style-name="Result" style:data-style-name="N105"/>
<style:style style:name="Result2" style:family="table-cell" style:parent-style-name="Result" style:data-style-name="N122"/>
<style:style style:name="Sin_20_nombre1" style:display-name="Sin nombre1" style:family="table-cell" style:parent-style-name="Default">
<style:text-properties fo:color="#ff0000" style:font-name="Liberation Sans" fo:font-family="&apos;Liberation Sans&apos;" style:font-style-name="Normal" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:text-properties fo:color="#ff0000" style:font-name="Liberation Sans1" fo:font-family="&apos;Liberation Sans&apos;" style:font-style-name="Normal" style:font-family-generic="swiss" style:font-pitch="variable"/>
</style:style>
<style:style style:name="Sin_20_nombre2" style:display-name="Sin nombre2" style:family="table-cell" style:parent-style-name="Default">
<style:text-properties fo:color="#ff0000"/>
@ -282,55 +282,55 @@
</office:styles>
<office:automatic-styles>
<style:style style:name="co1" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="2.163cm"/>
<style:table-column-properties fo:break-before="auto" style:column-width="0.8516in"/>
</style:style>
<style:style style:name="co2" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="4.039cm"/>
<style:table-column-properties fo:break-before="auto" style:column-width="1.5902in"/>
</style:style>
<style:style style:name="co3" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="2.258cm"/>
<style:table-column-properties fo:break-before="auto" style:column-width="0.889in"/>
</style:style>
<style:style style:name="co4" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="4.932cm"/>
<style:table-column-properties fo:break-before="auto" style:column-width="1.9417in"/>
</style:style>
<style:style style:name="co5" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="1.21cm"/>
<style:table-column-properties fo:break-before="auto" style:column-width="0.4764in"/>
</style:style>
<style:style style:name="co6" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="2.39cm"/>
<style:table-column-properties fo:break-before="auto" style:column-width="0.9409in"/>
</style:style>
<style:style style:name="co7" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="2.208cm"/>
<style:table-column-properties fo:break-before="auto" style:column-width="0.8693in"/>
</style:style>
<style:style style:name="ro1" style:family="table-row">
<style:table-row-properties style:row-height="0.526cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
<style:table-row-properties style:row-height="0.2071in" fo:break-before="auto" style:use-optimal-row-height="false"/>
</style:style>
<style:style style:name="ro2" style:family="table-row">
<style:table-row-properties style:row-height="0.686cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
<style:table-row-properties style:row-height="0.2701in" fo:break-before="auto" style:use-optimal-row-height="false"/>
</style:style>
<style:style style:name="ro3" style:family="table-row">
<style:table-row-properties style:row-height="0.263cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
<style:table-row-properties style:row-height="0.1035in" fo:break-before="auto" style:use-optimal-row-height="false"/>
</style:style>
<style:style style:name="ro4" style:family="table-row">
<style:table-row-properties style:row-height="0.452cm" fo:break-before="auto" style:use-optimal-row-height="true"/>
<style:table-row-properties style:row-height="0.178in" fo:break-before="auto" style:use-optimal-row-height="true"/>
</style:style>
<style:style style:name="ro5" style:family="table-row">
<style:table-row-properties style:row-height="0.28cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
<style:table-row-properties style:row-height="0.1102in" fo:break-before="auto" style:use-optimal-row-height="false"/>
</style:style>
<style:style style:name="ro6" style:family="table-row">
<style:table-row-properties style:row-height="0.76cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
<style:table-row-properties style:row-height="0.2992in" fo:break-before="auto" style:use-optimal-row-height="false"/>
</style:style>
<style:style style:name="ro7" style:family="table-row">
<style:table-row-properties style:row-height="0.55cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
<style:table-row-properties style:row-height="0.2165in" fo:break-before="auto" style:use-optimal-row-height="false"/>
</style:style>
<style:style style:name="ro8" style:family="table-row">
<style:table-row-properties style:row-height="0.4cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
<style:table-row-properties style:row-height="0.1575in" fo:break-before="auto" style:use-optimal-row-height="false"/>
</style:style>
<style:style style:name="ro9" style:family="table-row">
<style:table-row-properties style:row-height="0.884cm" fo:break-before="auto" style:use-optimal-row-height="false"/>
<style:table-row-properties style:row-height="0.348in" fo:break-before="auto" style:use-optimal-row-height="false"/>
</style:style>
<style:style style:name="ro10" style:family="table-row">
<style:table-row-properties style:row-height="0.487cm" fo:break-before="auto" style:use-optimal-row-height="true"/>
<style:table-row-properties style:row-height="0.1917in" fo:break-before="auto" style:use-optimal-row-height="true"/>
</style:style>
<style:style style:name="ta1" style:family="table" style:master-page-name="Default">
<style:table-properties table:display="true" style:writing-mode="lr-tb"/>
@ -378,47 +378,47 @@
</number:text-style>
<style:style style:name="ce2" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20036">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0in"/>
<style:text-properties fo:color="#808080" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans Condensed" fo:font-size="8pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="8pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
</style:style>
<style:style style:name="ce5" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties style:text-align-source="value-type" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
<style:paragraph-properties fo:margin-left="0cm"/>
<style:paragraph-properties fo:margin-left="0in"/>
<style:text-properties fo:color="#333333" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans Condensed" fo:font-size="12pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="12pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="12pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
</style:style>
<style:style style:name="ce8" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20103">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0in"/>
<style:text-properties fo:color="#333333" style:font-name="DejaVu Sans Condensed" fo:font-size="7pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="ce10" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N100">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0in"/>
<style:text-properties fo:color="#ffffff" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans Condensed" fo:font-size="7pt" fo:language="es" fo:country="CO" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="7pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="7pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
</style:style>
<style:style style:name="ce11" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" fo:background-color="#eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
<style:paragraph-properties fo:text-align="center" fo:margin-left="0in"/>
<style:text-properties fo:color="#1c1c1c" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans Condensed" fo:font-size="6pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="6pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
</style:style>
<style:style style:name="ce12" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0in"/>
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans Condensed" fo:font-size="6pt" fo:language="es" fo:country="CO" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
</style:style>
<style:style style:name="ce14" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30100">
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0in"/>
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans Condensed" fo:font-size="6pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt"/>
</style:style>
<style:style style:name="ce16" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N100">
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0in"/>
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans Condensed" fo:font-size="6pt" fo:language="es" fo:country="CO" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
</style:style>
<style:style style:name="ce17" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0in"/>
<style:text-properties style:font-name="DejaVu Sans Condensed" fo:font-size="11pt" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
</style:style>
<style:style style:name="ce19" style:family="table-cell" style:parent-style-name="Default">
@ -426,32 +426,32 @@
</style:style>
<style:style style:name="ce22" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="11pt" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0in"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="11pt" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
</style:style>
<style:style style:name="ce24" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0in"/>
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans Condensed" fo:font-size="11pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="11pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="11pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
</style:style>
<style:style style:name="ce25" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0in"/>
<style:text-properties fo:color="#729fcf" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans Condensed" fo:font-size="11pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="11pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="11pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
</style:style>
<style:style style:name="ce26" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0in"/>
<style:text-properties fo:color="#ffffff" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans Condensed" fo:font-size="10pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="10pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="10pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
</style:style>
<style:style style:name="ce28" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" fo:background-color="#eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:wrap-option="wrap" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
<style:paragraph-properties fo:text-align="center" fo:margin-left="0in"/>
<style:text-properties fo:color="#1c1c1c" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans Condensed" fo:font-size="6pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="6pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
</style:style>
<style:style style:name="ce29" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0in"/>
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans Condensed" fo:font-size="6pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="6pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
</style:style>
<style:style style:name="ce31" style:family="table-cell" style:parent-style-name="Default">
@ -464,27 +464,27 @@
</style:style>
<style:style style:name="ce33" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="none" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
<style:paragraph-properties fo:text-align="end" fo:margin-left="0in"/>
<style:text-properties fo:color="#1c1c1c" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans Condensed" fo:font-size="8pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="8pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
</style:style>
<style:style style:name="ce47" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30037">
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
<style:paragraph-properties fo:text-align="center" fo:margin-left="0in"/>
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans Condensed" fo:font-size="6pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt"/>
</style:style>
<style:style style:name="ce37" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N20036">
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" fo:background-color="#eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0in"/>
<style:text-properties fo:color="#1c1c1c" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans Condensed" fo:font-size="7pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="7pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="7pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
</style:style>
<style:style style:name="ce49" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30003">
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
<style:paragraph-properties fo:text-align="end" fo:margin-left="0in"/>
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans Condensed" fo:font-size="6pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt"/>
</style:style>
<style:style style:name="ce35" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" fo:background-color="#ffdbb6" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
<style:paragraph-properties fo:text-align="center" fo:margin-left="0in"/>
<style:text-properties fo:color="#1c1c1c" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans Condensed" fo:font-size="6pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="6pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
</style:style>
<style:style style:name="ce36" style:family="table-cell" style:parent-style-name="Default">
@ -492,48 +492,48 @@
</style:style>
<style:style style:name="ce40" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" fo:background-color="#eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:wrap-option="wrap" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="center" fo:margin-left="0cm"/>
<style:paragraph-properties fo:text-align="center" fo:margin-left="0in"/>
<style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans Condensed" fo:font-size="6pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="6pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
</style:style>
<style:style style:name="ce53" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30003">
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0in"/>
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans Condensed" fo:font-size="6pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt"/>
</style:style>
<style:style style:name="ce38" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N110">
<style:style style:name="ce38" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N127">
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0cm"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0in"/>
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="DejaVu Sans Condensed" fo:font-size="6pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="6pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
</style:style>
<style:style style:name="ce39" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30004">
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="end" fo:margin-left="0in"/>
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans Condensed" fo:font-size="6pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt"/>
</style:style>
<style:style style:name="ce43" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="center"/>
<style:text-properties fo:color="#333333" style:font-name="DejaVu Sans Condensed" fo:font-size="11pt" fo:font-weight="bold" style:font-size-asian="11pt" style:font-weight-asian="bold" style:font-size-complex="11pt" style:font-weight-complex="bold"/>
<style:map style:condition="cell-content()&gt;=60" style:apply-style-name="Sin_20_nombre5" style:base-cell-address="Hoja1.H2"/>
</style:style>
<style:style style:name="ce39" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N30004">
<style:table-cell-properties fo:border-bottom="0.06pt solid #eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #eeeeee" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="end" fo:margin-left="0cm"/>
<style:text-properties fo:color="#000000" style:font-name="DejaVu Sans Condensed" fo:font-size="6pt" style:font-name-asian="Droid Sans Fallback" style:font-size-asian="6pt" style:font-name-complex="Lohit Hindi" style:font-size-complex="6pt"/>
<style:map style:condition="cell-content()&gt;=60" style:apply-style-name="Sin_20_nombre5" style:base-cell-address="Hoja1.I2"/>
</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="1.6cm" fo:margin-bottom="1.6cm" fo:margin-left="1.6cm" fo:margin-right="1.6cm" style:writing-mode="lr-tb"/>
<style:page-layout-properties fo:page-width="11in" fo:page-height="8.5in" style:num-format="1" style:print-orientation="landscape" fo:margin-top="0.6299in" fo:margin-bottom="0.6299in" fo:margin-left="0.6299in" fo:margin-right="0.6299in" style:writing-mode="lr-tb"/>
<style:header-style>
<style:header-footer-properties fo:min-height="0.75cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-bottom="0.25cm"/>
<style:header-footer-properties fo:min-height="0.2953in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-bottom="0.0984in"/>
</style:header-style>
<style:footer-style>
<style:header-footer-properties fo:min-height="0.75cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0.25cm"/>
<style:header-footer-properties fo:min-height="0.2953in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0.0984in"/>
</style:footer-style>
</style:page-layout>
<style:page-layout style:name="pm2">
<style:page-layout-properties style:writing-mode="lr-tb"/>
<style:header-style>
<style:header-footer-properties fo:min-height="0.75cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-bottom="0.25cm" fo:border="2.49pt solid #000000" fo:padding="0.018cm" fo:background-color="#c0c0c0">
<style:header-footer-properties fo:min-height="0.2953in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-bottom="0.0984in" fo:border="2.49pt solid #000000" fo:padding="0.0071in" fo:background-color="#c0c0c0">
<style:background-image/>
</style:header-footer-properties>
</style:header-style>
<style:footer-style>
<style:header-footer-properties fo:min-height="0.75cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0.25cm" fo:border="2.49pt solid #000000" fo:padding="0.018cm" fo:background-color="#c0c0c0">
<style:header-footer-properties fo:min-height="0.2953in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0.0984in" fo:border="2.49pt solid #000000" fo:padding="0.0071in" fo:background-color="#c0c0c0">
<style:background-image/>
</style:header-footer-properties>
</style:footer-style>
@ -559,7 +559,7 @@
<text:p><text:sheet-name>???</text:sheet-name><text:s/>(<text:title>???</text:title>)</text:p>
</style:region-left>
<style:region-right>
<text:p><text:date style:data-style-name="N2" text:date-value="2021-09-21">00/00/0000</text:date>, <text:time style:data-style-name="N2" text:time-value="17:45:27.991996790">00:00:00</text:time></text:p>
<text:p><text:date style:data-style-name="N2" text:date-value="2021-10-09">00/00/0000</text:date>, <text:time style:data-style-name="N2" text:time-value="09:50:51.826489499">00:00:00</text:time></text:p>
</style:region-right>
</style:header>
<style:header-left style:display="false"/>
@ -585,13 +585,13 @@
<table:table-column table:style-name="co3" table:number-columns-repeated="2" table:default-cell-style-name="ce22"/>
<table:table-column table:style-name="co4" table:default-cell-style-name="ce22"/>
<table:table-column table:style-name="co5" table:number-columns-repeated="2" table:default-cell-style-name="ce22"/>
<table:table-column table:style-name="co6" table:default-cell-style-name="ce22"/>
<table:table-column table:style-name="co6" table:number-columns-repeated="2" table:default-cell-style-name="ce22"/>
<table:table-column table:style-name="co7" table:default-cell-style-name="Default"/>
<table:table-column table:style-name="co3" table:default-cell-style-name="Default"/>
<table:table-row table:style-name="ro1">
<table:table-cell table:style-name="ce2" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://context[&apos;company.rec_name&apos;]" xlink:type="simple">context[&apos;company.rec_name&apos;]</text:a></text:p>
</table:table-cell>
<table:table-cell table:style-name="ce24" table:number-columns-repeated="7"/>
<table:table-cell table:style-name="ce24" table:number-columns-repeated="8"/>
<table:table-cell table:style-name="ce19" table:number-columns-repeated="2"/>
</table:table-row>
<table:table-row table:style-name="ro2">
@ -599,7 +599,7 @@
<text:p>INFORME DETALLADO DE PRODUCCION</text:p>
</table:table-cell>
<table:table-cell table:style-name="ce25" table:number-columns-repeated="5"/>
<table:table-cell table:style-name="Default"/>
<table:table-cell table:style-name="Default" table:number-columns-repeated="2"/>
<table:table-cell table:style-name="ce43" office:value-type="string" calcext:value-type="string"><text:p>TRYTON <text:span text:style-name="T1">ERP</text:span></text:p>
</table:table-cell>
<table:table-cell/>
@ -607,7 +607,7 @@
</table:table-row>
<table:table-row table:style-name="ro3">
<table:table-cell table:style-name="ce8"/>
<table:table-cell table:style-name="ce19" table:number-columns-repeated="9"/>
<table:table-cell table:style-name="ce19" table:number-columns-repeated="10"/>
</table:table-row>
<table:table-row table:style-name="ro4">
<table:table-cell table:style-name="Default" table:number-columns-repeated="2"/>
@ -616,7 +616,7 @@
</table:table-cell>
<table:table-cell table:style-name="ce37" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://data[&apos;start_date&apos;]" xlink:type="simple">data[&apos;start_date&apos;]</text:a></text:p>
</table:table-cell>
<table:table-cell table:style-name="Default" table:number-columns-repeated="2"/>
<table:table-cell table:style-name="Default" table:number-columns-repeated="3"/>
<table:table-cell table:style-name="ce33" office:value-type="string" calcext:value-type="string">
<text:p>FECHA FINAL:</text:p>
</table:table-cell>
@ -626,7 +626,7 @@
</table:table-row>
<table:table-row table:style-name="ro5">
<table:table-cell table:style-name="ce10"/>
<table:table-cell table:style-name="ce26" table:number-columns-repeated="7"/>
<table:table-cell table:style-name="ce26" table:number-columns-repeated="8"/>
<table:table-cell table:style-name="ce19" table:number-columns-repeated="2"/>
</table:table-row>
<table:table-row table:style-name="ro6">
@ -651,6 +651,9 @@
<table:table-cell table:style-name="ce40" office:value-type="string" calcext:value-type="string">
<text:p>CANT.</text:p>
</table:table-cell>
<table:table-cell table:style-name="ce40" office:value-type="string" calcext:value-type="string">
<text:p>COSTO UNITARIO</text:p>
</table:table-cell>
<table:table-cell table:style-name="ce11" office:value-type="string" calcext:value-type="string">
<text:p>COSTO TOTAL BASE</text:p>
</table:table-cell>
@ -662,27 +665,29 @@
</table:table-cell>
<table:table-cell table:style-name="ce29" table:number-columns-repeated="3"/>
<table:table-cell table:style-name="ce36" table:number-columns-repeated="2"/>
<table:table-cell table:style-name="ce38"/>
<table:table-cell table:style-name="ce38" table:number-columns-repeated="2"/>
<table:table-cell table:style-name="ce31"/>
<table:table-cell/>
<table:table-cell table:style-name="ce19"/>
</table:table-row>
<table:table-row table:style-name="ro8">
<table:table-cell table:style-name="ce14" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://rec.warehouse.name" xlink:type="simple">rec.warehouse.name</text:a></text:p>
<table:table-cell table:style-name="ce14" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://rec[&apos;warehouse.&apos;][&apos;name&apos;]" xlink:type="simple">rec[&apos;warehouse.&apos;][&apos;name&apos;]</text:a></text:p>
</table:table-cell>
<table:table-cell table:style-name="ce14" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://rec.location.name" xlink:type="simple">rec.location.name</text:a></text:p>
<table:table-cell table:style-name="ce14" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://rec[&apos;location.&apos;][&apos;name&apos;]" xlink:type="simple">rec[&apos;location.&apos;][&apos;name&apos;]</text:a></text:p>
</table:table-cell>
<table:table-cell table:style-name="ce47" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://rec.effective_date" xlink:type="simple">rec.effective_date</text:a></text:p>
<table:table-cell table:style-name="ce47" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://rec[&apos;effective_date&apos;]" xlink:type="simple">rec[&apos;effective_date&apos;]</text:a></text:p>
</table:table-cell>
<table:table-cell table:style-name="ce49" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://rec.number" xlink:type="simple">rec.number</text:a></text:p>
<table:table-cell table:style-name="ce49" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://rec[&apos;number&apos;]" xlink:type="simple">rec[&apos;number&apos;]</text:a></text:p>
</table:table-cell>
<table:table-cell table:style-name="ce14" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://rec.product.name" xlink:type="simple">rec.product.name</text:a></text:p>
<table:table-cell table:style-name="ce14" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://rec[&apos;product.&apos;][&apos;name&apos;]" xlink:type="simple">rec[&apos;product.&apos;][&apos;name&apos;]</text:a></text:p>
</table:table-cell>
<table:table-cell table:style-name="ce53" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://rec.uom.name" xlink:type="simple">rec.uom.name</text:a></text:p>
<table:table-cell table:style-name="ce53" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://rec[&apos;uom.&apos;][&apos;name&apos;]" xlink:type="simple">rec[&apos;uom.&apos;][&apos;name&apos;]</text:a></text:p>
</table:table-cell>
<table:table-cell table:style-name="ce49" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://rec.quantity" xlink:type="simple">rec.quantity</text:a></text:p>
<table:table-cell table:style-name="ce49" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://rec[&apos;quantity&apos;]" xlink:type="simple">rec[&apos;quantity&apos;]</text:a></text:p>
</table:table-cell>
<table:table-cell table:style-name="ce39" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://rec.cost" xlink:type="simple">rec.cost</text:a></text:p>
<table:table-cell table:style-name="ce39" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://rec[&apos;cost&apos;]/Decimal(rec[&apos;quantity&apos;])" xlink:type="simple">rec[&apos;cost&apos;]/rec[&apos;quantity&apos;]</text:a></text:p>
</table:table-cell>
<table:table-cell table:style-name="ce39" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://rec[&apos;cost&apos;]" xlink:type="simple">rec[&apos;cost&apos;]</text:a></text:p>
</table:table-cell>
<table:table-cell/>
<table:table-cell table:style-name="ce19"/>
@ -690,42 +695,42 @@
<table:table-row table:style-name="ro7">
<table:table-cell table:style-name="ce16" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio:///for" xlink:type="simple">/for</text:a></text:p>
</table:table-cell>
<table:table-cell table:style-name="ce31" table:number-columns-repeated="7"/>
<table:table-cell table:style-name="ce31" table:number-columns-repeated="8"/>
<table:table-cell/>
<table:table-cell table:style-name="ce19"/>
</table:table-row>
<table:table-row table:style-name="ro9">
<table:table-cell table:style-name="Default"/>
<table:table-cell table:style-name="ce32" table:number-columns-repeated="7"/>
<table:table-cell table:style-name="ce32" table:number-columns-repeated="8"/>
<table:table-cell table:style-name="ce36"/>
<table:table-cell table:style-name="ce19"/>
</table:table-row>
<table:table-row table:style-name="ro10" table:number-rows-repeated="2">
<table:table-cell table:style-name="ce17" table:number-columns-repeated="8"/>
<table:table-cell table:style-name="ce17" table:number-columns-repeated="9"/>
<table:table-cell table:style-name="ce19" table:number-columns-repeated="2"/>
</table:table-row>
<table:table-row table:style-name="ro10">
<table:table-cell table:style-name="ce19"/>
<table:table-cell table:style-name="ce17" table:number-columns-repeated="7"/>
<table:table-cell table:style-name="ce19" table:number-columns-repeated="2"/>
</table:table-row>
<table:table-row table:style-name="ro10">
<table:table-cell table:style-name="ce17" table:number-columns-repeated="8"/>
<table:table-cell table:style-name="ce19" table:number-columns-repeated="2"/>
</table:table-row>
<table:table-row table:style-name="ro10">
<table:table-cell table:style-name="Default"/>
<table:table-cell table:number-columns-repeated="9"/>
</table:table-row>
<table:table-row table:style-name="ro10" table:number-rows-repeated="1048560">
<table:table-cell table:number-columns-repeated="10"/>
<table:table-cell table:style-name="ce17" table:number-columns-repeated="9"/>
<table:table-cell table:style-name="ce19" table:number-columns-repeated="2"/>
</table:table-row>
<table:table-row table:style-name="ro10">
<table:table-cell table:style-name="Default"/>
<table:table-cell table:number-columns-repeated="10"/>
</table:table-row>
<table:table-row table:style-name="ro10" table:number-rows-repeated="1048560">
<table:table-cell table:number-columns-repeated="11"/>
</table:table-row>
<table:table-row table:style-name="ro10">
<table:table-cell table:number-columns-repeated="11"/>
</table:table-row>
<calcext:conditional-formats>
<calcext:conditional-format calcext:target-range-address="Hoja1.H2:Hoja1.H2">
<calcext:condition calcext:apply-style-name="Sin nombre5" calcext:value="&gt;=60" calcext:base-cell-address="Hoja1.H2"/>
<calcext:conditional-format calcext:target-range-address="Hoja1.I2:Hoja1.I2">
<calcext:condition calcext:apply-style-name="Sin nombre5" calcext:value="&gt;=60" calcext:base-cell-address="Hoja1.I2"/>
</calcext:conditional-format>
</calcext:conditional-formats>
</table:table>

View File

@ -4,6 +4,8 @@ this repository contains the full copyright notices and license terms. -->
<form>
<label name="company"/>
<field name="company" widget="selection"/>
<label name="grouped"/>
<field name="grouped"/>
<label name="start_date"/>
<field name="start_date"/>
<label name="end_date"/>