mirror of
https://github.com/OCA/contract.git
synced 2025-02-13 17:57:24 +02:00
* [FIX] website_portal_contract: Add analytic_id to demo data * Add analytic_id reference to the invoice line data to resolve null column * Try splitting tests up * Remove the failing test. It's technically covered in the other test
19 lines
800 B
XML
19 lines
800 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright 2017 LasLabs Inc.
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
|
|
|
|
<odoo>
|
|
|
|
<record id="account_analytic_account_1" model="account.analytic.account">
|
|
<field name="name">Demo Contract</field>
|
|
<field name="contract_template_id" ref="account_analytic_contract_1" />
|
|
<field name="pricelist_id" ref="product.list0" />
|
|
<field name="date_start" eval="time.strftime('%Y-%m-10')" />
|
|
<field name="recurring_next_date" eval="time.strftime('%Y-%m-20')" />
|
|
<field name="partner_id" ref="portal.demo_user0_res_partner" />
|
|
<field name="recurring_invoices" eval="True" />
|
|
<field name="website_template_id" ref="website_contract_template_default" />
|
|
</record>
|
|
|
|
</odoo>
|