27.02.26
This commit is contained in:
77
modules/purchase_trade/numbers_to_words.py
Normal file
77
modules/purchase_trade/numbers_to_words.py
Normal file
@@ -0,0 +1,77 @@
|
||||
from decimal import Decimal, ROUND_HALF_UP
|
||||
|
||||
|
||||
UNITS = (
|
||||
"ZERO ONE TWO THREE FOUR FIVE SIX SEVEN EIGHT NINE TEN ELEVEN TWELVE "
|
||||
"THIRTEEN FOURTEEN FIFTEEN SIXTEEN SEVENTEEN EIGHTEEN NINETEEN"
|
||||
).split()
|
||||
|
||||
TENS = "ZERO TEN TWENTY THIRTY FORTY FIFTY SIXTY SEVENTY EIGHTY NINETY".split()
|
||||
|
||||
|
||||
def _under_thousand(n, use_and=True):
|
||||
words = []
|
||||
|
||||
hundreds = n // 100
|
||||
remainder = n % 100
|
||||
|
||||
if hundreds:
|
||||
words.append(UNITS[hundreds])
|
||||
words.append("HUNDRED")
|
||||
if remainder and use_and:
|
||||
words.append("AND")
|
||||
|
||||
if remainder:
|
||||
if remainder < 20:
|
||||
words.append(UNITS[remainder])
|
||||
else:
|
||||
words.append(TENS[remainder // 10])
|
||||
if remainder % 10:
|
||||
words.append(UNITS[remainder % 10])
|
||||
|
||||
return " ".join(words)
|
||||
|
||||
|
||||
def number_to_words(n, decimals_mode="digit", use_and=True):
|
||||
"""
|
||||
decimals_mode:
|
||||
- "digit" → ONE HUNDRED POINT TWO FIVE
|
||||
- "fraction" → ONE HUNDRED AND 25/100
|
||||
"""
|
||||
|
||||
n = Decimal(str(n)).quantize(Decimal("0.01"), rounding=ROUND_HALF_UP)
|
||||
|
||||
integer_part = int(n)
|
||||
decimal_part = int((n - integer_part) * 100)
|
||||
|
||||
if integer_part == 0:
|
||||
words = "ZERO"
|
||||
else:
|
||||
parts = []
|
||||
|
||||
millions = integer_part // 1_000_000
|
||||
thousands = (integer_part // 1_000) % 1_000
|
||||
remainder = integer_part % 1_000
|
||||
|
||||
if millions:
|
||||
parts.append(_under_thousand(millions, use_and))
|
||||
parts.append("MILLION")
|
||||
|
||||
if thousands:
|
||||
parts.append(_under_thousand(thousands, use_and))
|
||||
parts.append("THOUSAND")
|
||||
|
||||
if remainder:
|
||||
parts.append(_under_thousand(remainder, use_and))
|
||||
|
||||
words = " ".join(parts)
|
||||
|
||||
# Gestion décimales
|
||||
if decimal_part:
|
||||
if decimals_mode == "digit":
|
||||
digits = " ".join(UNITS[int(d)] for d in f"{decimal_part:02d}")
|
||||
words = f"{words} POINT {digits}"
|
||||
elif decimals_mode == "fraction":
|
||||
words = f"{words} AND {decimal_part:02d}/100"
|
||||
|
||||
return words.upper()
|
||||
@@ -15,6 +15,7 @@ import datetime
|
||||
import logging
|
||||
import json
|
||||
from trytond.exceptions import UserWarning, UserError
|
||||
from trytond.modules.purchase_trade.numbers_to_words import number_to_words
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
@@ -264,13 +265,31 @@ class Sale(metaclass=PoolMeta):
|
||||
else:
|
||||
return ''
|
||||
|
||||
@property
|
||||
def report_qt(self):
|
||||
if self.lines:
|
||||
return number_to_words(self.lines[0].quantity)
|
||||
else:
|
||||
return ''
|
||||
|
||||
@property
|
||||
def report_price(self):
|
||||
if self.lines:
|
||||
return number_to_words(self.lines[0].unit_price)
|
||||
else:
|
||||
return ''
|
||||
|
||||
@property
|
||||
def report_shipment(self):
|
||||
if self.lines:
|
||||
if len(self.lines[0].lots)>1:
|
||||
shipment = self.lines[0].lots[1].lot_shipment_in
|
||||
if shipment:
|
||||
info = 'B/L ' + shipment.bl_number + ' ' + shipment.note
|
||||
info = 'B/L ' + shipment.bl_number
|
||||
if shipment.container and shipment.container[0].container_no:
|
||||
info += ' ' + shipment.container[0].container_no
|
||||
if shipment.note:
|
||||
info += ' ' + shipment.note
|
||||
return info
|
||||
else:
|
||||
return ''
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<office:document 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:xlink="http://www.w3.org/1999/xlink" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta: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:rpt="http://openoffice.org/2005/report" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d: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:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" 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:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:officeooo="http://openoffice.org/2009/office" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text">
|
||||
<office:meta><meta:generator>LibreOffice/7.6.0.3$Windows_X86_64 LibreOffice_project/69edd8b8ebc41d00b4de3915dc82f8f0fc3b6265</meta:generator><dc:title>Invoice no</dc:title><dc:description/><dc:subject/><meta:initial-creator>willen</meta:initial-creator><meta:creation-date>2026-02-26T13:52:00Z</meta:creation-date><dc:date>2026-02-26T21:20:26.351000000</dc:date><meta:print-date>2025-12-17T14:25:00Z</meta:print-date><meta:editing-cycles>6</meta:editing-cycles><meta:editing-duration>PT26M24S</meta:editing-duration><meta:document-statistic meta:table-count="8" meta:image-count="3" meta:object-count="0" meta:page-count="2" meta:paragraph-count="40" meta:word-count="177" meta:character-count="1492" meta:non-whitespace-character-count="1348"/><meta:template xlink:type="simple" xlink:actuate="onRequest" xlink:title="" xlink:href="ICT_sale_template.odt/Normal.dotm"/></office:meta>
|
||||
<office:meta><meta:generator>LibreOffice/7.6.0.3$Windows_X86_64 LibreOffice_project/69edd8b8ebc41d00b4de3915dc82f8f0fc3b6265</meta:generator><dc:title>Invoice no</dc:title><dc:description/><dc:subject/><meta:initial-creator>willen</meta:initial-creator><meta:creation-date>2026-02-26T13:52:00Z</meta:creation-date><dc:date>2026-02-27T05:47:38.343000000</dc:date><meta:print-date>2025-12-17T14:25:00Z</meta:print-date><meta:editing-cycles>7</meta:editing-cycles><meta:editing-duration>PT28M8S</meta:editing-duration><meta:document-statistic meta:table-count="8" meta:image-count="3" meta:object-count="0" meta:page-count="2" meta:paragraph-count="40" meta:word-count="177" meta:character-count="1534" meta:non-whitespace-character-count="1390"/><meta:template xlink:type="simple" xlink:actuate="onRequest" xlink:title="" xlink:href="ICT_sale_template.odt/Normal.dotm"/></office:meta>
|
||||
<office:settings>
|
||||
<config:config-item-set config:name="ooo:view-settings">
|
||||
<config:config-item config:name="ViewAreaTop" config:type="long">35108</config:config-item>
|
||||
<config:config-item config:name="ViewAreaTop" config:type="long">40658</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">24236</config:config-item>
|
||||
<config:config-item config:name="ViewAreaHeight" config:type="long">11721</config:config-item>
|
||||
@@ -13,12 +13,12 @@
|
||||
<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">8565</config:config-item>
|
||||
<config:config-item config:name="ViewTop" config:type="long">43921</config:config-item>
|
||||
<config:config-item config:name="ViewLeft" config:type="long">10469</config:config-item>
|
||||
<config:config-item config:name="ViewTop" config:type="long">42757</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">35108</config:config-item>
|
||||
<config:config-item config:name="VisibleTop" config:type="long">40658</config:config-item>
|
||||
<config:config-item config:name="VisibleRight" config:type="long">24234</config:config-item>
|
||||
<config:config-item config:name="VisibleBottom" config:type="long">46828</config:config-item>
|
||||
<config:config-item config:name="VisibleBottom" config:type="long">52377</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>
|
||||
@@ -91,7 +91,7 @@
|
||||
<config:config-item config:name="LoadReadonly" 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="UseOldPrinterMetrics" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="Rsid" config:type="int">2008084</config:config-item>
|
||||
<config:config-item config:name="Rsid" config:type="int">2082766</config:config-item>
|
||||
<config:config-item config:name="RsidRoot" config:type="int">1846560</config:config-item>
|
||||
<config:config-item config:name="ProtectForm" config:type="boolean">false</config:config-item>
|
||||
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">false</config:config-item>
|
||||
@@ -161,7 +161,7 @@
|
||||
<office:styles>
|
||||
<style:default-style style:family="graphic">
|
||||
<style:graphic-properties draw:stroke="solid" svg:stroke-width="0.071cm" svg:stroke-color="#1c334e" svg:stroke-linecap="butt" draw:fill-color="#4f81bd" fo:wrap-option="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 fo:line-height="115%" fo:text-align="start" style:text-autospace="ideograph-alpha" style:line-break="strict" loext:tab-stop-distance="0cm" style:font-independent-line-spacing="false">
|
||||
<style:paragraph-properties fo:line-height="115%" fo:text-align="start" style:text-autospace="ideograph-alpha" style:line-break="strict" loext:tab-stop-distance="0cm" style:writing-mode="lr-tb" style:font-independent-line-spacing="false">
|
||||
<style:tab-stops/>
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties fo:font-variant="normal" fo:text-transform="none" style:use-window-font-color="true" loext:opacity="0%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:text-position="0% 100%" style:font-name="Calibri" fo:font-size="11pt" fo:letter-spacing="normal" fo:language="fr" fo:country="FR" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" style:letter-kerning="false" style:font-name-asian="Times New Roman" style:font-size-asian="11pt" style:language-asian="fr" style:country-asian="FR" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Calibri" style:font-size-complex="11pt" style:language-complex="ar" style:country-complex="SA" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:text-scale="100%" style:font-relief="none"/>
|
||||
@@ -488,20 +488,29 @@
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties fo:font-size="9pt" fo:language="en" fo:country="US" officeooo:paragraph-rsid="001e1814" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P9" style:family="paragraph" style:parent-style-name="Normal">
|
||||
<style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm" style:contextual-spacing="false" fo:line-height="100%" style:text-autospace="none"/>
|
||||
<style:text-properties fo:font-size="9pt" fo:language="en" fo:country="US" style:font-size-asian="9pt" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Texte_20_par_20_défaut">
|
||||
<style:style style:name="P9" style:family="paragraph" style:parent-style-name="Texte_20_par_20_défaut">
|
||||
<style:paragraph-properties>
|
||||
<style:tab-stops>
|
||||
<style:tab-stop style:position="3.461cm"/>
|
||||
<style:tab-stop style:position="3.96cm"/>
|
||||
</style:tab-stops>
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties fo:font-size="9pt" fo:language="en" fo:country="US" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
|
||||
<style:text-properties fo:font-size="9pt" fo:language="en" fo:country="US" officeooo:paragraph-rsid="001ea414" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Normal">
|
||||
<style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm" style:contextual-spacing="false" fo:line-height="100%" style:text-autospace="none"/>
|
||||
<style:text-properties fo:font-size="9pt" fo:language="en" fo:country="US" style:font-size-asian="9pt" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P11" style:family="paragraph" style:parent-style-name="Texte_20_par_20_défaut">
|
||||
<style:paragraph-properties>
|
||||
<style:tab-stops>
|
||||
<style:tab-stop style:position="3.461cm"/>
|
||||
<style:tab-stop style:position="3.96cm"/>
|
||||
</style:tab-stops>
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties fo:font-size="9pt" fo:language="en" fo:country="US" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P12" style:family="paragraph" style:parent-style-name="Texte_20_par_20_défaut">
|
||||
<style:paragraph-properties>
|
||||
<style:tab-stops>
|
||||
<style:tab-stop style:position="3.461cm"/>
|
||||
@@ -510,11 +519,11 @@
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties fo:font-size="9pt" fo:language="en" fo:country="US" fo:font-weight="bold" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P12" style:family="paragraph" style:parent-style-name="Normal">
|
||||
<style:style style:name="P13" style:family="paragraph" style:parent-style-name="Normal">
|
||||
<style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm" style:contextual-spacing="false"/>
|
||||
<style:text-properties fo:font-size="9pt" style:font-size-asian="9pt" style:font-size-complex="9pt" text:display="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P13" style:family="paragraph" style:parent-style-name="Texte_20_par_20_défaut">
|
||||
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Texte_20_par_20_défaut">
|
||||
<style:paragraph-properties>
|
||||
<style:tab-stops>
|
||||
<style:tab-stop style:position="3.461cm"/>
|
||||
@@ -523,10 +532,10 @@
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties fo:font-size="9pt" fo:language="it" fo:country="IT" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Texte_20_par_20_défaut">
|
||||
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Texte_20_par_20_défaut">
|
||||
<style:text-properties fo:font-size="9pt" fo:language="it" fo:country="IT" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Normal">
|
||||
<style:style style:name="P16" style:family="paragraph" style:parent-style-name="Normal">
|
||||
<style:paragraph-properties>
|
||||
<style:tab-stops>
|
||||
<style:tab-stop style:position="4.001cm"/>
|
||||
@@ -542,11 +551,11 @@
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties fo:font-size="9pt" fo:language="en" fo:country="GB" style:font-size-asian="9pt" style:font-size-complex="9pt" text:display="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P16" style:family="paragraph" style:parent-style-name="Normal">
|
||||
<style:style style:name="P17" style:family="paragraph" style:parent-style-name="Normal">
|
||||
<style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm" style:contextual-spacing="false"/>
|
||||
<style:text-properties text:display="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P17" style:family="paragraph" style:parent-style-name="Texte_20_par_20_défaut">
|
||||
<style:style style:name="P18" style:family="paragraph" style:parent-style-name="Texte_20_par_20_défaut">
|
||||
<style:paragraph-properties>
|
||||
<style:tab-stops>
|
||||
<style:tab-stop style:position="3.461cm"/>
|
||||
@@ -554,7 +563,7 @@
|
||||
</style:tab-stops>
|
||||
</style:paragraph-properties>
|
||||
</style:style>
|
||||
<style:style style:name="P18" style:family="paragraph" style:parent-style-name="Global_20_Dunavant">
|
||||
<style:style style:name="P19" style:family="paragraph" style:parent-style-name="Global_20_Dunavant">
|
||||
<style:paragraph-properties>
|
||||
<style:tab-stops>
|
||||
<style:tab-stop style:position="4.001cm"/>
|
||||
@@ -566,20 +575,11 @@
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties style:font-name="Calibri" fo:font-size="9pt" fo:language="en" fo:country="US" style:font-size-asian="9pt" style:font-name-complex="Calibri" style:font-size-complex="9pt" text:display="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P19" style:family="paragraph" style:parent-style-name="Global_20_Dunavant">
|
||||
<style:paragraph-properties>
|
||||
<style:tab-stops>
|
||||
<style:tab-stop style:position="3.184cm"/>
|
||||
<style:tab-stop style:position="16.753cm"/>
|
||||
</style:tab-stops>
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties style:font-name="Calibri" fo:font-size="9pt" fo:language="en" fo:country="US" style:font-size-asian="9pt" style:font-name-complex="Calibri" style:font-size-complex="9pt" text:display="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P20" style:family="paragraph" style:parent-style-name="Global_20_Dunavant">
|
||||
<style:paragraph-properties>
|
||||
<style:tab-stops>
|
||||
<style:tab-stop style:position="3.184cm"/>
|
||||
<style:tab-stop style:position="16.766cm"/>
|
||||
<style:tab-stop style:position="16.753cm"/>
|
||||
</style:tab-stops>
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties style:font-name="Calibri" fo:font-size="9pt" fo:language="en" fo:country="US" style:font-size-asian="9pt" style:font-name-complex="Calibri" style:font-size-complex="9pt" text:display="none"/>
|
||||
@@ -591,9 +591,15 @@
|
||||
<style:tab-stop style:position="16.766cm"/>
|
||||
</style:tab-stops>
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties style:font-name="Calibri" fo:font-size="9pt" fo:language="en" fo:country="US" style:font-size-asian="9pt" style:font-name-complex="Calibri" style:font-size-complex="9pt"/>
|
||||
<style:text-properties style:font-name="Calibri" fo:font-size="9pt" fo:language="en" fo:country="US" style:font-size-asian="9pt" style:font-name-complex="Calibri" style:font-size-complex="9pt" text:display="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P22" style:family="paragraph" style:parent-style-name="Global_20_Dunavant">
|
||||
<style:paragraph-properties>
|
||||
<style:tab-stops>
|
||||
<style:tab-stop style:position="3.184cm"/>
|
||||
<style:tab-stop style:position="16.766cm"/>
|
||||
</style:tab-stops>
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties style:font-name="Calibri" fo:font-size="9pt" fo:language="en" fo:country="US" style:font-size-asian="9pt" style:font-name-complex="Calibri" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P23" style:family="paragraph" style:parent-style-name="Global_20_Dunavant">
|
||||
@@ -603,19 +609,19 @@
|
||||
<style:tab-stop style:position="16.766cm"/>
|
||||
</style:tab-stops>
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties style:font-name="Calibri" fo:font-size="9pt" fo:language="en" fo:country="US" style:font-size-asian="9pt" style:font-name-complex="Calibri" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
|
||||
<style:text-properties style:font-name="Calibri" fo:font-size="9pt" fo:language="en" fo:country="US" officeooo:paragraph-rsid="001ea414" style:font-size-asian="9pt" style:font-name-complex="Calibri" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P24" style:family="paragraph" style:parent-style-name="Global_20_Dunavant">
|
||||
<style:text-properties style:font-name="Calibri" fo:font-size="9pt" fo:language="en" fo:country="US" style:font-size-asian="9pt" style:font-name-complex="Calibri" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P25" style:family="paragraph" style:parent-style-name="Global_20_Dunavant">
|
||||
<style:paragraph-properties>
|
||||
<style:tab-stops>
|
||||
<style:tab-stop style:position="3.184cm"/>
|
||||
<style:tab-stop style:position="16.766cm"/>
|
||||
</style:tab-stops>
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties style:font-name="Calibri" fo:font-size="9pt" fo:language="en" fo:country="US" fo:font-weight="bold" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-name-complex="Calibri" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P25" style:family="paragraph" style:parent-style-name="Global_20_Dunavant">
|
||||
<style:text-properties style:font-name="Calibri" fo:font-size="9pt" fo:language="en" fo:country="US" fo:font-weight="bold" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-name-complex="Calibri" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
|
||||
<style:text-properties style:font-name="Calibri" fo:font-size="9pt" fo:language="en" fo:country="US" style:font-size-asian="9pt" style:font-name-complex="Calibri" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P26" style:family="paragraph" style:parent-style-name="Global_20_Dunavant">
|
||||
<style:paragraph-properties>
|
||||
@@ -624,16 +630,10 @@
|
||||
<style:tab-stop style:position="16.766cm"/>
|
||||
</style:tab-stops>
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties style:font-name="Calibri" fo:font-size="9pt" fo:language="en" fo:country="US" fo:font-weight="bold" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-name-complex="Calibri" style:font-size-complex="9pt"/>
|
||||
<style:text-properties style:font-name="Calibri" fo:font-size="9pt" fo:language="en" fo:country="US" fo:font-weight="bold" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-name-complex="Calibri" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P27" style:family="paragraph" style:parent-style-name="Global_20_Dunavant">
|
||||
<style:paragraph-properties>
|
||||
<style:tab-stops>
|
||||
<style:tab-stop style:position="3.184cm"/>
|
||||
<style:tab-stop style:position="16.766cm"/>
|
||||
</style:tab-stops>
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Calibri" fo:font-size="9pt" fo:language="en" fo:country="US" style:font-size-asian="9pt" style:font-name-complex="Calibri" style:font-size-complex="9pt"/>
|
||||
<style:text-properties style:font-name="Calibri" fo:font-size="9pt" fo:language="en" fo:country="US" fo:font-weight="bold" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-name-complex="Calibri" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="P28" style:family="paragraph" style:parent-style-name="Global_20_Dunavant">
|
||||
<style:paragraph-properties>
|
||||
@@ -642,41 +642,45 @@
|
||||
<style:tab-stop style:position="16.766cm"/>
|
||||
</style:tab-stops>
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties style:font-name="Calibri" fo:font-size="9pt" fo:language="en" fo:country="US" fo:font-weight="bold" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-name-complex="Calibri" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P29" style:family="paragraph" style:parent-style-name="Normal">
|
||||
<style:style style:name="P29" style:family="paragraph" style:parent-style-name="Global_20_Dunavant">
|
||||
<style:paragraph-properties>
|
||||
<style:tab-stops>
|
||||
<style:tab-stop style:position="3.184cm"/>
|
||||
<style:tab-stop style:position="16.766cm"/>
|
||||
</style:tab-stops>
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%" style:font-name="Calibri" fo:font-size="9pt" fo:language="en" fo:country="US" style:font-size-asian="9pt" style:font-name-complex="Calibri" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P30" style:family="paragraph" style:parent-style-name="Global_20_Dunavant">
|
||||
<style:paragraph-properties>
|
||||
<style:tab-stops>
|
||||
<style:tab-stop style:position="3.184cm"/>
|
||||
<style:tab-stop style:position="16.766cm"/>
|
||||
</style:tab-stops>
|
||||
</style:paragraph-properties>
|
||||
</style:style>
|
||||
<style:style style:name="P31" style:family="paragraph" style:parent-style-name="Normal">
|
||||
<style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm" style:contextual-spacing="false"/>
|
||||
<style:text-properties fo:language="en" fo:country="US" text:display="none"/>
|
||||
</style:style>
|
||||
<style:style style:name="P30" style:family="paragraph" style:parent-style-name="Normal" style:master-page-name="">
|
||||
<style:style style:name="P32" style:family="paragraph" style:parent-style-name="Normal" style:master-page-name="">
|
||||
<style:paragraph-properties style:page-number="auto" fo:break-before="page"/>
|
||||
</style:style>
|
||||
<style:style style:name="P31" style:family="paragraph" style:parent-style-name="Texte_20_par_20_défaut">
|
||||
<style:paragraph-properties>
|
||||
<style:tab-stops>
|
||||
<style:tab-stop style:position="3.461cm"/>
|
||||
<style:tab-stop style:position="3.96cm"/>
|
||||
</style:tab-stops>
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties fo:font-size="9pt" fo:language="en" fo:country="US" officeooo:paragraph-rsid="001ea414" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P32" style:family="paragraph" style:parent-style-name="Global_20_Dunavant">
|
||||
<style:paragraph-properties>
|
||||
<style:tab-stops>
|
||||
<style:tab-stop style:position="3.184cm"/>
|
||||
<style:tab-stop style:position="16.766cm"/>
|
||||
</style:tab-stops>
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties style:font-name="Calibri" fo:font-size="9pt" fo:language="en" fo:country="US" officeooo:paragraph-rsid="001ea414" style:font-size-asian="9pt" style:font-name-complex="Calibri" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P33" style:family="paragraph" style:parent-style-name="Global_20_Dunavant">
|
||||
<style:text-properties style:font-name="Calibri" fo:font-size="9pt" fo:language="en" fo:country="US" officeooo:paragraph-rsid="001fc7ce" style:font-size-asian="9pt" style:font-name-complex="Calibri" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P34" style:family="paragraph" style:parent-style-name="Global_20_Dunavant">
|
||||
<style:paragraph-properties>
|
||||
<style:tab-stops>
|
||||
<style:tab-stop style:position="3.184cm"/>
|
||||
<style:tab-stop style:position="16.766cm"/>
|
||||
</style:tab-stops>
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties style:font-name="Calibri" fo:font-size="9pt" fo:language="en" fo:country="US" officeooo:paragraph-rsid="001fc7ce" style:font-size-asian="9pt" style:font-name-complex="Calibri" style:font-size-complex="9pt"/>
|
||||
</style:style>
|
||||
<style:style style:name="P34" style:family="paragraph" style:parent-style-name="Normal" style:master-page-name="MP0">
|
||||
<style:style style:name="P35" style:family="paragraph" style:parent-style-name="Normal" style:master-page-name="MP0">
|
||||
<style:paragraph-properties style:page-number="auto" fo:break-before="page"/>
|
||||
</style:style>
|
||||
<style:style style:name="T1" style:family="text">
|
||||
@@ -727,6 +731,9 @@
|
||||
<style:style style:name="T16" style:family="text">
|
||||
<style:text-properties fo:color="#000000" loext:opacity="100%"/>
|
||||
</style:style>
|
||||
<style:style style:name="T17" style:family="text">
|
||||
<style:text-properties officeooo:rsid="001fc7ce"/>
|
||||
</style:style>
|
||||
<style:style style:name="fr1" style:family="graphic" style:parent-style-name="Graphics">
|
||||
<style:graphic-properties style:vertical-pos="from-top" style:horizontal-pos="from-left" style:horizontal-rel="paragraph-content" fo:background-color="transparent" draw:fill="none" draw:fill-color="#ffffff" fo:padding="0cm" fo:border="none" style:mirror="none" fo:clip="rect(0cm, 0cm, 0cm, 0cm)" draw:luminance="0%" draw:contrast="0%" draw:red="0%" draw:green="0%" draw:blue="0%" draw:gamma="100%" draw:color-inversion="false" draw:image-opacity="100%" draw:color-mode="standard"/>
|
||||
</style:style>
|
||||
@@ -3777,8 +3784,8 @@
|
||||
<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="P10"><text:placeholder text:placeholder-type="text"><for each="sale in records"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P34"/>
|
||||
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text"><for each="sale in records"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P35"/>
|
||||
<table:table table:name="Table1" table:style-name="Table1">
|
||||
<table:table-column table:style-name="Table1.A"/>
|
||||
<table:table-row>
|
||||
@@ -3790,7 +3797,7 @@
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:p text:style-name="P16"/>
|
||||
<text:p text:style-name="P17"/>
|
||||
<table:table table:name="Table2" table:style-name="Table2">
|
||||
<table:table-column table:style-name="Table2.A"/>
|
||||
<table:table-row>
|
||||
@@ -3800,181 +3807,181 @@
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:p text:style-name="P12"/>
|
||||
<text:p text:style-name="P13"/>
|
||||
<table:table table:name="Table3" table:style-name="Table3">
|
||||
<table:table-column table:style-name="Table3.A"/>
|
||||
<table:table-column table:style-name="Table3.B"/>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Table3.A1" office:value-type="string">
|
||||
<text:p text:style-name="P17"><text:span text:style-name="Police_20_par_20_défaut"><text:span text:style-name="T7">Buyers</text:span></text:span></text:p>
|
||||
<text:p text:style-name="P18"><text:span text:style-name="Police_20_par_20_défaut"><text:span text:style-name="T7">Buyers</text:span></text:span></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Table3.A1" office:value-type="string">
|
||||
<text:p text:style-name="P5"><text:placeholder text:placeholder-type="text"><sale.party.rec_name></text:placeholder></text:p>
|
||||
<text:p text:style-name="P7">ADDRESS:<text:placeholder text:placeholder-type="text"><sale.report_address></text:placeholder></text:p>
|
||||
<text:p text:style-name="P10"/>
|
||||
<text:p text:style-name="P11"/>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Table3.A1" office:value-type="string">
|
||||
<text:p text:style-name="P11">Sellers</text:p>
|
||||
<text:p text:style-name="P12">Sellers</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Table3.A1" office:value-type="string">
|
||||
<text:p text:style-name="P13">ICT TRADING S.A.</text:p>
|
||||
<text:p text:style-name="P14">VIA MAGAZZINI GENERALI, 3</text:p>
|
||||
<text:p text:style-name="P14">ICT TRADING S.A.</text:p>
|
||||
<text:p text:style-name="P15">VIA MAGAZZINI GENERALI, 3</text:p>
|
||||
<text:p text:style-name="P5">6828 BALERNA, SWITZERLAND</text:p>
|
||||
<text:p text:style-name="P7"/>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Table3.A1" office:value-type="string">
|
||||
<text:p text:style-name="P11">Agents</text:p>
|
||||
<text:p text:style-name="P12">Agents</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Table3.A1" office:value-type="string">
|
||||
<text:p text:style-name="P8"><text:placeholder text:placeholder-type="text"><sale.report_agent></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:p text:style-name="P18"/>
|
||||
<text:p text:style-name="P15"/>
|
||||
<text:p text:style-name="P19"/>
|
||||
<text:p text:style-name="P16"/>
|
||||
<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-row>
|
||||
<table:table-cell table:style-name="Table4.A1" office:value-type="string">
|
||||
<text:p text:style-name="P24"/>
|
||||
<text:p text:style-name="P24">Growth</text:p>
|
||||
<text:p text:style-name="P24"/>
|
||||
<text:p text:style-name="P26"/>
|
||||
<text:p text:style-name="P26">Growth</text:p>
|
||||
<text:p text:style-name="P26"/>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Table4.A1" office:value-type="string">
|
||||
<text:p text:style-name="P21"/>
|
||||
<text:p text:style-name="P32"><text:placeholder text:placeholder-type="text"><sale.lines[0].product.name if sale.lines and sale.lines[0].product else ''></text:placeholder><text:s/><text:span text:style-name="T15">CROP </text:span><text:span text:style-name="T15"><text:placeholder text:placeholder-type="text"><sale.crop.name></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P22"/>
|
||||
<text:p text:style-name="P23"><text:placeholder text:placeholder-type="text"><sale.lines[0].product.name if sale.lines and sale.lines[0].product else ''></text:placeholder><text:s/><text:span text:style-name="T15">CROP </text:span><text:span text:style-name="T15"><text:placeholder text:placeholder-type="text"><sale.crop.name></text:placeholder></text:span></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Table4.A1" office:value-type="string">
|
||||
<text:p text:style-name="P24">Quality</text:p>
|
||||
<text:p text:style-name="P24"/>
|
||||
<text:p text:style-name="P26">Quality</text:p>
|
||||
<text:p text:style-name="P26"/>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Table4.A1" office:value-type="string">
|
||||
<text:p text:style-name="P32"><text:span text:style-name="T16">B/L </text:span><text:span text:style-name="T16"><text:placeholder text:placeholder-type="text"><sale.report_shipment></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P23"><text:span text:style-name="T16">B/L </text:span><text:span text:style-name="T16"><text:placeholder text:placeholder-type="text"><sale.report_shipment></text:placeholder></text:span></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Table4.A1" office:value-type="string">
|
||||
<text:p text:style-name="P24">Quantity</text:p>
|
||||
<text:p text:style-name="P24"/>
|
||||
<text:p text:style-name="P26">Quantity</text:p>
|
||||
<text:p text:style-name="P26"/>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Table4.A1" office:value-type="string">
|
||||
<text:p text:style-name="P21">ABOUT <text:placeholder text:placeholder-type="text"><sum(line.quantity for line in sale.lines)></text:placeholder><text:s/><text:placeholder text:placeholder-type="text"><sale.lines[0].unit.rec_name.upper() if sale.lines and sale.lines[0].unit else ''></text:placeholder></text:p>
|
||||
<text:p text:style-name="P34">ABOUT <text:placeholder text:placeholder-type="text"><sum(line.quantity for line in sale.lines)></text:placeholder><text:s/><text:placeholder text:placeholder-type="text"><sale.lines[0].unit.rec_name.upper() if sale.lines and sale.lines[0].unit else ''></text:placeholder><text:span text:style-name="T17">(</text:span><text:span text:style-name="T17"><text:placeholder text:placeholder-type="text"><sale.report_qt></text:placeholder></text:span><text:span text:style-name="T17">)</text:span></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:p text:style-name="P19"/>
|
||||
<text:p text:style-name="P20"/>
|
||||
<text:p text:style-name="P21"/>
|
||||
<table:table table:name="Table5" table:style-name="Table5">
|
||||
<table:table-column table:style-name="Table5.A"/>
|
||||
<table:table-column table:style-name="Table5.B"/>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Table5.A1" office:value-type="string">
|
||||
<text:p text:style-name="P25">Price</text:p>
|
||||
<text:p text:style-name="P27">Price</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Table5.A1" office:value-type="string">
|
||||
<text:p text:style-name="P22"><text:placeholder text:placeholder-type="text"><format_currency(sale.lines[0].unit_price, sale.party.lang, sale.currency) if sale.lines else ''></text:placeholder></text:p>
|
||||
<text:p text:style-name="P33"><text:placeholder text:placeholder-type="text"><format_currency(sale.lines[0].unit_price, sale.party.lang, sale.currency) if sale.lines else ''></text:placeholder><text:span text:style-name="T17">(</text:span><text:placeholder text:placeholder-type="text"><sale.report_price></text:placeholder><text:span text:style-name="T17">)</text:span></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:p text:style-name="P20"/>
|
||||
<text:p text:style-name="P20"/>
|
||||
<text:p text:style-name="P21"/>
|
||||
<text:p text:style-name="P21"/>
|
||||
<table:table table:name="Table6" table:style-name="Table6">
|
||||
<table:table-column table:style-name="Table6.A"/>
|
||||
<table:table-column table:style-name="Table6.B"/>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Table6.A1" office:value-type="string">
|
||||
<text:p text:style-name="P25"/>
|
||||
<text:p text:style-name="P27"/>
|
||||
<text:p text:style-name="Global_20_Dunavant"><text:span text:style-name="Police_20_par_20_défaut"><text:span text:style-name="T10">Delivery</text:span></text:span></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Table6.A1" office:value-type="string">
|
||||
<text:p text:style-name="P22"/>
|
||||
<text:p text:style-name="P22"><text:s/><text:span text:style-name="T15">PROMPT</text:span></text:p>
|
||||
<text:p text:style-name="P24"/>
|
||||
<text:p text:style-name="P24"><text:s/><text:span text:style-name="T15">PROMPT</text:span></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:p text:style-name="P20"/>
|
||||
<text:p text:style-name="P20"/>
|
||||
<text:p text:style-name="P20"/>
|
||||
<text:p text:style-name="P21"/>
|
||||
<text:p text:style-name="P21"/>
|
||||
<text:p text:style-name="P21"/>
|
||||
<table:table table:name="Table7" table:style-name="Table7">
|
||||
<table:table-column table:style-name="Table7.A"/>
|
||||
<table:table-column table:style-name="Table7.B"/>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Table7.A1" office:value-type="string">
|
||||
<text:p text:style-name="P24"/>
|
||||
<text:p text:style-name="P24">Terms</text:p>
|
||||
<text:p text:style-name="P26"/>
|
||||
<text:p text:style-name="P26">Terms</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Table7.A1" office:value-type="string">
|
||||
<text:p text:style-name="P23"/>
|
||||
<text:p text:style-name="P31"><text:placeholder text:placeholder-type="text"><sale.report_terms></text:placeholder></text:p>
|
||||
<text:p text:style-name="P25"/>
|
||||
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text"><sale.report_terms></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Table7.A1" office:value-type="string">
|
||||
<text:p text:style-name="P24"/>
|
||||
<text:p text:style-name="P26"/>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Table7.A1" office:value-type="string">
|
||||
<text:p text:style-name="P28"><text:span text:style-name="Police_20_par_20_défaut"><text:span text:style-name="T12"/></text:span></text:p>
|
||||
<text:p text:style-name="P30"><text:span text:style-name="Police_20_par_20_défaut"><text:span text:style-name="T12"/></text:span></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Table7.A1" office:value-type="string">
|
||||
<text:p text:style-name="P24"/>
|
||||
<text:p text:style-name="P26"/>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Table7.A1" office:value-type="string">
|
||||
<text:p text:style-name="P23"/>
|
||||
<text:p text:style-name="P25"/>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Table7.A1" office:value-type="string">
|
||||
<text:p text:style-name="P24">Payment</text:p>
|
||||
<text:p text:style-name="P26">Payment</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Table7.A1" office:value-type="string">
|
||||
<text:p text:style-name="P28"><text:span text:style-name="T12"><text:placeholder text:placeholder-type="text"><sale.payment_term.rec_name if sale.payment_term else '100% CASH AGAINST DOCUMENTS'></text:placeholder></text:span><text:span text:style-name="T12"><text:s/></text:span></text:p>
|
||||
<text:p text:style-name="P30"><text:span text:style-name="T12"><text:placeholder text:placeholder-type="text"><sale.payment_term.rec_name if sale.payment_term else '100% CASH AGAINST DOCUMENTS'></text:placeholder></text:span><text:span text:style-name="T12"><text:s/></text:span></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Table7.A1" office:value-type="string">
|
||||
<text:p text:style-name="P24"/>
|
||||
<text:p text:style-name="P26"/>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Table7.A1" office:value-type="string">
|
||||
<text:p text:style-name="P23"/>
|
||||
<text:p text:style-name="P25"/>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Table7.A1" office:value-type="string">
|
||||
<text:p text:style-name="P24">Arbitration & Rules</text:p>
|
||||
<text:p text:style-name="P26">Arbitration & Rules</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Table7.A1" office:value-type="string">
|
||||
<text:p text:style-name="P9">- ALL DISPUTES RELATING TO THIS CONTRACT WILL BE RESOLVED THROUGH ARBITRATION IN ACCORDANCE WITH THE BYLAWS OF THE INTERNATIONAL COTTON ASSOCIATION, LIMITED. THIS AGREEMENT INCORPORATES THE BYLAWS WHICH SET OUT THE ASSOCIATION’S ARBITRATION PROCEDURE. </text:p>
|
||||
<text:p text:style-name="P23">- EITHER PARTY MUST NOT TAKE ANY LEGAL ACTION OVER A DISPUTE SUITABLE FOR ARBITRATION, OTHER THAN TO OBTAIN SECURITY FOR ANY CLAIM, UNLESS THEY HAVE FIRST OBTAINED AN ARBITRATION AWARD FROM THE INTERNATIONAL COTTON ASSOCIATION, LIMITED AND EXHAUSTED ALL MEANS OF APPEAL ALLOWED BY THE ASSOCIATION’S BYLAWS.</text:p>
|
||||
<text:p text:style-name="P10">- ALL DISPUTES RELATING TO THIS CONTRACT WILL BE RESOLVED THROUGH ARBITRATION IN ACCORDANCE WITH THE BYLAWS OF THE INTERNATIONAL COTTON ASSOCIATION, LIMITED. THIS AGREEMENT INCORPORATES THE BYLAWS WHICH SET OUT THE ASSOCIATION’S ARBITRATION PROCEDURE. </text:p>
|
||||
<text:p text:style-name="P25">- EITHER PARTY MUST NOT TAKE ANY LEGAL ACTION OVER A DISPUTE SUITABLE FOR ARBITRATION, OTHER THAN TO OBTAIN SECURITY FOR ANY CLAIM, UNLESS THEY HAVE FIRST OBTAINED AN ARBITRATION AWARD FROM THE INTERNATIONAL COTTON ASSOCIATION, LIMITED AND EXHAUSTED ALL MEANS OF APPEAL ALLOWED BY THE ASSOCIATION’S BYLAWS.</text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:p text:style-name="P29"/>
|
||||
<text:p text:style-name="P31"/>
|
||||
<table:table table:name="Table8" table:style-name="Table8">
|
||||
<table:table-column table:style-name="Table8.A"/>
|
||||
<table:table-column table:style-name="Table8.B"/>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Table8.A1" office:value-type="string">
|
||||
<text:p text:style-name="P26"/>
|
||||
<text:p text:style-name="P28"><text:span text:style-name="Police_20_par_20_défaut"><text:span text:style-name="T9">THE SELLERS</text:span></text:span></text:p>
|
||||
<text:p text:style-name="P28"/>
|
||||
<text:p text:style-name="P30"><text:span text:style-name="Police_20_par_20_défaut"><text:span text:style-name="T9">THE SELLERS</text:span></text:span></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Table8.A1" office:value-type="string">
|
||||
<text:p text:style-name="P26"/>
|
||||
<text:p text:style-name="P28"><text:span text:style-name="Police_20_par_20_défaut"><text:span text:style-name="T9">THE BUYERS</text:span></text:span></text:p>
|
||||
<text:p text:style-name="P28"/>
|
||||
<text:p text:style-name="P30"><text:span text:style-name="Police_20_par_20_défaut"><text:span text:style-name="T9">THE BUYERS</text:span></text:span></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Table8.A1" office:value-type="string">
|
||||
<text:p text:style-name="P21">ICT TRADING SA</text:p>
|
||||
<text:p text:style-name="P28"><text:span text:style-name="Police_20_par_20_défaut"><text:span text:style-name="T14"><draw:frame draw:style-name="fr1" draw:name="Immagine 3" text:anchor-type="as-char" svg:y="0cm" svg:width="3.157cm" style:rel-width="scale" svg:height="3.087cm" style:rel-height="scale" draw:z-index="0"><draw:image draw:mime-type="image/png">
|
||||
<text:p text:style-name="P22">ICT TRADING SA</text:p>
|
||||
<text:p text:style-name="P30"><text:span text:style-name="Police_20_par_20_défaut"><text:span text:style-name="T14"><draw:frame draw:style-name="fr1" draw:name="Immagine 3" text:anchor-type="as-char" svg:y="0cm" svg:width="3.157cm" style:rel-width="scale" svg:height="3.087cm" style:rel-height="scale" draw:z-index="0"><draw:image draw:mime-type="image/png">
|
||||
<office:binary-data>iVBORw0KGgoAAAANSUhEUgAAAQ8AAAEJCAIAAAAFFDV0AAAAAXNSR0IArs4c6QAA/8pJREFU
|
||||
eF7sfQeAXGd19etletned7Wr3VXvsootW+69gk2HQIAkJIEUElJ+SAKBhBJqEhICxEAcsDHF
|
||||
vcmybFlW72V7r7PT5/X2n++NJBsjxZZtjAx+DPKW2Zk37333u/eee+65tOu6lH84jsMwDL61
|
||||
@@ -5601,12 +5608,12 @@
|
||||
</draw:frame></text:span></text:span></text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Table8.A1" office:value-type="string">
|
||||
<text:p text:style-name="P28"><text:span text:style-name="Police_20_par_20_défaut"><text:span text:style-name="T11"><text:placeholder text:placeholder-type="text"><sale.party.rec_name></text:placeholder></text:span></text:span></text:p>
|
||||
<text:p text:style-name="P30"><text:span text:style-name="Police_20_par_20_défaut"><text:span text:style-name="T11"><text:placeholder text:placeholder-type="text"><sale.party.rec_name></text:placeholder></text:span></text:span></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:p text:style-name="Normal"><text:span text:style-name="Police_20_par_20_défaut"><text:span text:style-name="T8">PC/AU/EL</text:span></text:span></text:p>
|
||||
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text"></for></text:placeholder></text:p>
|
||||
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text"></for></text:placeholder></text:p>
|
||||
</office:text>
|
||||
</office:body>
|
||||
</office:document>
|
||||
Reference in New Issue
Block a user