calibration

This commit is contained in:
2022-10-04 01:44:02 -05:00
parent e630edb389
commit a1b4cc5616
33 changed files with 595 additions and 1144 deletions

View File

@@ -0,0 +1,11 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level
this repository contains the full copyright notices and license terms. -->
<form>
<label name="maintenance_service"/>
<field name="maintenance_service"/>
<label name="technical"/>
<field name="technical"/>
<label name="estimated_agended"/>
<field name="estimated_agended"/>
</form>

View File

@@ -10,9 +10,6 @@ this repository contains the full copyright notices and license terms. -->
<field name="number"/>
<label name="contact"/>
<field name="contact"/>
<label name="invoice_recurrence"/>
<field name="invoice_recurrence"/>
<newline/>
<label name="description"/>
<field name="description" colspan="3"/>
<label name="reference"/>
@@ -25,13 +22,12 @@ this repository contains the full copyright notices and license terms. -->
<field name="end_date"/>
<notebook colspan="6">
<page string="Contracts and Prorogues" id="contracts">
<separator id="current_contract" string="Current Contract" colspan="6"/>
<field name="contract"/>
<newline/>
<field name="prorogues"/>
<field name="maintenance_services"/>
</page>
<page string="Equipments" id="equipments">
<field name="equipments"/>
<!--
<field name="equipments"/>
-->
</page>
<page string="Other Info" id="other">
<label name="company"/>
@@ -42,7 +38,9 @@ this repository contains the full copyright notices and license terms. -->
<field name="state"/>
<group col="2" colspan="2" id="button">
<!--<button name="draft"/> -->
<!--
<button name="quotation"/>
<button name="run"/>
-->
</group>
</form>

View File

@@ -8,4 +8,5 @@
<field name="description"/>
<field name="start_date"/>
<field name="end_date"/>
<field name="state"/>
</tree>

24
view/diary_form.xml Normal file
View File

@@ -0,0 +1,24 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<form col="6">
<label name="maintenance_service"/>
<field name="maintenance_service"/>
<label name="code"/>
<field name="code"/>
<newline/>
<notebook colspan="6">
<page string="Dates" id="dates_agended">
<label name="date_expected"/>
<field name="date_expected"/>
<label name="date_estimated"/>
<field name="date_estimated"/>
<label name="date_end"/>
<field name="date_end"/>
</page>
</notebook>
<label name="technical"/>
<field name="technical"/>
<label name="state"/>
<field name="state"/>
</form>

12
view/diary_tree.xml Normal file
View File

@@ -0,0 +1,12 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<tree>
<field name="code"/>
<field name="date_expected" widget="date"/>
<field name="date_expected" string="time" widget="time"/>
<field name="date_estimated" widget="date"/>
<field name="date_end" widget="date"/>
<field name="maintenance_service"/>
<field name="technical"/>
</tree>

View File

@@ -0,0 +1,7 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<form>
<label name="product"/>
<field name="product"/>
</form>

View File

@@ -0,0 +1,6 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<tree>
<field name="product"/>
</tree>

View File

@@ -2,4 +2,8 @@
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms.-->
<tree>
<field name="value_patterns" expand="1"/>
<field name="value_equipment" expand="1"/>
<field name="mistake" expand="1"/>
<field name="mistake_rate" expand="1"/>
</tree>

View File

@@ -17,6 +17,7 @@
<label name="service_maintenance"/>
<field name="service_maintenance"/>
<notebook colspan="6">
<!--
<page string="Agended" id="agended">
<label name="estimated_agended"/>
<field name="estimated_agended"/>
@@ -24,19 +25,41 @@
<field name="technical"/>
<label name="state_agended"/>
<field name="state_agended"/>
</page>
</page>
-->
<page string="Preventive" id="preventive">
<field name="maintenance_activity"/>
<label name="initial_operation"/>
<field name="initial_operation"/>
<label name="check_equipment"/>
<field name="check_equipment"/>
<label name="check_electric_system"/>
<field name="check_electric_system"/>
<label name="clean_int_ext"/>
<field name="clean_int_ext"/>
<label name="clean_eyes"/>
<field name="clean_eyes"/>
<label name="optical"/>
<field name="optical"/>
<label name="check_calibration"/>
<field name="check_calibration"/>
<newline/>
<!--
<label name="check_calibration"/>
<field name="check_calibration"/>
-->
</page>
<page string="Corrective" id="corrective">
<label name="maintenance_lines"/>
<field name="maintenance_lines"/>
<field name="maintenance_lines"/>
</page>
<page string="Calibration" id="calibration">
<label name="maintenance_lines"/>
<field name="maintenance_lines"/>
<page string="Calibration" colspan="6" id="calibration">
<label name="patterns_equipments"/>
<field name="patterns_equipments"/>
<newline/>
<group colspan="6" yexpand="1" id="lines_calibration">
<field name="lines_calibration"/>
</group>
</page>
</notebook>
<newline/>

View File

@@ -16,6 +16,8 @@
<field name="sale_origin"/>
<label name="sale_date"/>
<field name="sale_date"/>
<label name="contract_origin"/>
<field name="contract_origin"/>
<label name="maintenance_type"/>
<field name="maintenance_type"/>
<newline/>
@@ -23,10 +25,10 @@
<page string="General" id="general">
<label name="state_agended"/>
<field name="state_agended"/>
<label name="estimated_agended"/>
<field name="estimated_agended"/>
<label name="technical"/>
<field name="technical"/>
<label name="estimated_agended"/>
<field name="estimated_agended"/>
</page>
<page string="Lines Of Mantenaince" id="lines_maintenance">
<field name="lines"/>

View File

@@ -4,6 +4,7 @@
<tree>
<field name="code"/>
<field name="maintenance_type" expand="0"/>
<field name="service_maintenance" expand="1"/>
<field name="propietary"/>
<field name="propietary_address"/>
<field name="equipment"/>

View File

@@ -6,7 +6,11 @@ this repository contains the full copyright notices and license terms. -->
<separator id="sequences" string="Sequences" colspan="4"/>
<label name="equipment_sequence"/>
<field name="equipment_sequence"/>
<newline/>
<label name="maintenance_sequence"/>
<field name="maintenance_sequence"/>
<newline/>
<label name="agended_sequence"/>
<field name="agended_sequence"/>
</form>

View File

@@ -52,8 +52,8 @@
<label name="origin_country"/>
<field name="origin_country"/>
</page>
<page string="Subscriptions" id="subscriptions_equipment">
<field name="subscription_history"/>
<page string="Contracts" id="contract_equipment">
<field name="contract_history"/>
</page>
<page string="Maintenances" id="maintenances_equipment">
<field name="maintenance_history"/>

View File

@@ -0,0 +1,11 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level
this repository contains the full copyright notices and license terms. -->
<form>
<label name="maintenance_service"/>
<field name="maintenance_service"/>
<label name="estimated_agended"/>
<field name="estimated_agended"/>
<label name="technical"/>
<field name="technical"/>
</form>

View File

@@ -8,5 +8,7 @@
<field name="sale_type"/>
<label name="agended"/>
<field name="agended"/>
<label name="contract_base"/>
<field name="contract_base"/>
</xpath>
</data>

View File

@@ -58,6 +58,9 @@ this repository contains the full copyright notices and license terms. -->
<label name="k_pattern"/>
<field name="k_pattern"/>
<newline/>
<label name="k_pattern_list"/>
<field name="k_pattern_list"/>
<newline/>
<label name="resolution_type"/>
<field name="resolution_type"/>
<newline/>