forked from OCA/bank-payment
-
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.
Port almost all modules to v10 (OCA#305)
Port almost all modules to v10 * Update to EPC Rulebook v9.2 that start to apply on 2016-11-20 (bug OCA#300)
- Loading branch information
Showing
10 changed files
with
38 additions
and
45 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
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
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
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
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,12 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<!-- | ||
Copyright (C) 2016 Akretion (http://www.akretion.com/) | ||
@author Alexis de Lattre <[email protected]> | ||
The licence is in the file __openerp__.py | ||
© 2016 Akretion (http://www.akretion.com/) | ||
@author Alexis de Lattre <[email protected]> | ||
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
--> | ||
|
||
<openerp> | ||
<data> | ||
<odoo> | ||
|
||
|
||
<record id="view_move_line_form" model="ir.ui.view"> | ||
|
@@ -24,5 +23,4 @@ | |
</record> | ||
|
||
|
||
</data> | ||
</openerp> | ||
</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,17 +1,17 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<openerp> | ||
<data> | ||
<template id="report_invoice_payment_mode" inherit_id="account.report_invoice_document"> | ||
<xpath expr="//p[@t-if='o.payment_term_id']" position="after"> | ||
<p t-if="o.payment_mode_id.note"> | ||
<strong>Payment Mode:</strong> | ||
<span t-field="o.payment_mode_id.note" /> | ||
</p> | ||
<p t-if="o.partner_bank_id"> | ||
<strong>Bank Account:</strong> | ||
<span t-field="o.partner_bank_id.acc_number" /> | ||
</p> | ||
</xpath> | ||
</template> | ||
</data> | ||
</openerp> | ||
<odoo> | ||
|
||
<template id="report_invoice_payment_mode" inherit_id="account.report_invoice_document"> | ||
<xpath expr="//p[@t-if='o.payment_term_id']" position="after"> | ||
<p t-if="o.payment_mode_id.note"> | ||
<strong>Payment Mode:</strong> | ||
<span t-field="o.payment_mode_id.note" /> | ||
</p> | ||
<p t-if="o.partner_bank_id"> | ||
<strong>Bank Account:</strong> | ||
<span t-field="o.partner_bank_id.acc_number" /> | ||
</p> | ||
</xpath> | ||
</template> | ||
|
||
</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,12 +1,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
Copyright (C) 2014-2016 Akretion (http://www.akretion.com/) | ||
@author Alexis de Lattre <[email protected]> | ||
The licence is in the file __openerp__.py | ||
© 2014-2016 Akretion (http://www.akretion.com/) | ||
@author Alexis de Lattre <[email protected]> | ||
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
--> | ||
|
||
<openerp> | ||
<data> | ||
<odoo> | ||
|
||
|
||
<record id="view_partner_property_form" model="ir.ui.view"> | ||
|
@@ -24,5 +23,4 @@ | |
</record> | ||
|
||
|
||
</data> | ||
</openerp> | ||
</odoo> |