|
- <?xml version="1.0" encoding="utf-8"?>
- <odoo>
- <data noupdate="1">
-
- <!-- 通讯录应用 -->
- <record id="wecom_app_contacts" model="wecom.apps">
- <field name="company_id" ref="base.main_company"/>
-
- <field name="app_name">Contacts synchronization</field>
- <field name="type">manage</field>
- <field name="type_id" ref="oec_im_wecom_base.wecom_app_type_manage"/>
- <!-- <field name="subtype_ids" ref="oec_im_wecom_base.wecom_app_subtype_contacts"/> -->
- <field name="subtype_ids" eval="[(4, ref('oec_im_wecom_base.wecom_app_subtype_contacts_management'))]"/>
- <!-- <field name="type_code">['contacts']</field> -->
- <field name="description">Contacts can be synchronized through the API interface or through third-party applications</field>
- <field name="square_logo_url">https://wwcdn.weixin.qq.com/node/wwmng/wwmng/style/images/icons/AppAddressSyncBig$c4dae6e7.svg</field>
- <field name="sequence">0</field>
-
- </record>
-
- <!-- 自建应用 -->
- <record id="wecom_app_first_self_app" model="wecom.apps">
- <field name="company_id" ref="base.main_company"/>
- <field name="app_name">The first application you built yourself.</field>
- <field name="type">self</field>
- <field name="type_id" ref="oec_im_wecom_base.wecom_app_type_self"/>
- <!-- <field name="subtype_ids" eval="[(4, ref('oec_im_wecom_base.wecom_app_subtype_auth')),(4, ref('oec_im_wecom_base.wecom_app_subtype_app')),(4, ref('oec_im_wecom_base.wecom_app_subtype_message_push')),(4, ref('oec_im_wecom_base.wecom_app_subtype_material_management'))]"/> -->
- <field name="description"></field>
- <field name="square_logo_url"></field>
- <field name="sequence">1</field>
- </record>
-
- </data>
- </odoo>
|