Skip to content

Commit 9f886fe

Browse files
[MIG] hr_expense_sequence_option: Migration to 17.0
1 parent 93cfcab commit 9f886fe

File tree

5 files changed

+16
-4
lines changed

5 files changed

+16
-4
lines changed

hr_expense_sequence_option/README.rst

+3
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ Contributors
6363
------------
6464

6565
- Pimolnat Suntian <[email protected]>
66+
- `Heliconia Solutions Pvt. Ltd. <https://www.heliconia.io>`__
67+
68+
- Bhavesh Heliconia
6669

6770
Maintainers
6871
-----------

hr_expense_sequence_option/__manifest__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{
55
"name": "Expense Sequence Option",
66
"summary": "Manage sequence options for hr.expense.sheet",
7-
"version": "16.0.1.0.0",
7+
"version": "17.0.1.0.0",
88
"license": "AGPL-3",
99
"author": "Ecosoft, Odoo Community Association (OCA)",
1010
"website": "https://github.com/OCA/hr-expense",
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
11
- Pimolnat Suntian \<<[email protected]>\>
2+
- [Heliconia Solutions Pvt. Ltd.](https://www.heliconia.io)
3+
- Bhavesh Heliconia
4+

hr_expense_sequence_option/static/description/index.html

+4
Original file line numberDiff line numberDiff line change
@@ -410,6 +410,10 @@ <h2><a class="toc-backref" href="#toc-entry-3">Authors</a></h2>
410410
<h2><a class="toc-backref" href="#toc-entry-4">Contributors</a></h2>
411411
<ul class="simple">
412412
<li>Pimolnat Suntian &lt;<a class="reference external" href="mailto:pimolnats&#64;ecosoft.co.th">pimolnats&#64;ecosoft.co.th</a>&gt;</li>
413+
<li><a class="reference external" href="https://www.heliconia.io">Heliconia Solutions Pvt. Ltd.</a><ul>
414+
<li>Bhavesh Heliconia</li>
415+
</ul>
416+
</li>
413417
</ul>
414418
</div>
415419
<div class="section" id="maintainers">

hr_expense_sequence_option/tests/test_hr_expense_sequence_option.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@
22
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
33

44
from odoo import Command
5-
from odoo.tests.common import TransactionCase, tagged
5+
from odoo.tests.common import tagged
6+
7+
from odoo.addons.base.tests.common import BaseCommon
68

79

810
@tagged("post_install", "-at_install")
9-
class TestHrExpenseSequenceOption(TransactionCase):
11+
class TestHrExpenseSequenceOption(BaseCommon):
1012
@classmethod
1113
def setUpClass(cls):
1214
super().setUpClass()
@@ -26,7 +28,7 @@ def setUpClass(cls):
2628
"employee_id": cls.user.employee_id.id,
2729
"product_id": cls.product_travel.id,
2830
"quantity": 1.0,
29-
"unit_amount": 500.0,
31+
"price_unit": 500.0,
3032
}
3133
)
3234
],

0 commit comments

Comments
 (0)