feat(v3): restructure project + add complete frontend
- Restructure: move backend from new_project/ to backend/ - Add full React/TypeScript frontend (37 pages, 17 services, 16 type defs, 11 query hooks) - Add docs/ with SRS specs, user stories, and workflow documentation - Update .gitignore for new directory layout Workflows implemented: WF1 User Signup, WF2 Placement Test, WF3 Exam Configuration, WF4 General English Exam, WF5 Course Generation, WF6 Entity Student Onboarding, AI Course Generation, Adaptive Learning Engine UI, White-Label Branding, Score Release Made-with: Cursor
This commit is contained in:
@@ -0,0 +1,65 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<record id="view_ielts_check_form" model="ir.ui.view">
|
||||
<field name="name">encoach.ielts.standards.check.form</field>
|
||||
<field name="model">encoach.ielts.standards.check</field>
|
||||
<field name="arch" type="xml">
|
||||
<form string="IELTS Standards Check">
|
||||
<sheet>
|
||||
<group>
|
||||
<group>
|
||||
<field name="content_id"/>
|
||||
<field name="content_type"/>
|
||||
<field name="check_type"/>
|
||||
</group>
|
||||
<group>
|
||||
<field name="passed"/>
|
||||
<field name="checked_at"/>
|
||||
</group>
|
||||
</group>
|
||||
<group>
|
||||
<field name="error_detail"/>
|
||||
</group>
|
||||
</sheet>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="view_ielts_check_list" model="ir.ui.view">
|
||||
<field name="name">encoach.ielts.standards.check.list</field>
|
||||
<field name="model">encoach.ielts.standards.check</field>
|
||||
<field name="arch" type="xml">
|
||||
<list string="IELTS Standards Checks">
|
||||
<field name="content_type"/>
|
||||
<field name="check_type"/>
|
||||
<field name="passed" widget="badge" decoration-success="passed" decoration-danger="not passed"/>
|
||||
<field name="checked_at"/>
|
||||
</list>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="view_ielts_check_search" model="ir.ui.view">
|
||||
<field name="name">encoach.ielts.standards.check.search</field>
|
||||
<field name="model">encoach.ielts.standards.check</field>
|
||||
<field name="arch" type="xml">
|
||||
<search string="Search IELTS Checks">
|
||||
<separator/>
|
||||
<filter string="Passed" name="passed" domain="[('passed', '=', True)]"/>
|
||||
<filter string="Failed" name="failed" domain="[('passed', '=', False)]"/>
|
||||
<separator/>
|
||||
<filter string="Passage" name="passage" domain="[('content_type', '=', 'passage')]"/>
|
||||
<filter string="Audio" name="audio" domain="[('content_type', '=', 'audio')]"/>
|
||||
<filter string="Writing Prompt" name="writing_prompt" domain="[('content_type', '=', 'writing_prompt')]"/>
|
||||
<filter string="Speaking Card" name="speaking_card" domain="[('content_type', '=', 'speaking_card')]"/>
|
||||
</search>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="action_ielts_check" model="ir.actions.act_window">
|
||||
<field name="name">IELTS Standards Checks</field>
|
||||
<field name="res_model">encoach.ielts.standards.check</field>
|
||||
<field name="view_mode">list,form</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
10
custom_addons/encoach_quality_gate/views/quality_menus.xml
Normal file
10
custom_addons/encoach_quality_gate/views/quality_menus.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<menuitem id="menu_ielts_checks"
|
||||
name="IELTS Standards Checks"
|
||||
parent="encoach_core.menu_encoach_content"
|
||||
action="encoach_quality_gate.action_ielts_check"
|
||||
sequence="10"/>
|
||||
|
||||
</odoo>
|
||||
Reference in New Issue
Block a user