EnCoach Odoo 19 custom modules
Full backend implementation with custom Odoo modules: - encoach_api: Core API, user management, JWT auth - encoach_exam: Exam generation (reading, writing, listening, speaking) - encoach_evaluate: AI-powered evaluation (writing, speaking) - encoach_training: Training tips and walkthrough - encoach_storage: File storage management - encoach_payment: Stripe, PayPal, Paymob integration - encoach_mail: Email notifications Made-with: Cursor
This commit is contained in:
53
encoach_training/views/walkthrough_views.xml
Normal file
53
encoach_training/views/walkthrough_views.xml
Normal file
@@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<odoo>
|
||||
<record id="view_encoach_walkthrough_tree" model="ir.ui.view">
|
||||
<field name="name">encoach.walkthrough.tree</field>
|
||||
<field name="model">encoach.walkthrough</field>
|
||||
<field name="arch" type="xml">
|
||||
<list string="Walkthroughs">
|
||||
<field name="name"/>
|
||||
<field name="module"/>
|
||||
</list>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="view_encoach_walkthrough_form" model="ir.ui.view">
|
||||
<field name="name">encoach.walkthrough.form</field>
|
||||
<field name="model">encoach.walkthrough</field>
|
||||
<field name="arch" type="xml">
|
||||
<form string="Walkthrough">
|
||||
<sheet>
|
||||
<group>
|
||||
<group>
|
||||
<field name="name"/>
|
||||
<field name="module"/>
|
||||
</group>
|
||||
</group>
|
||||
<group>
|
||||
<field name="content" widget="json"/>
|
||||
</group>
|
||||
</sheet>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="action_encoach_walkthrough" model="ir.actions.act_window">
|
||||
<field name="name">Walkthroughs</field>
|
||||
<field name="res_model">encoach.walkthrough</field>
|
||||
<field name="view_mode">list,form</field>
|
||||
<field name="help" type="html">
|
||||
<p class="o_view_nocontent_smiling_face">
|
||||
Create your first walkthrough.
|
||||
</p>
|
||||
<p>
|
||||
Walkthroughs provide guided content for Reading, Listening, Writing, Speaking, and Level modules.
|
||||
</p>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<menuitem id="menu_encoach_walkthroughs"
|
||||
name="Walkthroughs"
|
||||
parent="encoach_core.menu_encoach_training"
|
||||
action="action_encoach_walkthrough"
|
||||
sequence="30"/>
|
||||
</odoo>
|
||||
Reference in New Issue
Block a user