Skip to content

Commit 507a494

Browse files
[MIG] purchase_fop_shipping: Migration to 16.0
1 parent edee395 commit 507a494

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

purchase_fop_shipping/README.rst

+1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ Contributors
5454
------------
5555

5656
* Mourad EL HADJ MIMOUNE <mourad.elhadj.mimoune@akretion.com.br>
57+
* Dhara Solanki <dhara.solanki@initos.com>
5758

5859
Funders
5960
-------

purchase_fop_shipping/__manifest__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
{
66
"name": "Purchase Free-Of-Payment shipping",
7-
"version": "15.0.1.0.0",
7+
"version": "16.0.1.0.0",
88
"author": "Akretion,Odoo Community Association (OCA)",
99
"website": "https://github.com/OCA/purchase-workflow",
1010
"maintainer": "Akretion",

purchase_fop_shipping/i18n/purchase_fop_shipping.pot

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@
44
#
55
msgid ""
66
msgstr ""
7-
"Project-Id-Version: Odoo Server 15.0\n"
7+
"Project-Id-Version: Odoo Server 16.0\n"
88
"Report-Msgid-Bugs-To: \n"
9+
"POT-Creation-Date: 2023-06-22 11:28+0000\n"
10+
"PO-Revision-Date: 2023-06-22 11:28+0000\n"
911
"Last-Translator: \n"
1012
"Language-Team: \n"
1113
"MIME-Version: 1.0\n"
@@ -67,6 +69,7 @@ msgid "Purchase Order"
6769
msgstr ""
6870

6971
#. module: purchase_fop_shipping
72+
#. odoo-python
7073
#: code:addons/purchase_fop_shipping/models/purchase.py:0
7174
#, python-format
7275
msgid ""

purchase_fop_shipping/tests/test_fop_shipping.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def test_fop_shipping_reached1(self):
4040
po.button_approve()
4141
self.assertTrue(
4242
"You cannot confirm a purchase order with amount under "
43-
"FOP shipping" in e.exception.name
43+
"FOP shipping" in e.exception.args[0]
4444
)
4545

4646
po.force_order_under_fop = True

purchase_fop_shipping/views/purchase_order.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
groups="purchase_fop_shipping.group_fop_shipping_purchase_manager"
5353
/>
5454
</xpath>
55-
<field name="tax_totals_json" position="after">
55+
<field name="tax_totals" position="after">
5656
<field
5757
name="fop_shipping"
5858
readonly="1"

0 commit comments

Comments
 (0)