mirror of
https://github.com/bringout/oca-financial.git
synced 2026-04-23 23:02:07 +02:00
60 lines
2.8 KiB
XML
60 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
<record id="res_config_settings_view_form" model="ir.ui.view">
|
|
<field name="model">res.config.settings</field>
|
|
<field name="inherit_id" ref="account.res_config_settings_view_form" />
|
|
<field name="arch" type="xml">
|
|
<div data-key="account" position="inside">
|
|
<h2>Anglo-Saxon Accounting</h2>
|
|
<div
|
|
class="row mt16 o_settings_container"
|
|
name="anglo_saxon_setting_container"
|
|
>
|
|
<div class="col-12 col-lg-6 o_setting_box" id="anglo_saxon">
|
|
<div class="o_setting_left_pane">
|
|
<field name="anglo_saxon_accounting" />
|
|
</div>
|
|
<div class="o_setting_right_pane">
|
|
<label
|
|
string="Anglo-Saxon Accounting"
|
|
for="anglo_saxon_accounting"
|
|
/>
|
|
<div class="text-muted">
|
|
Record the cost of a good as an expense when this good is
|
|
invoiced to a final customer (instead of recording the cost as soon
|
|
as the product is received in stock).
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="accounting_reports" position="after">
|
|
<div
|
|
class="row mt16 o_settings_container"
|
|
id="fiscalyear_last_day_month"
|
|
>
|
|
<div class="o_setting_left_pane" />
|
|
<div class="o_setting_right_pane">
|
|
<label
|
|
string="Fiscal Year Last Day"
|
|
for="fiscalyear_last_day"
|
|
/>
|
|
<div>
|
|
<field
|
|
name="fiscalyear_last_day"
|
|
class="oe_inline"
|
|
/>
|
|
<field
|
|
name="fiscalyear_last_month"
|
|
class="oe_inline"
|
|
/>
|
|
</div>
|
|
<div class="text-muted">
|
|
Type the day and select the month of the last day of the company's fiscal year.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</field>
|
|
</record>
|
|
</odoo>
|