compra_solicitudpresupuesto.xml
5.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<data noupdate="0">
<record id="action_hgt_compra_solicitudpresupuesto_act_window" model="ir.actions.act_window">
<field name="type">ir.actions.act_window</field>
<field name="name">Solicitud de Presupuesto</field>
<field name="res_model">hgt.compra_solicitudpresupuesto</field>
<field name="view_mode">tree,form</field>
<field name="view_type">form</field>
<field name="target">current</field>
<field name="help" type="html">
<p class="oe_view_nocontent_create">Cree la primera solicitud de presupuesto</p>
</field>
</record>
<record id="view_hgt_compra_solicitudpresupuesto_tree" model="ir.ui.view">
<field name="name">Solicitud de Presupuesto</field>
<field name="model">hgt.compra_solicitudpresupuesto</field>
<field name="type">tree</field>
<field name="mode">primary</field>
<field name="priority" eval="16" />
<field name="active" eval="True" />
<field name="arch" type="xml">
<tree>
<field name="csp_solicitante" />
<field name="csp_proovedorp" />
<field name="csp_compra_solicitud" />
<field name="csp_estados" />
</tree>
</field>
</record>
<record id="view_hgt_compra_solicitudpresupuesto_form" model="ir.ui.view">
<field name="name">Solicitud de Presupuesto</field>
<field name="model">hgt.compra_solicitudpresupuesto</field>
<field name="type">form</field>
<field name="mode">primary</field>
<field name="priority" eval="16" />
<field name="active" eval="True" />
<field name="arch" type="xml">
<form>
<!--<sheet>-->
<header>
<field name="csp_orden_generada" invisible="1"/>
<field name="csp_estados" widget="statusbar"/>
<button name="enviar_pdf" string="Procesar e Imprimir PDF" type="object" class="btn btn-primary" attrs="{'invisible':[('csp_estados','not in',['pe'])]}"/>
<button name="duplicar_solicitud" string="Duplicar Solicitud - Nuevo Proovedor" type="object" class="btn btn-primary" attrs="{'invisible':[('csp_estados','not in',['pe'])]}"/>
<button name="aceptar_presup" string="Aceptar Presupuesto" type="object" class="btn btn-success" attrs="{'invisible':[('csp_estados','not in',['e'])]}"/>
<button name="rechazar_presup" string="Rechazar Presupuesto" type="object" class="btn btn-danger" attrs="{'invisible':[('csp_estados','not in',['e'])]}"/>
<button name="generar_sc" string="Generar Orden de Compra" type="object" class="btn btn-info" attrs="{'invisible':['|',('csp_estados','not in',['a']),('csp_orden_generada','=',True)]}"/>
</header>
<group col="4">
<field name="csp_compra_solicitud" readonly="1"/>
<field name="csp_ordencompra" readonly="1" />
<field name="csp_solicitante" attrs="{'readonly':[('csp_estados','not in',['pe'])]}"/>
<field name="csp_proovedorp" attrs="{'readonly':[('csp_estados','not in',['pe'])]}"/>
<field name="csp_notas" attrs="{'readonly':[('csp_estados','not in',['pe'])]}"/>
</group>
<group>
<field name="csp_monto_tot" />
</group>
<notebook colspan="4">
<page string="A presupuestar">
<field nolabel="1" name="csp_solicitudlinea" attrs="{'readonly':[('csp_estados','not in',['pe'])]}">
<tree create="1" edit="1" editable="1">
<field name="name" readonly="1" />
<field name="csl_descripcion" />
<field name="csl_solicitante"/>
<field name="csl_estados" />
<field name="csl_cantidad" />
<field name="csl_producto" />
<field name="csl_select" readonly="1"/>
</tree>
</field>
</page>
<page string="Adjuntos">
<group>
<field name="csp_pna_ejecuto" />
<field name="csp_pna_fecha" />
</group>
<field name="csp_adjuntos" required="0" nolabel="1" attrs="{'readonly':[('csp_estados','not in',['pe','e'])]}">
<tree create="1" edit="1" editable="1">
<field name="file" filename="file_name" editable="1" />
<field name="file_name" />
<field name="notas" />
<field name="fecha" />
<field name="usuario" />
<field name="categoria"/>
<field name="etiquetas" colspan='4' widget="many2many_tags" options="{'color_field': 'color'}" />
</tree>
</field>
</page>
</notebook>
<!--</sheet>-->
</form>
</field>
</record>
</data>
</odoo>