mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
Big changes to tests (because of the ways stock has changed) and allow activities to be set on RMAs. Other refactors to reduce code duplication between picking and so returns.
15 lines
391 B
XML
15 lines
391 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data noupdate="1">
|
|
|
|
<record id="seq_rma" model="ir.sequence">
|
|
<field name="name">RMA</field>
|
|
<field name="code">rma.rma</field>
|
|
<field name="prefix">RMA</field>
|
|
<field name="padding">3</field>
|
|
<field name="company_id" eval="False"/>
|
|
</record>
|
|
|
|
</data>
|
|
</odoo>
|