blob: 5556f2c0d5644fdd0cd1a7ebc85aa1695b799a2e (
plain)
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
|
<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<data>
<record id="crm_lead_form_view_inherit" model="ir.ui.view">
<field name="name">CRM Lead</field>
<field name="model">crm.lead</field>
<field name="inherit_id" ref="crm.crm_lead_view_form"/>
<field name="arch" type="xml">
<button name="action_set_lost" position="attributes">
<attribute name="invisible">1</attribute>
</button>
<button name="action_set_lost" position="after">
<button name="%(crm.crm_lead_lost_action)d" string="Mark Lost" type="action" context="{'default_lead_id': active_id}" attrs="{'invisible': ['|', ('type', '=', 'opportunity'), '&', ('probability', '=', 0), ('active', '=', False)]}"/>
</button>
<page name="lead" position="after">
<page string="Wati">
<field name="wati_notification_id" widget="many2many">
<tree>
<field name="sender_name" />
<field name="text" />
<field name="text_time" />
</tree>
<form>
<group>
<group>
<field name="sender_name" />
<field name="text_time" />
</group>
<group>
<field name="text" />
</group>
</group>
</form>
</field>
</page>
<page string="Quotation" name="quotation">
<field name="file_quotation"/>
</page>
<page string="Description" name="description">
<group>
<field name="html_description"/>
</group>
</page>
<page string="Pengajuan Tempo" name="pengajuan_tempo">
<group>
<field name="file_npwp" widget="pdf_viewer"/>
<field name="file_nib" widget="pdf_viewer"/>
<field name="file_tdp" widget="pdf_viewer"/>
<field name="file_siup" widget="pdf_viewer"/>
</group>
</page>
</page>
<field name="message_bounce" position="after">
<field name="order_id"/>
</field>
</field>
</record>
</data>
</odoo>
|