bemade-addons/helpdesk_sale_order_ai/views/helpdesk_team_views.xml
mathis ed9dda9bea [ADD] openwebui_connector, helpdesk_sale_order_ai: AI-powered sales order generation from helpdesk tickets
This commit introduces AI integration for helpdesk tickets to automatically generate sales orders:

- openwebui_connector: New module providing integration with OpenWebUI AI service
  * Configurable API connection (key, base URL, model)
  * AI prompt template system for reusable prompts
  * Uses Claude 3 Sonnet model by default

- helpdesk_sale_order_ai: Extends helpdesk_sale_order with AI capabilities
  * AI-powered analysis of ticket content to suggest products
  * Smart product quantity parsing from various formats
  * Dedicated UI tab for AI suggestions in helpdesk tickets
  * Auto-creation of sales orders with matched products

The integration streamlines the process of converting customer support requests into sales opportunities.
2025-07-15 15:18:01 -04:00

14 lines
686 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="helpdesk_team_view_form_inherit_helpdesk_sale_order_ai" model="ir.ui.view">
<field name="name">helpdesk.team.form.inherit.sale.order.ai</field>
<field name="model">helpdesk.team</field>
<field name="inherit_id" ref="helpdesk.helpdesk_team_view_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='use_sale_orders']" position="after">
<field name="use_ai_sale_orders" invisible="not use_sale_orders"/>
<field name="ai_prompt_template_id" invisible="not use_ai_sale_orders"/>
</xpath>
</field>
</record>
</odoo>