update fields contract and equipment
This commit is contained in:
parent
1c73640e95
commit
53a51aeb75
26
contract.py
26
contract.py
@ -53,6 +53,7 @@ class Contract(Workflow, ModelSQL, ModelView):
|
||||
states={
|
||||
'readonly': (Eval('state') != 'draft') | Eval('party', True),
|
||||
},help="The party who subscribes.")
|
||||
equipment = fields.Many2One('optical_equipment.equipment', "Equipment")
|
||||
contact = fields.Many2One('party.contact_mechanism', "Contact", required=True)
|
||||
invoice_address = fields.Many2One('party.address', 'Invoice Address',
|
||||
required=True, domain=[('party', '=', Eval('party'))],
|
||||
@ -71,10 +72,16 @@ class Contract(Workflow, ModelSQL, ModelView):
|
||||
states={
|
||||
'readonly': Eval('state') != 'draft',
|
||||
})
|
||||
|
||||
|
||||
maintenance_services = fields.Many2Many('optical_equipment_maintenance.service-equipment.contract',
|
||||
'contract', 'maintenance_services', "Prorogues",
|
||||
states={'readonly': Eval('state') != 'draft'})
|
||||
equipments = fields.One2Many('optical_equipment.equipment', 'contract', "Equipments",
|
||||
|
||||
current_equipments = fields.Many2Many('optical_equipment.contract-optical_equipment.equipment',
|
||||
'contract', 'equipment', "Current Equipments",
|
||||
states={'readonly': Eval('state') != 'draft'})
|
||||
history_equipments = fields.One2Many('optical_equipment.equipment', 'contract', "Equipments",
|
||||
states={'readonly': Eval('state') != 'draft'})
|
||||
price_contract = Monetary("Price Contract", digits=price_digits, currency='currency', required=True,
|
||||
states={'readonly': Eval('state') != 'draft'})
|
||||
@ -99,6 +106,7 @@ class Contract(Workflow, ModelSQL, ModelView):
|
||||
('running', 'draft'),
|
||||
('running', 'closed'),
|
||||
('running', 'cancelled'),
|
||||
('cancelled', 'draft')
|
||||
})
|
||||
cls._buttons.update({
|
||||
'draft': {'invisible': Eval('state').in_(['draft','closed'])},
|
||||
@ -149,10 +157,9 @@ class Contract(Workflow, ModelSQL, ModelView):
|
||||
@Workflow.transition('draft')
|
||||
def draft(cls, contracts):
|
||||
contract = contracts[0]
|
||||
contract.state = 'closed'
|
||||
for equipment in contract.equipments:
|
||||
for equipment in contract.current_equipments:
|
||||
equipment.state = "uncontrated"
|
||||
equipment.contract_history += (contract.id,)
|
||||
equipment.contract_history1 += (contract.id,)
|
||||
equipment.save()
|
||||
contract.save()
|
||||
|
||||
@ -171,9 +178,9 @@ class Contract(Workflow, ModelSQL, ModelView):
|
||||
@Workflow.transition('running')
|
||||
def running(cls, contracts):
|
||||
contract = contracts[0]
|
||||
for equipment in contract.equipments:
|
||||
for equipment in contract.current_equipments:
|
||||
equipment.state = "contrated"
|
||||
equipment.contract_history += (contract.id,)
|
||||
equipment.contract_history1 += (contract.id,)
|
||||
equipment.save()
|
||||
|
||||
cls.set_number(contracts)
|
||||
@ -334,16 +341,15 @@ class CreateContract(Wizard):
|
||||
|
||||
if maintenance_service.contract_origin:
|
||||
contract=maintenance_service.contract_origin
|
||||
contract.history_equipments+=tuple(equipments)
|
||||
contract.current_equipments=equipments
|
||||
contract.invoice_address=dates['invoice_address']
|
||||
contract.contact=dates['contact']
|
||||
contract.start_date=dates['start_date']
|
||||
contract.end_date=dates['end_date']
|
||||
contract.maintenance_services+=prorogues
|
||||
contract.equipments=equipments
|
||||
contract.state='draft'
|
||||
contract.price_contract=dates['unit_price']
|
||||
#contract.price_contract=maintenance_service.sale_origin.sale.total_amount
|
||||
contract.save()
|
||||
else:
|
||||
contract = Contract(party=dates['party'],
|
||||
invoice_address=dates['invoice_address'],
|
||||
@ -355,4 +361,6 @@ class CreateContract(Wizard):
|
||||
state='draft',
|
||||
price_contract=dates['unit_price']
|
||||
)
|
||||
|
||||
#raise UserError(str(contract))
|
||||
contract.save()
|
||||
|
19
equipment.py
19
equipment.py
@ -45,8 +45,9 @@ class OpticalEquipment(DeactivableMixin, Workflow, ModelSQL, ModelView):
|
||||
('contrated', "Contrated")
|
||||
], "State",
|
||||
required=True, readonly=True, sort=False)
|
||||
contract = fields.Many2One('optical_equipment.contract', "Contract", ondelete='CASCADE')
|
||||
|
||||
company = fields.Many2One('company.company', "Company", readonly=True)
|
||||
contract = fields.Many2One('optical_equipment.contract', "Contract", ondelete='CASCADE')
|
||||
location = fields.Many2One('stock.location', "Location",
|
||||
states=_states,)
|
||||
propietary = fields.Many2One('party.party',"Propietary", required=True,
|
||||
@ -97,7 +98,8 @@ class OpticalEquipment(DeactivableMixin, Workflow, ModelSQL, ModelView):
|
||||
depends=_depends)
|
||||
health_register = fields.Char("Health Register", size=None,
|
||||
states=_states,)
|
||||
contract_history = fields.Many2Many('optical_equipment.contract-optical_equipment.equipment', 'equipment','contract', "Contracts", states={'readonly': True})
|
||||
#contract_history = fields.Many2Many('optical_equipment.contract-optical_equipment.equipment', 'equipment','contract', "Contracts", states={'readonly': True})
|
||||
contract_history = fields.Function(fields.One2Many('optical_equipment.contract', 'equipment', "Contracts"), 'get_contracts_of_equipment')
|
||||
maintenance_history = fields.Function(
|
||||
fields.Many2Many('optical_equipment.maintenance-optical_equipment.equipment',
|
||||
'equipment', 'maintenance',"Maintenances"), 'get_maintenances_of_equipment')
|
||||
@ -209,6 +211,19 @@ class OpticalEquipment(DeactivableMixin, Workflow, ModelSQL, ModelView):
|
||||
else:
|
||||
raise UserError(gettext('optical_equipment.msg_not_sequence_equipment'))
|
||||
|
||||
def get_contracts_of_equipment(self, records):
|
||||
pool = Pool()
|
||||
ContractsEquipment = pool.get('optical_equipment.contract')
|
||||
contractsEquipment = set()
|
||||
|
||||
contractsEquipment = ContractsEquipment.search([('party', '=', self.propietary), ('history_equipments', 'in', [self.id])])
|
||||
contracts = []
|
||||
|
||||
for key in contractsEquipment:
|
||||
contracts.append(key.id)
|
||||
|
||||
return contracts
|
||||
|
||||
def get_maintenances_of_equipment(self, records):
|
||||
pool = Pool()
|
||||
MaintenancesEquipment = pool.get('optical_equipment.maintenance')
|
||||
|
@ -40,7 +40,7 @@ class MaintenanceService(Workflow, ModelSQL, ModelView):
|
||||
description = fields.Char("Description",states=_states)
|
||||
sale_date = fields.Char("Sale Date")
|
||||
contract_origin = fields.Reference("Contract Base", selection='get_origin_contract', select=True,
|
||||
states={'readonly': True})
|
||||
states={'readonly': If(Eval('state') == 'finished', True)})
|
||||
sale_origin = fields.Reference("Sale Origin", selection='get_origin', select=True,
|
||||
states={'readonly': True})
|
||||
company = fields.Many2One('company.company', "Company", readonly=True)
|
||||
|
@ -1,24 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<office:document xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.text">
|
||||
<office:meta><meta:creation-date>2022-09-12T08:15:04.977101930</meta:creation-date><dc:date>2023-04-10T01:15:33.119308667</dc:date><meta:editing-duration>PT3H7M2S</meta:editing-duration><meta:editing-cycles>43</meta:editing-cycles><meta:generator>LibreOffice/7.4.6.2$Linux_X86_64 LibreOffice_project/40$Build-2</meta:generator><meta:document-statistic meta:table-count="5" meta:image-count="2" meta:object-count="0" meta:page-count="3" meta:paragraph-count="93" meta:word-count="1514" meta:character-count="10527" meta:non-whitespace-character-count="9014"/></office:meta>
|
||||
<office:meta><meta:creation-date>2022-09-12T08:15:04.977101930</meta:creation-date><dc:date>2023-06-05T14:19:19.427278694</dc:date><meta:editing-duration>PT3H9M36S</meta:editing-duration><meta:editing-cycles>44</meta:editing-cycles><meta:generator>LibreOffice/7.4.6.2$Linux_X86_64 LibreOffice_project/40$Build-2</meta:generator><meta:document-statistic meta:table-count="5" meta:image-count="2" meta:object-count="0" meta:page-count="3" meta:paragraph-count="93" meta:word-count="1514" meta:character-count="10522" meta:non-whitespace-character-count="9009"/></office:meta>
|
||||
<office:settings>
|
||||
<config:config-item-set config:name="ooo:view-settings">
|
||||
<config:config-item config:name="ViewAreaTop" config:type="long">0</config:config-item>
|
||||
<config:config-item config:name="ViewAreaTop" config:type="long">68792</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">30628</config:config-item>
|
||||
<config:config-item config:name="ViewAreaHeight" config:type="long">13727</config:config-item>
|
||||
<config:config-item config:name="ViewAreaWidth" config:type="long">14406</config:config-item>
|
||||
<config:config-item config:name="ViewAreaHeight" config:type="long">13594</config:config-item>
|
||||
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
|
||||
<config:config-item-map-indexed config:name="Views">
|
||||
<config:config-item-map-entry>
|
||||
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
|
||||
<config:config-item config:name="ViewLeft" config:type="long">18868</config:config-item>
|
||||
<config:config-item config:name="ViewTop" config:type="long">7163</config:config-item>
|
||||
<config:config-item config:name="ViewLeft" config:type="long">2598</config:config-item>
|
||||
<config:config-item config:name="ViewTop" config:type="long">75874</config:config-item>
|
||||
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
|
||||
<config:config-item config:name="VisibleTop" config:type="long">0</config:config-item>
|
||||
<config:config-item config:name="VisibleRight" config:type="long">30626</config:config-item>
|
||||
<config:config-item config:name="VisibleBottom" config:type="long">13725</config:config-item>
|
||||
<config:config-item config:name="VisibleTop" config:type="long">68792</config:config-item>
|
||||
<config:config-item config:name="VisibleRight" config:type="long">14404</config:config-item>
|
||||
<config:config-item config:name="VisibleBottom" config:type="long">82384</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="ChartAutoUpdate" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="PrinterSetup" config:type="base64Binary"/>
|
||||
<config:config-item config:name="AddParaTableSpacingAtStart" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="Rsid" config:type="int">3955430</config:config-item>
|
||||
<config:config-item config:name="Rsid" config:type="int">4033500</config:config-item>
|
||||
<config:config-item config:name="EmbeddedDatabaseName" config:type="string"/>
|
||||
<config:config-item config:name="FieldAutoUpdate" config:type="boolean">true</config:config-item>
|
||||
<config:config-item config:name="OutlineLevelYieldsNumbering" config:type="boolean">false</config:config-item>
|
||||
@ -160,7 +160,7 @@
|
||||
<office:styles>
|
||||
<style:default-style style:family="graphic">
|
||||
<style:graphic-properties svg:stroke-color="#3465a4" draw:fill-color="#729fcf" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.1181in" draw:shadow-offset-y="0.1181in" draw:start-line-spacing-horizontal="0.1114in" draw:start-line-spacing-vertical="0.1114in" draw:end-line-spacing-horizontal="0.1114in" draw:end-line-spacing-vertical="0.1114in" style:flow-with-text="false"/>
|
||||
<style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:font-independent-line-spacing="false">
|
||||
<style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:writing-mode="lr-tb" style:font-independent-line-spacing="false">
|
||||
<style:tab-stops/>
|
||||
</style:paragraph-properties>
|
||||
<style:text-properties style:use-window-font-color="true" loext:opacity="0%" loext:color-lum-mod="100%" loext:color-lum-off="0%" style:font-name="DejaVu Serif" fo:font-size="12pt" fo:language="es" fo:country="CO" style:letter-kerning="true" style:font-name-asian="DejaVu Sans1" style:font-size-asian="10.5pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="DejaVu Sans1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN"/>
|
||||
@ -810,64 +810,64 @@
|
||||
<style:text-properties fo:color="#666666" loext:opacity="100%" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="026544ec" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="T22" style:family="text">
|
||||
<style:text-properties officeooo:rsid="026544ec"/>
|
||||
<style:text-properties style:text-underline-style="none" officeooo:rsid="026544ec"/>
|
||||
</style:style>
|
||||
<style:style style:name="T23" style:family="text">
|
||||
<style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-name-complex="Arial"/>
|
||||
<style:text-properties officeooo:rsid="026544ec"/>
|
||||
</style:style>
|
||||
<style:style style:name="T24" style:family="text">
|
||||
<style:text-properties fo:font-weight="bold" officeooo:rsid="001b9ac0" style:font-weight-asian="bold" style:font-name-complex="Arial"/>
|
||||
<style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-name-complex="Arial"/>
|
||||
</style:style>
|
||||
<style:style style:name="T25" style:family="text">
|
||||
<style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/>
|
||||
<style:text-properties fo:font-weight="bold" officeooo:rsid="001b9ac0" style:font-weight-asian="bold" style:font-name-complex="Arial"/>
|
||||
</style:style>
|
||||
<style:style style:name="T26" style:family="text">
|
||||
<style:text-properties fo:font-weight="bold" officeooo:rsid="001b9ac0" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/>
|
||||
<style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="T27" style:family="text">
|
||||
<style:text-properties fo:font-weight="bold" officeooo:rsid="002844c3" style:font-weight-asian="bold" style:font-name-complex="Arial"/>
|
||||
<style:text-properties fo:font-weight="bold" officeooo:rsid="001b9ac0" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="T28" style:family="text">
|
||||
<style:text-properties fo:font-weight="bold" officeooo:rsid="001b9ac0" fo:background-color="transparent" loext:char-shading-value="0" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/>
|
||||
<style:text-properties fo:font-weight="bold" officeooo:rsid="002844c3" style:font-weight-asian="bold" style:font-name-complex="Arial"/>
|
||||
</style:style>
|
||||
<style:style style:name="T29" style:family="text">
|
||||
<style:text-properties style:font-name-complex="Arial"/>
|
||||
<style:text-properties fo:font-weight="bold" officeooo:rsid="001b9ac0" fo:background-color="transparent" loext:char-shading-value="0" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="T30" style:family="text">
|
||||
<style:text-properties officeooo:rsid="001b9ac0" style:font-name-complex="Arial"/>
|
||||
<style:text-properties style:font-name-complex="Arial"/>
|
||||
</style:style>
|
||||
<style:style style:name="T31" style:family="text">
|
||||
<style:text-properties style:font-name-complex="Arial" style:font-weight-complex="bold"/>
|
||||
<style:text-properties officeooo:rsid="001b9ac0" style:font-name-complex="Arial"/>
|
||||
</style:style>
|
||||
<style:style style:name="T32" style:family="text">
|
||||
<style:text-properties officeooo:rsid="003a47a3" style:font-name-complex="Arial"/>
|
||||
<style:text-properties style:font-name-complex="Arial" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="T33" style:family="text">
|
||||
<style:text-properties fo:background-color="transparent" loext:char-shading-value="0" style:font-name-complex="Arial"/>
|
||||
<style:text-properties officeooo:rsid="003a47a3" style:font-name-complex="Arial"/>
|
||||
</style:style>
|
||||
<style:style style:name="T34" style:family="text">
|
||||
<style:text-properties officeooo:rsid="001fed33" fo:background-color="transparent" loext:char-shading-value="0" style:font-name-complex="Arial"/>
|
||||
<style:text-properties fo:background-color="transparent" loext:char-shading-value="0" style:font-name-complex="Arial"/>
|
||||
</style:style>
|
||||
<style:style style:name="T35" style:family="text">
|
||||
<style:text-properties fo:language="es" fo:country="CO" fo:font-weight="bold" style:font-weight-asian="bold" style:font-name-complex="Arial"/>
|
||||
<style:text-properties officeooo:rsid="001fed33" fo:background-color="transparent" loext:char-shading-value="0" style:font-name-complex="Arial"/>
|
||||
</style:style>
|
||||
<style:style style:name="T36" style:family="text">
|
||||
<style:text-properties fo:language="es" fo:country="CO" fo:font-weight="bold" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/>
|
||||
<style:text-properties fo:language="es" fo:country="CO" fo:font-weight="bold" style:font-weight-asian="bold" style:font-name-complex="Arial"/>
|
||||
</style:style>
|
||||
<style:style style:name="T37" style:family="text">
|
||||
<style:text-properties fo:language="es" fo:country="CO" fo:font-weight="bold" officeooo:rsid="001b9ac0" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/>
|
||||
<style:text-properties fo:language="es" fo:country="CO" fo:font-weight="bold" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="T38" style:family="text">
|
||||
<style:text-properties fo:language="es" fo:country="CO" style:font-name-complex="Arial"/>
|
||||
<style:text-properties fo:language="es" fo:country="CO" fo:font-weight="bold" officeooo:rsid="001b9ac0" style:font-weight-asian="bold" style:font-name-complex="Arial" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="T39" style:family="text">
|
||||
<style:text-properties fo:language="es" fo:country="CO" style:font-name-complex="Arial" style:font-weight-complex="bold"/>
|
||||
<style:text-properties fo:language="es" fo:country="CO" style:font-name-complex="Arial"/>
|
||||
</style:style>
|
||||
<style:style style:name="T40" style:family="text">
|
||||
<style:text-properties fo:font-weight="normal" officeooo:rsid="001b9ac0" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-weight-complex="normal"/>
|
||||
<style:text-properties fo:language="es" fo:country="CO" style:font-name-complex="Arial" style:font-weight-complex="bold"/>
|
||||
</style:style>
|
||||
<style:style style:name="T41" style:family="text">
|
||||
<style:text-properties style:text-underline-style="none" officeooo:rsid="026544ec"/>
|
||||
<style:text-properties fo:font-weight="normal" officeooo:rsid="001b9ac0" style:font-weight-asian="normal" style:font-name-complex="Arial" style:font-weight-complex="normal"/>
|
||||
</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" style:mirror="none" fo:clip="rect(0in, 0in, 0in, 0in)" 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"/>
|
||||
@ -1589,9 +1589,9 @@
|
||||
<text:sequence-decl text:display-outline-level="0" text:name="Figure"/>
|
||||
</text:sequence-decls>
|
||||
<text:p text:style-name="P32"><text:placeholder text:placeholder-type="text"><for each="subscription in records"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P15"><text:span text:style-name="T24">C</text:span><text:bookmark-start text:name="OLE_LINK2"/><text:bookmark-start text:name="OLE_LINK1"/><text:span text:style-name="T23">ONTRATO DE MANTENIMIENTO PREVENTIVO</text:span></text:p>
|
||||
<text:p text:style-name="P15"><text:span text:style-name="T25">C</text:span><text:bookmark-start text:name="OLE_LINK2"/><text:bookmark-start text:name="OLE_LINK1"/><text:span text:style-name="T24">ONTRATO DE MANTENIMIENTO PREVENTIVO</text:span></text:p>
|
||||
<text:p text:style-name="P36">DATOS GENERALES DEL CONTRATO</text:p>
|
||||
<text:p text:style-name="P16"><text:span text:style-name="T23">N° </text:span><text:span text:style-name="T26"><text:placeholder text:placeholder-type="text" text:description="subscription.number"><subscription.number></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P16"><text:span text:style-name="T24">N° </text:span><text:span text:style-name="T27"><text:placeholder text:placeholder-type="text" text:description="subscription.number"><subscription.number></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P36"/>
|
||||
<table:table table:name="Tabla1" table:style-name="Tabla1">
|
||||
<table:table-column table:style-name="Tabla1.A"/>
|
||||
@ -1625,7 +1625,7 @@
|
||||
<text:p text:style-name="P38">VALOR ANUAL</text:p>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla1.A1" office:value-type="string">
|
||||
<text:p text:style-name="P18"><text:span text:style-name="T29">LAS SUMA DE </text:span><text:span text:style-name="T33"><text:s/>(</text:span><text:span text:style-name="T34">$ <text:s/></text:span><text:span text:style-name="T28"><text:placeholder text:placeholder-type="text"><subscription.price_contract></text:placeholder></text:span><text:span text:style-name="T33">M/Cte.) ESTA SUMA SERA CANCELADA EL DÍA DE LA FIRMA DEL CONTRATO. </text:span></text:p>
|
||||
<text:p text:style-name="P18"><text:span text:style-name="T30">LAS SUMA DE </text:span><text:span text:style-name="T34"><text:s/>(</text:span><text:span text:style-name="T35">$ <text:s/></text:span><text:span text:style-name="T29"><text:placeholder text:placeholder-type="text"><subscription.price_contract></text:placeholder></text:span><text:span text:style-name="T34">M/Cte.) ESTA SUMA SERA CANCELADA EL DÍA DE LA FIRMA DEL CONTRATO. </text:span></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
<table:table-row table:style-name="Tabla1.5">
|
||||
@ -1634,7 +1634,7 @@
|
||||
<text:p text:style-name="P38"/>
|
||||
</table:table-cell>
|
||||
<table:table-cell table:style-name="Tabla1.A1" office:value-type="string">
|
||||
<text:p text:style-name="P19"><text:span text:style-name="T29">ESTE CONTRATO NO INCLUYE EL MANTENIMIENTO CORRECTIVO DE LOS EQUIPOS DE OPTOMETRÍA. SIN EMBARGO, </text:span><text:span text:style-name="T33">EL COSTO DE ESTE SERVICIO ADICIONAL TENDRÁ UN DESCUENTO DEL 50%.</text:span></text:p>
|
||||
<text:p text:style-name="P19"><text:span text:style-name="T30">ESTE CONTRATO NO INCLUYE EL MANTENIMIENTO CORRECTIVO DE LOS EQUIPOS DE OPTOMETRÍA. SIN EMBARGO, </text:span><text:span text:style-name="T34">EL COSTO DE ESTE SERVICIO ADICIONAL TENDRÁ UN DESCUENTO DEL 50%.</text:span></text:p>
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
@ -1740,47 +1740,47 @@
|
||||
</table:table-cell>
|
||||
</table:table-row>
|
||||
</table:table>
|
||||
<text:p text:style-name="P36"><text:bookmark-end text:name="OLE_LINK2"/><text:bookmark-end text:name="OLE_LINK1"/></text:p>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T29">Entre los suscritos a saber </text:span><text:span text:style-name="T23">EL CONTRATANTE Y EL CONTRATISTA</text:span><text:span text:style-name="T29">, hemos convenido celebrar el presente CONTRATO DE PRESTACIÓN DE </text:span><text:span text:style-name="T25">SERVICIOS DE MANTENIMIENTO TÉCNICO PREVENTIVO, </text:span><text:span text:style-name="T31">que</text:span><text:span text:style-name="T36"> </text:span><text:span text:style-name="T38">se regulará por las cláusulas que a continuación se expresan y en general por las disposiciones del Código Civil y Código de Comercio aplicables a la materia de qué trata este contrato: </text:span></text:p>
|
||||
<text:p text:style-name="P36"><text:bookmark-end text:name="OLE_LINK1"/><text:bookmark-end text:name="OLE_LINK2"/></text:p>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T30">Entre los suscritos a saber </text:span><text:span text:style-name="T24">EL CONTRATANTE Y EL CONTRATISTA</text:span><text:span text:style-name="T30">, hemos convenido celebrar el presente CONTRATO DE PRESTACIÓN DE </text:span><text:span text:style-name="T26">SERVICIOS DE MANTENIMIENTO TÉCNICO PREVENTIVO, </text:span><text:span text:style-name="T32">que</text:span><text:span text:style-name="T37"> </text:span><text:span text:style-name="T39">se regulará por las cláusulas que a continuación se expresan y en general por las disposiciones del Código Civil y Código de Comercio aplicables a la materia de qué trata este contrato: </text:span></text:p>
|
||||
<text:p text:style-name="P28"/>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T25">PRIMERA - OBJETO: </text:span><text:span text:style-name="T23">El CONTRATISTA</text:span><text:span text:style-name="T31"> se obliga para con </text:span><text:span text:style-name="T23">El CONTRATANTE</text:span><text:span text:style-name="T31"> a ejecutar los trabajos y demás actividades propias del servicio contratado, el cual debe realizar de conformidad con las condiciones y cláusulas del presente documento y que consistirá en el mantenimiento técnico preventivo sin repuestos a los equipos de optometría de propiedad del CONTRATANTE los cuales se encuentran relacionados e identificados en el anexo 1 del presente documento. </text:span></text:p>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T26">PRIMERA - OBJETO: </text:span><text:span text:style-name="T24">El CONTRATISTA</text:span><text:span text:style-name="T32"> se obliga para con </text:span><text:span text:style-name="T24">El CONTRATANTE</text:span><text:span text:style-name="T32"> a ejecutar los trabajos y demás actividades propias del servicio contratado, el cual debe realizar de conformidad con las condiciones y cláusulas del presente documento y que consistirá en el mantenimiento técnico preventivo sin repuestos a los equipos de optometría de propiedad del CONTRATANTE los cuales se encuentran relacionados e identificados en el anexo 1 del presente documento. </text:span></text:p>
|
||||
<text:p text:style-name="P29"/>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T23">SEGUNDA - VALOR: </text:span><text:span text:style-name="T31">El valor de este contrato será el señalado en la sección de datos generales</text:span><text:span text:style-name="T25">. </text:span></text:p>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T24">SEGUNDA - VALOR: </text:span><text:span text:style-name="T32">El valor de este contrato será el señalado en la sección de datos generales</text:span><text:span text:style-name="T26">. </text:span></text:p>
|
||||
<text:p text:style-name="P35"/>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T23">TERCERA - FORMA DE PAGO: EL CONTRATANTE </text:span><text:span text:style-name="T31">pagara </text:span><text:span text:style-name="T23">AL CONTRATISTA</text:span><text:span text:style-name="T31"> el valor del contrato en a la firma del presente documento.</text:span></text:p>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T24">TERCERA - FORMA DE PAGO: EL CONTRATANTE </text:span><text:span text:style-name="T32">pagara </text:span><text:span text:style-name="T24">AL CONTRATISTA</text:span><text:span text:style-name="T32"> el valor del contrato en a la firma del presente documento.</text:span></text:p>
|
||||
<text:p text:style-name="P29"/>
|
||||
<text:p text:style-name="P21"><text:span text:style-name="T23">CUARTA </text:span><text:span text:style-name="T25">- PLAZO:</text:span><text:span text:style-name="T29"> El plazo para la ejecución del contrato será contado desde la fecha de inicio y tendrá una duración de un año. Es decir, que este contrato inicia el día </text:span><text:span text:style-name="T26"><text:placeholder text:placeholder-type="text" text:description="subscription.start_date"><subscription.start_date></text:placeholder></text:span><text:span text:style-name="T29"><text:s/>y finaliza el </text:span><text:span text:style-name="T26"><text:placeholder text:placeholder-type="text" text:description="subscription.end_date"><subscription.end_date></text:placeholder></text:span><text:span text:style-name="T29"><text:s/>. </text:span></text:p>
|
||||
<text:p text:style-name="P21"><text:span text:style-name="T24">CUARTA </text:span><text:span text:style-name="T26">- PLAZO:</text:span><text:span text:style-name="T30"> El plazo para la ejecución del contrato será contado desde la fecha de inicio y tendrá una duración de un año. Es decir, que este contrato inicia el día </text:span><text:span text:style-name="T27"><text:placeholder text:placeholder-type="text" text:description="subscription.start_date"><subscription.start_date></text:placeholder></text:span><text:span text:style-name="T30"><text:s/>y finaliza el </text:span><text:span text:style-name="T27"><text:placeholder text:placeholder-type="text" text:description="subscription.end_date"><subscription.end_date></text:placeholder></text:span><text:span text:style-name="T30"><text:s/>. </text:span></text:p>
|
||||
<text:p text:style-name="P28"/>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T25">QUINTA</text:span><text:span text:style-name="T29"> </text:span><text:span text:style-name="T36">– PRORROGA:</text:span><text:span text:style-name="T38"> Si vencido el plazo establecido para la ejecución del contrato de prestación de servicios de mantenimiento técnico preventivo </text:span><text:span text:style-name="T36">EL CONTRATANTE </text:span><text:span text:style-name="T39">no ha comunicado</text:span><text:span text:style-name="T36"> AL CONTRATISTA</text:span><text:span text:style-name="T39"> la intención de dar por terminado el contrato de manera escrita, con una antelación de dos meses al vencimiento del contrato este se entenderá prorrogado automáticamente, por un tiempo al igualmente pactado y por un valor al inicialmente fijado más el incremento del IPC del año anterior. El contrato se podrá prorrogar de manera indefinida y en cada una de sus prorrogas se seguirán los lineamientos establecidos aquí, respectivamente. </text:span><text:span text:style-name="T36">PARÁGRAFO:</text:span><text:span text:style-name="T39"> </text:span><text:span text:style-name="T36">EL CONTRATATE</text:span><text:span text:style-name="T39"> deberá cancelar el valor del contrato dentro de los 10 días siguientes a la fecha de inicio de cada una sus prorrogas y </text:span><text:span text:style-name="T36">EL CONTRATISTA</text:span><text:span text:style-name="T39"> deberá entregar la prórroga del contrato.</text:span></text:p>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T26">QUINTA</text:span><text:span text:style-name="T30"> </text:span><text:span text:style-name="T37">– PRORROGA:</text:span><text:span text:style-name="T39"> Si vencido el plazo establecido para la ejecución del contrato de prestación de servicios de mantenimiento técnico preventivo </text:span><text:span text:style-name="T37">EL CONTRATANTE </text:span><text:span text:style-name="T40">no ha comunicado</text:span><text:span text:style-name="T37"> AL CONTRATISTA</text:span><text:span text:style-name="T40"> la intención de dar por terminado el contrato de manera escrita, con una antelación de dos meses al vencimiento del contrato este se entenderá prorrogado automáticamente, por un tiempo al igualmente pactado y por un valor al inicialmente fijado más el incremento del IPC del año anterior. El contrato se podrá prorrogar de manera indefinida y en cada una de sus prorrogas se seguirán los lineamientos establecidos aquí, respectivamente. </text:span><text:span text:style-name="T37">PARÁGRAFO:</text:span><text:span text:style-name="T40"> </text:span><text:span text:style-name="T37">EL CONTRATATE</text:span><text:span text:style-name="T40"> deberá cancelar el valor del contrato dentro de los 10 días siguientes a la fecha de inicio de cada una sus prorrogas y </text:span><text:span text:style-name="T37">EL CONTRATISTA</text:span><text:span text:style-name="T40"> deberá entregar la prórroga del contrato.</text:span></text:p>
|
||||
<text:p text:style-name="P49"/>
|
||||
<text:p text:style-name="P20"><text:soft-page-break/><text:span text:style-name="T36">SEXTA – OBLIGACIONES DEL CONTRATANTE: <text:s/></text:span><text:span text:style-name="T23">1</text:span><text:span text:style-name="T29">. Cumplir a cabalidad con las cláusulas pactadas en el presente contrato, las cuales solamente podrán ser modificadas por medio de documento adicional firmado por las partes. </text:span><text:span text:style-name="T23">2.</text:span><text:span text:style-name="T29"> Atender con diligencia, celeridad y prioridad las indicaciones que </text:span><text:span text:style-name="T23">EL CONTRATISTA </text:span><text:span text:style-name="T29">le</text:span><text:span text:style-name="T23"> </text:span><text:span text:style-name="T29">realice con el objetivo de cumplir con el desarrollo normal del objeto del contrato. </text:span><text:span text:style-name="T25">3.</text:span><text:span text:style-name="T29"> Pagar oportunamente a </text:span><text:span text:style-name="T23">EL CONTRATISTA</text:span><text:span text:style-name="T29"> el valor de los bienes y/o servicios contratados en la forma, fecha y valor pactados en el contrato durante su vigencia y sus prorrogas.</text:span><text:span text:style-name="T35"> 4.</text:span><text:span text:style-name="T39"> Entregar toda la información que solicite </text:span><text:span text:style-name="T35">EL CONTRATISTA</text:span><text:span text:style-name="T39"> para poder desarrollar con normalidad su labor de mantenimiento técnico preventivo. </text:span><text:span text:style-name="T36">5.</text:span><text:span text:style-name="T39"> Realizar los pagos adicionales que surjan durante la realización del mantenimiento preventivo y/o correctivo si se llega a contratar de manera adicional</text:span><text:bookmark text:name="_GoBack"/><text:span text:style-name="T39">. </text:span><text:span text:style-name="T36">6.</text:span><text:span text:style-name="T39"> </text:span><text:span text:style-name="T36">EL CONTRATANTE </text:span><text:span text:style-name="T39">deberá abstenerse</text:span><text:span text:style-name="T36"> </text:span><text:span text:style-name="T39">de realizar oferta alguna de trabajo o contrato al personal o dependientes del </text:span><text:span text:style-name="T36">CONTRATISTA.</text:span><text:span text:style-name="T39"> </text:span></text:p>
|
||||
<text:p text:style-name="P20"><text:soft-page-break/><text:span text:style-name="T37">SEXTA – OBLIGACIONES DEL CONTRATANTE: <text:s/></text:span><text:span text:style-name="T24">1</text:span><text:span text:style-name="T30">. Cumplir a cabalidad con las cláusulas pactadas en el presente contrato, las cuales solamente podrán ser modificadas por medio de documento adicional firmado por las partes. </text:span><text:span text:style-name="T24">2.</text:span><text:span text:style-name="T30"> Atender con diligencia, celeridad y prioridad las indicaciones que </text:span><text:span text:style-name="T24">EL CONTRATISTA </text:span><text:span text:style-name="T30">le</text:span><text:span text:style-name="T24"> </text:span><text:span text:style-name="T30">realice con el objetivo de cumplir con el desarrollo normal del objeto del contrato. </text:span><text:span text:style-name="T26">3.</text:span><text:span text:style-name="T30"> Pagar oportunamente a </text:span><text:span text:style-name="T24">EL CONTRATISTA</text:span><text:span text:style-name="T30"> el valor de los bienes y/o servicios contratados en la forma, fecha y valor pactados en el contrato durante su vigencia y sus prorrogas.</text:span><text:span text:style-name="T36"> 4.</text:span><text:span text:style-name="T40"> Entregar toda la información que solicite </text:span><text:span text:style-name="T36">EL CONTRATISTA</text:span><text:span text:style-name="T40"> para poder desarrollar con normalidad su labor de mantenimiento técnico preventivo. </text:span><text:span text:style-name="T37">5.</text:span><text:span text:style-name="T40"> Realizar los pagos adicionales que surjan durante la realización del mantenimiento preventivo y/o correctivo si se llega a contratar de manera adicional</text:span><text:bookmark text:name="_GoBack"/><text:span text:style-name="T40">. </text:span><text:span text:style-name="T37">6.</text:span><text:span text:style-name="T40"> </text:span><text:span text:style-name="T37">EL CONTRATANTE </text:span><text:span text:style-name="T40">deberá abstenerse</text:span><text:span text:style-name="T37"> </text:span><text:span text:style-name="T40">de realizar oferta alguna de trabajo o contrato al personal o dependientes del </text:span><text:span text:style-name="T37">CONTRATISTA.</text:span><text:span text:style-name="T40"> </text:span></text:p>
|
||||
<text:p text:style-name="P51"/>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T36">SÉPTIMA </text:span><text:span text:style-name="T25">OBLIGACIONES DEL CONTRATISTA:</text:span><text:span text:style-name="T29"> </text:span><text:span text:style-name="T23">1</text:span><text:span text:style-name="T29">. Cumplir a cabalidad con las cláusulas pactadas en el presente contrato, las cuales solamente podrán ser modificadas por medio de documento adicional firmado por las partes. </text:span><text:span text:style-name="T23">2. </text:span><text:span text:style-name="T38">Realizar el mantenimiento preventivo a los equipos de optometría de propiedad del </text:span><text:span text:style-name="T35">CONTRATANTE.</text:span><text:span text:style-name="T38"> </text:span><text:span text:style-name="T25">3</text:span><text:span text:style-name="T38">. </text:span><text:span text:style-name="T29">Realizar las observaciones que considere pertinentes dentro de la ejecución del objeto del presente contrato. </text:span><text:span text:style-name="T25">4</text:span><text:span text:style-name="T38">. Obrar con seriedad y diligencia en el servicio contratado</text:span><text:span text:style-name="T36"> 5</text:span><text:span text:style-name="T38">. Atender las solicitudes y recomendaciones que haga </text:span><text:span text:style-name="T36">EL CONTRATANTE</text:span><text:span text:style-name="T38"> o sus delegados, con la mayor prontitud. </text:span></text:p>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T37">SÉPTIMA </text:span><text:span text:style-name="T26">OBLIGACIONES DEL CONTRATISTA:</text:span><text:span text:style-name="T30"> </text:span><text:span text:style-name="T24">1</text:span><text:span text:style-name="T30">. Cumplir a cabalidad con las cláusulas pactadas en el presente contrato, las cuales solamente podrán ser modificadas por medio de documento adicional firmado por las partes. </text:span><text:span text:style-name="T24">2. </text:span><text:span text:style-name="T39">Realizar el mantenimiento preventivo a los equipos de optometría de propiedad del </text:span><text:span text:style-name="T36">CONTRATANTE.</text:span><text:span text:style-name="T39"> </text:span><text:span text:style-name="T26">3</text:span><text:span text:style-name="T39">. </text:span><text:span text:style-name="T30">Realizar las observaciones que considere pertinentes dentro de la ejecución del objeto del presente contrato. </text:span><text:span text:style-name="T26">4</text:span><text:span text:style-name="T39">. Obrar con seriedad y diligencia en el servicio contratado</text:span><text:span text:style-name="T37"> 5</text:span><text:span text:style-name="T39">. Atender las solicitudes y recomendaciones que haga </text:span><text:span text:style-name="T37">EL CONTRATANTE</text:span><text:span text:style-name="T39"> o sus delegados, con la mayor prontitud. </text:span></text:p>
|
||||
<text:p text:style-name="P50"/>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T35">OCTAVA</text:span><text:span text:style-name="T36"> – </text:span><text:span text:style-name="T25">CAUSALES DE TERMINACION DEL CONTRATO: </text:span><text:span text:style-name="T29">El presente contrato terminará por acuerdo entre las partes y unilateralmente por el incumplimiento de las obligaciones derivadas del contrato. Finalmente, por la ocurrencia de hechos imprevisibles que imposibiliten su cumplimiento. </text:span></text:p>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T36">OCTAVA</text:span><text:span text:style-name="T37"> – </text:span><text:span text:style-name="T26">CAUSALES DE TERMINACION DEL CONTRATO: </text:span><text:span text:style-name="T30">El presente contrato terminará por acuerdo entre las partes y unilateralmente por el incumplimiento de las obligaciones derivadas del contrato. Finalmente, por la ocurrencia de hechos imprevisibles que imposibiliten su cumplimiento. </text:span></text:p>
|
||||
<text:p text:style-name="P28"/>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T36">NOVENA - </text:span><text:span text:style-name="T23">CERTIFICADOS: EL CONTRATISTA </text:span><text:span text:style-name="T29">expedirá las respectivas hojas de vida y/o certificados de los equipos para que </text:span><text:span text:style-name="T23">EL CONTRATANTE </text:span><text:span text:style-name="T29">puede presentarlos ante la autoridad competente. Estos serán expedidos por </text:span><text:span text:style-name="T23">EL CONTRATISTA</text:span><text:span text:style-name="T29"> en una sola oportunidad durante la vigencia del contrato. </text:span><text:span text:style-name="T36">PARÁGRAFO: </text:span><text:span text:style-name="T31">En caso de que </text:span><text:span text:style-name="T25">EL CONTRATANTE</text:span><text:span text:style-name="T31"> se traslade o mueva los equipos y deban volverse a generar los documentos; se generara un costo adicional.</text:span></text:p>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T37">NOVENA - </text:span><text:span text:style-name="T24">CERTIFICADOS: EL CONTRATISTA </text:span><text:span text:style-name="T30">expedirá las respectivas hojas de vida y/o certificados de los equipos para que </text:span><text:span text:style-name="T24">EL CONTRATANTE </text:span><text:span text:style-name="T30">puede presentarlos ante la autoridad competente. Estos serán expedidos por </text:span><text:span text:style-name="T24">EL CONTRATISTA</text:span><text:span text:style-name="T30"> en una sola oportunidad durante la vigencia del contrato. </text:span><text:span text:style-name="T37">PARÁGRAFO: </text:span><text:span text:style-name="T32">En caso de que </text:span><text:span text:style-name="T26">EL CONTRATANTE</text:span><text:span text:style-name="T32"> se traslade o mueva los equipos y deban volverse a generar los documentos; se generara un costo adicional.</text:span></text:p>
|
||||
<text:p text:style-name="P28"/>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T35">DECIMA - </text:span><text:span text:style-name="T36">DERECHOS LABORALES Y SEGURIDAD SOCIAL: </text:span><text:span text:style-name="T25">El CONTRATISTA</text:span><text:span text:style-name="T29"> en su calidad de persona jurídica, garantizara el pago de los derechos laborales y seguridad social de sus trabajadores y/o dependientes que envié para el cumplimiento del objeto del contrato. Razón por la cual, </text:span><text:span text:style-name="T23">EL CONTRATISTA</text:span><text:span text:style-name="T29"> mantendrá indemne a </text:span><text:span text:style-name="T23">EL CONTRATANTE</text:span><text:span text:style-name="T29"> ante cualquier demanda o acción judicial o administrativa con ocasión de la ejecución del presente contrato; relacionada con el derecho laboral y la seguridad social. </text:span></text:p>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T36">DECIMA - </text:span><text:span text:style-name="T37">DERECHOS LABORALES Y SEGURIDAD SOCIAL: </text:span><text:span text:style-name="T26">El CONTRATISTA</text:span><text:span text:style-name="T30"> en su calidad de persona jurídica, garantizara el pago de los derechos laborales y seguridad social de sus trabajadores y/o dependientes que envié para el cumplimiento del objeto del contrato. Razón por la cual, </text:span><text:span text:style-name="T24">EL CONTRATISTA</text:span><text:span text:style-name="T30"> mantendrá indemne a </text:span><text:span text:style-name="T24">EL CONTRATANTE</text:span><text:span text:style-name="T30"> ante cualquier demanda o acción judicial o administrativa con ocasión de la ejecución del presente contrato; relacionada con el derecho laboral y la seguridad social. </text:span></text:p>
|
||||
<text:p text:style-name="P28"/>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T23">DECIMA PRIMERA – </text:span><text:span text:style-name="T25">PERFECCIONAMIENTO:</text:span><text:span text:style-name="T29"> El contrato se entiende perfeccionado una vez suscrito por las partes, de conformidad con lo establecido en la ley y para todos sus efectos presta merito ejecutivo.</text:span></text:p>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T24">DECIMA PRIMERA – </text:span><text:span text:style-name="T26">PERFECCIONAMIENTO:</text:span><text:span text:style-name="T30"> El contrato se entiende perfeccionado una vez suscrito por las partes, de conformidad con lo establecido en la ley y para todos sus efectos presta merito ejecutivo.</text:span></text:p>
|
||||
<text:p text:style-name="P29"/>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T23">DECIMA SEGUNDA </text:span><text:span text:style-name="T25">- VALIDEZ:</text:span><text:span text:style-name="T29"> El presente contrato anula todo contrato de prestación de servicios de mantenimiento preventivo anterior suscrito por las partes y solamente podrá ser modificado por escrito suscrito por la Partes. </text:span></text:p>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T24">DECIMA SEGUNDA </text:span><text:span text:style-name="T26">- VALIDEZ:</text:span><text:span text:style-name="T30"> El presente contrato anula todo contrato de prestación de servicios de mantenimiento preventivo anterior suscrito por las partes y solamente podrá ser modificado por escrito suscrito por la Partes. </text:span></text:p>
|
||||
<text:p text:style-name="P28"/>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T25">DECIMA TERCERA – CESION: El CONTRATISTA </text:span><text:span text:style-name="T29">no podrá ceder parcial ni totalmente la ejecución del presente contrato a un tercero, sin la previa, expresa y escrita autorización del</text:span><text:span text:style-name="T25"> CONTRATANTE.</text:span></text:p>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T25">DECIMA CUARTA – COFIDENCIALIDAD:</text:span><text:span text:style-name="T31"> Las partes acuerdan que ellas y sus empleados se abstendrán de divulgar, publicar o comunicar, directa o indirectamente a terceros la información, documentos o fotografías, relacionados con los documentos que conozcan en desarrollo y por virtud del presente contrato o por cualquier otra causa. Para estos efectos las partes convienen que toda información que reciba </text:span><text:span text:style-name="T25">EL CONTRATISTA</text:span><text:span text:style-name="T31"> o </text:span><text:span text:style-name="T25">EL CONTRATANTE,</text:span><text:span text:style-name="T31"> para la ejecución del presente contrato, se considera importante y confidencial y divulgarla y/o transmitirla, puede lesionar los intereses públicos de las partes.</text:span></text:p>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T26">DECIMA TERCERA – CESION: El CONTRATISTA </text:span><text:span text:style-name="T30">no podrá ceder parcial ni totalmente la ejecución del presente contrato a un tercero, sin la previa, expresa y escrita autorización del</text:span><text:span text:style-name="T26"> CONTRATANTE.</text:span></text:p>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T26">DECIMA CUARTA – COFIDENCIALIDAD:</text:span><text:span text:style-name="T32"> Las partes acuerdan que ellas y sus empleados se abstendrán de divulgar, publicar o comunicar, directa o indirectamente a terceros la información, documentos o fotografías, relacionados con los documentos que conozcan en desarrollo y por virtud del presente contrato o por cualquier otra causa. Para estos efectos las partes convienen que toda información que reciba </text:span><text:span text:style-name="T26">EL CONTRATISTA</text:span><text:span text:style-name="T32"> o </text:span><text:span text:style-name="T26">EL CONTRATANTE,</text:span><text:span text:style-name="T32"> para la ejecución del presente contrato, se considera importante y confidencial y divulgarla y/o transmitirla, puede lesionar los intereses públicos de las partes.</text:span></text:p>
|
||||
<text:p text:style-name="P35"/>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T25">DECIMA QUINTA – CLÁUSULA PENAL: </text:span><text:span text:style-name="T29">En el evento de incumplimiento por parte del </text:span><text:span text:style-name="T25">CONTRATISTA o DEL CONTRATANTE</text:span><text:span text:style-name="T29"> a las obligaciones a su cargo contenidas en la ley o en este Contrato. Deberá pagar el 30% del valor total del contrato, a título de pena.</text:span></text:p>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T26">DECIMA QUINTA – CLÁUSULA PENAL: </text:span><text:span text:style-name="T30">En el evento de incumplimiento por parte del </text:span><text:span text:style-name="T26">CONTRATISTA o DEL CONTRATANTE</text:span><text:span text:style-name="T30"> a las obligaciones a su cargo contenidas en la ley o en este Contrato. Deberá pagar el 30% del valor total del contrato, a título de pena.</text:span></text:p>
|
||||
<text:p text:style-name="P28"/>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T25">DECIMA SEXTA – </text:span><text:span text:style-name="T36">CLÁUSULA COMPROMISORIA: </text:span><text:span text:style-name="T38">Toda controversia o diferencia relativa a este contrato, su ejecución y liquidación, se resolverá por un tribunal de arbitramento que por economía será designado por las partes, está conformado por solamente un árbitro y será en el domicilio contractual establecido en este contrato. El tribunal de Arbitramento se sujetará a lo dispuesto en el decreto 1818 de 1998 o estatuto orgánico de los sistemas alternativos de solución de conflictos y demás normas concordantes</text:span><text:span text:style-name="T36">.</text:span></text:p>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T26">DECIMA SEXTA – </text:span><text:span text:style-name="T37">CLÁUSULA COMPROMISORIA: </text:span><text:span text:style-name="T39">Toda controversia o diferencia relativa a este contrato, su ejecución y liquidación, se resolverá por un tribunal de arbitramento que por economía será designado por las partes, está conformado por solamente un árbitro y será en el domicilio contractual establecido en este contrato. El tribunal de Arbitramento se sujetará a lo dispuesto en el decreto 1818 de 1998 o estatuto orgánico de los sistemas alternativos de solución de conflictos y demás normas concordantes</text:span><text:span text:style-name="T37">.</text:span></text:p>
|
||||
<text:p text:style-name="P28"/>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T25">DECIMA SÉPTIMA </text:span><text:span text:style-name="T23">– </text:span><text:span text:style-name="T25">DOMICILIO CONTRACTUAL Y NOTIFICACIONES</text:span><text:span text:style-name="T29">: Las partes contratantes convienen que, para todos los efectos legales, judiciales o extrajudiciales, que diere a lugar el presente contrato será el domicilio la ciudad de Bogotá D.C., las direcciones de Notificación de las partes serán las establecidas en la parte inicial del presente contrato. Las comunicaciones remitidas a las direcciones aquí señaladas serán válidas aún en el caso en que las partes hayan variado su ubicación si, antes de la fecha de la comunicación, la parte que ha variado su dirección no ha avisado por escrito a la otra sobre este hecho, las cuales se tendrán por recibidas y producirán efectos al tercer día hábil siguiente al recibo de la comunicación.</text:span></text:p>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T26">DECIMA SÉPTIMA </text:span><text:span text:style-name="T24">– </text:span><text:span text:style-name="T26">DOMICILIO CONTRACTUAL Y NOTIFICACIONES</text:span><text:span text:style-name="T30">: Las partes contratantes convienen que, para todos los efectos legales, judiciales o extrajudiciales, que diere a lugar el presente contrato será el domicilio la ciudad de Bogotá D.C., las direcciones de Notificación de las partes serán las establecidas en la parte inicial del presente contrato. Las comunicaciones remitidas a las direcciones aquí señaladas serán válidas aún en el caso en que las partes hayan variado su ubicación si, antes de la fecha de la comunicación, la parte que ha variado su dirección no ha avisado por escrito a la otra sobre este hecho, las cuales se tendrán por recibidas y producirán efectos al tercer día hábil siguiente al recibo de la comunicación.</text:span></text:p>
|
||||
<text:p text:style-name="P39"/>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T25">DECIMA OCTAVA - </text:span><text:span text:style-name="T23">IMPUESTOS: </text:span><text:span text:style-name="T29">Los impuestos que se generen por la ejecución y desarrollo de este contrato, serán asumidos por las partes de conformidad con lo establecido por régimen tributario y legal, y demás directrices establecidas por la DIAN.</text:span></text:p>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T26">DECIMA OCTAVA - </text:span><text:span text:style-name="T24">IMPUESTOS: </text:span><text:span text:style-name="T30">Los impuestos que se generen por la ejecución y desarrollo de este contrato, serán asumidos por las partes de conformidad con lo establecido por régimen tributario y legal, y demás directrices establecidas por la DIAN.</text:span></text:p>
|
||||
<text:p text:style-name="P28"><text:soft-page-break/></text:p>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T25">DECIMA NOVENA - FORMALIDADES E INEFICACIA:</text:span><text:span text:style-name="T29"> Cualquier modificación deberá costar por escrito, con la firma de la totalidad de las partes, no tendrá validez acuerdos verbales de ningún tipo, ya que las partes acuerdan que este es un contrato que exige como formalidad para su modificación, el medio escrito como única prueba de validez de dichos pactos, así como para exigir su cumplimiento o el pago de las obligaciones que de él surjan.</text:span></text:p>
|
||||
<text:p text:style-name="P20"><text:span text:style-name="T26">DECIMA NOVENA - FORMALIDADES E INEFICACIA:</text:span><text:span text:style-name="T30"> Cualquier modificación deberá costar por escrito, con la firma de la totalidad de las partes, no tendrá validez acuerdos verbales de ningún tipo, ya que las partes acuerdan que este es un contrato que exige como formalidad para su modificación, el medio escrito como única prueba de validez de dichos pactos, así como para exigir su cumplimiento o el pago de las obligaciones que de él surjan.</text:span></text:p>
|
||||
<text:p text:style-name="P28"/>
|
||||
<text:p text:style-name="P22"><text:span text:style-name="T29">Para constancia, el presente Contrato es suscrito en la ciudad de Bogotá el día </text:span><text:span text:style-name="T40"><text:placeholder text:placeholder-type="text" text:description="subscription.start_date"><subscription.start_date></text:placeholder></text:span><text:span text:style-name="T33">, en dos (2) ejemplares de igual valor, cada uno de ellos con destino a cada una de las Partes.</text:span></text:p>
|
||||
<text:p text:style-name="P22"><text:span text:style-name="T30">Para constancia, el presente Contrato es suscrito en la ciudad de Bogotá el día </text:span><text:span text:style-name="T41"><text:placeholder text:placeholder-type="text" text:description="subscription.start_date"><subscription.start_date></text:placeholder></text:span><text:span text:style-name="T34">, en dos (2) ejemplares de igual valor, cada uno de ellos con destino a cada una de las Partes.</text:span></text:p>
|
||||
<text:p text:style-name="P39"/>
|
||||
<text:p text:style-name="P39"/>
|
||||
<text:p text:style-name="P23"><draw:frame draw:style-name="fr2" draw:name="Image1" text:anchor-type="char" svg:x="0.0138in" svg:y="0.1118in" svg:width="1.7283in" svg:height="0.9563in" draw:z-index="5"><draw:image draw:mime-type="image/png">
|
||||
@ -4875,7 +4875,7 @@
|
||||
gg==
|
||||
</office:binary-data>
|
||||
</draw:image>
|
||||
</draw:frame><text:span text:style-name="T23">EL CONTRATISTA<text:tab/></text:span><text:span text:style-name="T27">EL CONTRATANTE</text:span></text:p>
|
||||
</draw:frame><text:span text:style-name="T24">EL CONTRATISTA<text:tab/></text:span><text:span text:style-name="T28">EL CONTRATANTE</text:span></text:p>
|
||||
<text:p text:style-name="P40"/>
|
||||
<text:p text:style-name="P40"/>
|
||||
<text:p text:style-name="P40"/>
|
||||
@ -4886,11 +4886,11 @@
|
||||
</draw:line><draw:line text:anchor-type="paragraph" draw:z-index="1" draw:name="Línea horizontal 4" draw:style-name="gr1" draw:text-style-name="P61" svg:x1="3.6311in" svg:y1="0.0543in" svg:x2="6.7768in" svg:y2="0.0516in">
|
||||
<text:p/>
|
||||
</draw:line><text:tab/><text:tab/><text:tab/></text:p>
|
||||
<text:p text:style-name="P24"><text:span text:style-name="T35">JESÚS ANTONIO GIIRALDO<text:tab/></text:span><text:span text:style-name="T37"><text:placeholder text:placeholder-type="text" text:description="subscription.party.name"><subscription.party.name></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P41"><text:span text:style-name="T29">CC 80.173.191 DE BOGOTÁ <text:s text:c="64"/></text:span><text:span text:style-name="T32">NIT/CC </text:span><text:span text:style-name="T30"><text:placeholder text:placeholder-type="text" text:description="subscription.party.tax_identifier.code"><subscription.party.tax_identifier.code></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P24"><text:span text:style-name="T36">JESÚS ANTONIO GIIRALDO<text:tab/></text:span><text:span text:style-name="T38"><text:placeholder text:placeholder-type="text" text:description="subscription.party.name"><subscription.party.name></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P41"><text:span text:style-name="T30">CC 80.173.191 DE BOGOTÁ <text:s text:c="64"/></text:span><text:span text:style-name="T33">NIT/CC </text:span><text:span text:style-name="T31"><text:placeholder text:placeholder-type="text" text:description="subscription.party.tax_identifier.code"><subscription.party.tax_identifier.code></text:placeholder></text:span></text:p>
|
||||
<text:p text:style-name="P40">REPRESENTANTE LEGAL</text:p>
|
||||
<text:p text:style-name="P52">SMART VISION S.A.S</text:p>
|
||||
<text:p text:style-name="P23"><text:span text:style-name="T35">NIT </text:span><text:span text:style-name="T23">901091201-1</text:span></text:p>
|
||||
<text:p text:style-name="P23"><text:span text:style-name="T36">NIT </text:span><text:span text:style-name="T24">901091201-1</text:span></text:p>
|
||||
<text:p text:style-name="P40"/>
|
||||
<text:p text:style-name="P40"/>
|
||||
<text:p text:style-name="P37"/>
|
||||
@ -4916,7 +4916,7 @@
|
||||
</table:table-row>
|
||||
<table:table-row>
|
||||
<table:table-cell table:style-name="Tabla5.A2" table:number-columns-spanned="3" office:value-type="string">
|
||||
<text:p text:style-name="P33"><text:placeholder text:placeholder-type="text" text:description="for each="equipment in subscription.equipments"><for each="equipment in subscription.equipments"></text:placeholder></text:p>
|
||||
<text:p text:style-name="P33"><text:placeholder text:placeholder-type="text" text:description="for each="equipment in subscription.current_equipments""><for each="equipment in subscription.current_equipments"></text:placeholder></text:p>
|
||||
</table:table-cell>
|
||||
<table:covered-table-cell/>
|
||||
<table:covered-table-cell/>
|
||||
|
@ -27,7 +27,10 @@ this repository contains the full copyright notices and license terms. -->
|
||||
<field name="maintenance_services"/>
|
||||
</page>
|
||||
<page string="Equipments" id="equipments">
|
||||
<field name="equipments"/>
|
||||
<field name="current_equipments"/>
|
||||
</page>
|
||||
<page string="History Equipments" id="history_equipments">
|
||||
<field name="history_equipments"/>
|
||||
</page>
|
||||
<page string="Other Info" id="other">
|
||||
<label name="company"/>
|
||||
|
Loading…
Reference in New Issue
Block a user