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
59 lines
2.1 KiB
XML
59 lines
2.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<odoo>
|
|
<record id="view_encoach_discount_tree" model="ir.ui.view">
|
|
<field name="name">encoach.discount.tree</field>
|
|
<field name="model">encoach.discount</field>
|
|
<field name="arch" type="xml">
|
|
<list string="Discount Codes">
|
|
<field name="code"/>
|
|
<field name="percentage"/>
|
|
<field name="expiry_date"/>
|
|
<field name="max_uses"/>
|
|
<field name="uses"/>
|
|
</list>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="view_encoach_discount_form" model="ir.ui.view">
|
|
<field name="name">encoach.discount.form</field>
|
|
<field name="model">encoach.discount</field>
|
|
<field name="arch" type="xml">
|
|
<form string="Discount Code">
|
|
<sheet>
|
|
<group>
|
|
<group>
|
|
<field name="code"/>
|
|
<field name="percentage"/>
|
|
</group>
|
|
<group>
|
|
<field name="expiry_date"/>
|
|
<field name="max_uses"/>
|
|
<field name="uses"/>
|
|
</group>
|
|
</group>
|
|
</sheet>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="action_encoach_discount" model="ir.actions.act_window">
|
|
<field name="name">Discount Codes</field>
|
|
<field name="res_model">encoach.discount</field>
|
|
<field name="view_mode">list,form</field>
|
|
<field name="help" type="html">
|
|
<p class="o_view_nocontent_smiling_face">
|
|
Create your first discount code.
|
|
</p>
|
|
<p>
|
|
Discount codes offer percentage-based discounts with optional expiry and usage limits.
|
|
</p>
|
|
</field>
|
|
</record>
|
|
|
|
<menuitem id="menu_encoach_discounts"
|
|
name="Discount Codes"
|
|
parent="encoach_core.menu_encoach_subscription"
|
|
action="action_encoach_discount"
|
|
sequence="30"/>
|
|
</odoo>
|