Hi,
I Know how to create a new entry in ir_sequence, but if I set 'use_date_range' attribute as True, how can I fill the related table, ir_sequence_date_range, where the date range is:
I think something like:
<record id="sequence_fixation_date_range" model="ir.sequence.date_range">
<field name="date_from">2018/01/01</field>
<field name="date_to">2018/12/31</field>
<field name="number_next">1</field>
<field name="sequency_id"> ???</field> <--- this, how to fill
</record>
What I want to know is how to create the relation between ir_sequence and ir_sequence_date_range
Thank you