-
-
Notifications
You must be signed in to change notification settings - Fork 790
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MIG] purchase_partner_incoterm: Migration to 17.0
- Loading branch information
1 parent
ec4ad67
commit 9c3eb9a
Showing
5 changed files
with
21 additions
and
27 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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
Default purchase incoterm per partner | ||
===================================== | ||
|
||
.. | ||
.. | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! This file is generated by oca-gen-addon-readme !! | ||
!! changes will be overwritten. !! | ||
|
@@ -71,7 +71,7 @@ Contributors | |
* Raphaël Reverdy <[email protected]> | ||
* `InitOS <https://www.initos.com>`_: | ||
* Dhara Solanki <[email protected]> | ||
|
||
* Manish Kumar Bohra <[email protected]> | ||
Other credits | ||
~~~~~~~~~~~~~ | ||
|
||
|
@@ -101,7 +101,7 @@ promote its widespread use. | |
|
||
Current `maintainers <https://odoo-community.org/page/maintainer-role>`__: | ||
|
||
|maintainer-TDu| |maintainer-bealdav| | ||
|maintainer-TDu| |maintainer-bealdav| | ||
|
||
This module is part of the `OCA/purchase-workflow <https://github.com/OCA/purchase-workflow/tree/16.0/purchase_partner_incoterm>`_ project on GitHub. | ||
|
||
|
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
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,13 +1,14 @@ | ||
- [Camptocamp](https://www.camptocamp.com): | ||
- [Camptocamp](https://www.camptocamp.com): | ||
- Thierry Ducrest \<<[email protected]>\> | ||
- Denis Leemann \<<[email protected]>\> | ||
|
||
- [Trobz](https://trobz.com): | ||
- [Trobz](https://trobz.com): | ||
- Son Ho \<<[email protected]>\> | ||
|
||
- [Akretion](https://akretion.com): | ||
- [Akretion](https://akretion.com): | ||
- David BEAL \<<[email protected]>\> | ||
- Raphaël Reverdy \<<[email protected]>\> | ||
|
||
- [InitOS](https://www.initos.com): | ||
- [InitOS](https://www.initos.com): | ||
- Dhara Solanki \<<[email protected]>\> | ||
* Manish Kumar Bohra <[email protected]> |
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 |
---|---|---|
|
@@ -8,3 +8,4 @@ | |
* Raphaël Reverdy <[email protected]> | ||
* `InitOS <https://www.initos.com>`_: | ||
* Dhara Solanki <[email protected]> | ||
* Manish Kumar Bohra <[email protected]> |
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,22 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<odoo> | ||
|
||
<record id="view_partner_purchase_form" model="ir.ui.view"> | ||
<field name="name">res.partner.purchase.form.inherit</field> | ||
<field name="model">res.partner</field> | ||
<field name="inherit_id" ref="base.view_partner_form" /> | ||
<field name="arch" type="xml"> | ||
<group name="purchase" position="inside"> | ||
<field | ||
name="purchase_incoterm_id" | ||
attrs="{'readonly': [('parent_id','!=',False)]}" | ||
/> | ||
<field | ||
name="purchase_incoterm_address_id" | ||
attrs="{'readonly': [('parent_id','!=',False)]}" | ||
/> | ||
</group> | ||
</field> | ||
</record> | ||
|
||
<record id="view_partner_purchase_form" model="ir.ui.view"> | ||
<field name="name">res.partner.purchase.form.inherit</field> | ||
<field name="model">res.partner</field> | ||
<field name="inherit_id" ref="base.view_partner_form" /> | ||
<field name="arch" type="xml"> | ||
<group name="purchase" position="inside"> | ||
<field name="purchase_incoterm_id" readonly="parent_id" /> | ||
<field name="purchase_incoterm_address_id" readonly="parent_id" /> | ||
</group> | ||
</field> | ||
</record> | ||
</odoo> |