You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
1.1 KiB
22 lines
1.1 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data noupdate="1">
|
|
<!-- Education fee structure lines demo-->
|
|
<record id="education_fee_structure1_line1" model="education.fee.structure.lines">
|
|
<field name="fee_type_id" ref="education_fee.education_fee_type2"/>
|
|
<field name="fee_structure_id" ref="education_fee.education_fee_structure1"/>
|
|
<field name="payment_type">onetime</field>
|
|
<field name="fee_description">Admission Fee</field>
|
|
<field name="interval">One time</field>
|
|
<field name="fee_amount">1000</field>
|
|
</record>
|
|
<record id="education_fee_structure1_line2" model="education.fee.structure.lines">
|
|
<field name="fee_type_id" ref="education_fee.education_fee_type1"/>
|
|
<field name="fee_structure_id" ref="education_fee.education_fee_structure1"/>
|
|
<field name="payment_type">peryear</field>
|
|
<field name="fee_description">Tuition Fee</field>
|
|
<field name="interval">Annually</field>
|
|
<field name="fee_amount">1500</field>
|
|
</record>
|
|
</data>
|
|
</odoo>
|
|
|