优化工单模块,增加企微模块

This commit is contained in:
mgw
2024-07-10 15:58:47 +08:00
parent e8512b23e4
commit 6b140fe6dd
134 changed files with 12830 additions and 2 deletions

View File

@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- View -->
<record id="view_mail_message_form_dingtalk" model="ir.ui.view">
<field name="name">mail.message.form.dingtalk</field>
<field name="model">mail.message</field>
<field name="inherit_id" ref="mail.view_message_form"/>
<field name="arch" type="xml">
<notebook position="inside">
<page string="企业微信">
<group>
<field name="we_is_send"/>
<field name="we_error_msg"/>
</group>
<footer class="modal-footer">
<button type="object" name="send_message_to_we" string="发送到企业微信"/>
</footer>
</page>
</notebook>
</field>
</record>
</odoo>