forked from OCA/l10n-spain
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e401600
commit b0ac16c
Showing
5 changed files
with
1,802 additions
and
1,500 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<!-- © 2016 Carlos Dauden <[email protected]> | ||
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl-3). --> | ||
<odoo noupdate="1"> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,18 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<odoo> | ||
|
||
<record model="ir.ui.view" id="view_res_bank_form"> | ||
<field name="model">res.bank</field> | ||
<field name="inherit_id" ref="base.view_res_bank_form"/> | ||
<field name="inherit_id" ref="base.view_res_bank_form" /> | ||
<field name="arch" type="xml"> | ||
<field name="name" position="after"> | ||
<field name="lname" select="2" colspan="4"/> | ||
<field name="lname" select="2" colspan="4" /> | ||
</field> | ||
<field name="bic" position="after"> | ||
<field name="vat" select="1"/> | ||
<field name="vat" select="1" /> | ||
</field> | ||
<field name="email" position="after"> | ||
<field name="website" select="2" widget="url"/> | ||
<field name="website" select="2" widget="url" /> | ||
</field> | ||
</field> | ||
</record> | ||
|
||
</odoo> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,33 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<odoo> | ||
|
||
<record id="view_partner_form" model="ir.ui.view"> | ||
<field name="model">res.partner</field> | ||
<field name="inherit_id" ref="base.view_partner_form"/> | ||
<field name="inherit_id" ref="base.view_partner_form" /> | ||
<field name="arch" type="xml"> | ||
<field name="parent_id" position="after"> | ||
<field name="comercial" | ||
placeholder="Trade name" | ||
domain="[('is_company', '=', False)]" | ||
context="{'default_is_company': False}" | ||
attrs="{'invisible': [('is_company','=', False)]}" /> | ||
<field | ||
name="comercial" | ||
placeholder="Trade name" | ||
domain="[('is_company', '=', False)]" | ||
context="{'default_is_company': False}" | ||
attrs="{'invisible': [('is_company','=', False)]}" | ||
/> | ||
</field> | ||
</field> | ||
</record> | ||
<record id="view_partner_simple_form" model="ir.ui.view"> | ||
<field name="model">res.partner</field> | ||
<field name="inherit_id" ref="base.view_partner_simple_form"/> | ||
<field name="inherit_id" ref="base.view_partner_simple_form" /> | ||
<field name="arch" type="xml"> | ||
<field name="parent_id" position="after"> | ||
<field name="comercial" | ||
placeholder="Trade name" | ||
domain="[('is_company', '=', False)]" | ||
context="{'default_is_company': False}" | ||
attrs="{'invisible': [('is_company','=', False)]}" /> | ||
<field | ||
name="comercial" | ||
placeholder="Trade name" | ||
domain="[('is_company', '=', False)]" | ||
context="{'default_is_company': False}" | ||
attrs="{'invisible': [('is_company','=', False)]}" | ||
/> | ||
</field> | ||
</field> | ||
</record> | ||
|
||
</odoo> |
Oops, something went wrong.