You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.5 KiB
37 lines
1.5 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Inherit res.company to add pipedrive fields -->
|
|
<record id="view_company_form" model="ir.ui.view">
|
|
<field name="name">
|
|
res.company.view.form.inherit.odoo.pipedrive.connector
|
|
</field>
|
|
<field name="inherit_id" ref="base.view_company_form"/>
|
|
<field name="model">res.company</field>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//notebook" position="inside">
|
|
<page string="Pipedrive" name="Pipedrive">
|
|
<group>
|
|
<field name="api_key" password="True"
|
|
string="Token"/>
|
|
</group>
|
|
<group>
|
|
<group>
|
|
<field name="import_product"/>
|
|
<field name="import_contact"/>
|
|
<field name="import_lead"/>
|
|
</group>
|
|
<group>
|
|
<field name="export_product"/>
|
|
<field name="export_contact"/>
|
|
<field name="export_lead"/>
|
|
</group>
|
|
</group>
|
|
<group>
|
|
<button string="Execute" class="oe_highlight"
|
|
type="object" name="action_execute"/>
|
|
</group>
|
|
</page>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|