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.
23 lines
1.1 KiB
23 lines
1.1 KiB
<odoo>
|
|
<!--Res Config Settings Form View-->
|
|
<record id="res_config_settings_view_form_base_accounting_kit" model="ir.ui.view">
|
|
<field name="name">res.config.view.inherited.base.accounting.kit</field>
|
|
<field name="model">res.config.settings</field>
|
|
<field name="priority" eval="30"/>
|
|
<field name="inherit_id" ref="account.res_config_settings_view_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//block[@id='invoicing_settings']" position="inside">
|
|
<setting id="customer_credit" help="Enable credit limit for customers">
|
|
<field name="customer_credit_limit" on_change="1"/>
|
|
</setting>
|
|
</xpath>
|
|
<!-- Remove the enterprise budget option -->
|
|
<xpath expr="//setting[@id='account_budget']" position="replace"/>
|
|
<xpath expr="//block[@id='bank_cash']" position="inside">
|
|
<setting id="anglo_saxon" help="It will record the cost of good sold">
|
|
<field name="use_anglo_saxon_accounting"/>
|
|
</setting>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|