42 lines
1.6 KiB
XML
42 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<!-- Wizard Form View -->
|
|
<record id="view_yuthon_school_progress_wizard_form" model="ir.ui.view">
|
|
<field name="name">yuthon.school.progress.wizard.form</field>
|
|
<field name="model">yuthon.school.progress.wizard</field>
|
|
<field name="arch" type="xml">
|
|
<form string="批量更新学习进度">
|
|
<group>
|
|
<group string="选择范围">
|
|
<field name="class_id"/>
|
|
<field name="chapter_id"/>
|
|
<field name="textbook_id"/>
|
|
</group>
|
|
<group string="进度设置">
|
|
<field name="progress_value"/>
|
|
<field name="completed"/>
|
|
</group>
|
|
</group>
|
|
<footer>
|
|
<button name="action_apply" type="object"
|
|
string="确认更新" class="btn-primary"/>
|
|
<button special="cancel" string="取消"
|
|
class="btn-secondary"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
<!-- Wizard Action -->
|
|
<record id="action_yuthon_school_progress_wizard" model="ir.actions.act_window">
|
|
<field name="name">批量更新进度</field>
|
|
<field name="res_model">yuthon.school.progress.wizard</field>
|
|
<field name="view_mode">form</field>
|
|
<field name="target">new</field>
|
|
<field name="binding_model_id" ref="model_yuthon_school_progress"/>
|
|
<field name="binding_view_types">list,form</field>
|
|
</record>
|
|
|
|
</odoo>
|