Skip to content

Commit 7fd2b4c

Browse files
bizzappdevStephaneMangin
authored andcommittedMar 14, 2025
[MIG] delivery_postlogistics: Migration to 18.0
1 parent 2461fa7 commit 7fd2b4c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+880
-563
lines changed
 

‎delivery_postlogistics/README.rst

+25-24
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,13 @@ See `Log in <https://account.post.ch/selfadmin/?login&lang=en>`__
5656

5757
To configure:
5858

59-
- Go to Inventory -> Configuration -> Delivery -> Shipping Methods
60-
- Create new shipping methods for PostLogistics and set your login
61-
informations in the "PostLogistics" tab
62-
- Go to Inventory -> Configuration -> Delivery -> Delivery Packages to
63-
create the PostLogistics delivery packaging with the relevant Package
64-
Code (see section 8.10 of
65-
https://developer.post.ch/en/digital-commerce-api for available
66-
codes)
59+
- Go to Inventory -> Configuration -> Delivery -> Shipping Methods
60+
- Create new shipping methods for PostLogistics and set your login
61+
informations in the "PostLogistics" tab
62+
- Go to Inventory -> Configuration -> Delivery -> Delivery Packages to
63+
create the PostLogistics delivery packaging with the relevant Package
64+
Code (see section 8.10 of
65+
https://developer.post.ch/en/digital-commerce-api for available codes)
6766

6867
Technical references
6968
--------------------
@@ -74,11 +73,11 @@ documentation <https://www.post.ch/en/business/a-z-of-subjects/dropping-off-mail
7473
Known issues / Roadmap
7574
======================
7675

77-
- Integration of price webservice :
78-
https://www.post.ch/en/customer-center/all-online-services/preise-berechnen/info
79-
- Not sure if the recursive patch of suds is still needed as there's no
80-
need to use the integration WS anymore. However we still want to
81-
patch open to get meaningful error messages.
76+
- Integration of price webservice :
77+
https://www.post.ch/en/customer-center/all-online-services/preise-berechnen/info
78+
- Not sure if the recursive patch of suds is still needed as there's no
79+
need to use the integration WS anymore. However we still want to patch
80+
open to get meaningful error messages.
8281

8382
Bug Tracker
8483
===========
@@ -101,31 +100,33 @@ Authors
101100
Contributors
102101
------------
103102

104-
- Yannick Vaucher <yannick.vaucher@camptocamp.com>
103+
- Yannick Vaucher <yannick.vaucher@camptocamp.com>
105104

106-
- Guewen Baconnier <guewen.baconnier@camptocamp.com>
105+
- Guewen Baconnier <guewen.baconnier@camptocamp.com>
107106

108-
- Akim Juillerat <akim.juillerat@camptocamp.com>
107+
- Akim Juillerat <akim.juillerat@camptocamp.com>
109108

110-
- Julien Coux <julien.coux@camptocamp.com>
109+
- Julien Coux <julien.coux@camptocamp.com>
111110

112-
- Dung Tran <dungtd@trobz.com>
111+
- Dung Tran <dungtd@trobz.com>
113112

114-
- Phuc Tran <phuc@trobz.com>
113+
- Phuc Tran <phuc@trobz.com>
115114

116-
- Jacques-Etienne Baudoux <je@bcim.be>
115+
- Jacques-Etienne Baudoux <je@bcim.be>
117116

118-
- `Trobz <https://trobz.com>`__:
117+
- `Trobz <https://trobz.com>`__:
119118

120-
- Jack Le <anlh@trobz.com>
119+
- Jack Le <anlh@trobz.com>
120+
121+
- Stéphane Mangin stephane.mangin@camptocamp.com
121122

122123
Other credits
123124
-------------
124125

125126
The development of this module in version 14.0 and its migration from
126-
14.0 to 16.0 has been financially supported by:
127+
14.0 to 16.0, 16.0 to 18.0 has been financially supported by:
127128

128-
- Camptocamp
129+
- Camptocamp
129130

130131
Maintainers
131132
-----------
+14-3
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,27 @@
1-
# © 2013-2016 Yannick Vaucher (Camptocamp SA)
1+
# © 2013 Yannick Vaucher (Camptocamp SA)
22
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
33
{
44
"name": "PostLogistics Shipping - “Barcode” web service",
55
"summary": "Print PostLogistics shipping labels using the Barcode web service",
6-
"version": "16.0.1.1.0",
6+
"version": "18.0.1.0.0",
77
"author": "Camptocamp,Odoo Community Association (OCA)",
88
"maintainer": "Camptocamp",
99
"license": "AGPL-3",
1010
"category": "Delivery",
1111
"complexity": "normal",
12-
"depends": ["delivery", "mail", "base", "stock"],
12+
"depends": [
13+
"stock_delivery",
14+
"delivery_carrier_info",
15+
"delivery_carrier_option",
16+
"delivery_carrier_shipping_label",
17+
],
1318
"website": "https://github.com/OCA/delivery-carrier",
1419
"data": [
1520
"security/ir.model.access.csv",
1621
"data/partner.xml",
1722
"data/product.xml",
1823
"data/delivery.xml",
24+
"data/package_type.xml",
1925
"views/delivery.xml",
2026
"views/stock_package_type_view.xml",
2127
"views/stock_quant_package_view.xml",
@@ -26,4 +32,9 @@
2632
"installable": True,
2733
"auto_install": False,
2834
"application": True,
35+
"external_dependencies": {
36+
"python": [
37+
"openupgradelib",
38+
],
39+
},
2940
}

0 commit comments

Comments
 (0)