product_usability: add seller_id field base_usability: write/create rights on res.partner.title to base.group_system (instead of partner manager) sale_stock_usability: move warehouse_id to top stock_usabiluty: type on product set to 'product' by default
23 lines
670 B
XML
23 lines
670 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright 2014-2020 Akretion (http://www.akretion.com/)
|
|
@author Alexis de Lattre <alexis.delattre@akretion.com>
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
-->
|
|
|
|
<odoo>
|
|
|
|
<record id="view_company_form" model="ir.ui.view">
|
|
<field name="name">company.extension.form</field>
|
|
<field name="model">res.company</field>
|
|
<field name="inherit_id" ref="base.view_company_form" />
|
|
<field name="arch" type="xml">
|
|
<field name="company_registry" position="after">
|
|
<field name="capital_amount"/>
|
|
<field name="legal_type"/>
|
|
</field>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|