odoo-addon-delivery-state 18.0.1.0.0.2__py3-none-any.whl → 18.0.1.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- odoo/addons/delivery_state/README.rst +6 -2
- odoo/addons/delivery_state/__manifest__.py +1 -1
- odoo/addons/delivery_state/i18n/delivery_state.pot +10 -0
- odoo/addons/delivery_state/models/stock_picking.py +10 -0
- odoo/addons/delivery_state/static/description/index.html +18 -12
- odoo/addons/delivery_state/views/stock_picking_views.xml +2 -0
- {odoo_addon_delivery_state-18.0.1.0.0.2.dist-info → odoo_addon_delivery_state-18.0.1.1.0.dist-info}/METADATA +8 -3
- {odoo_addon_delivery_state-18.0.1.0.0.2.dist-info → odoo_addon_delivery_state-18.0.1.1.0.dist-info}/RECORD +10 -10
- {odoo_addon_delivery_state-18.0.1.0.0.2.dist-info → odoo_addon_delivery_state-18.0.1.1.0.dist-info}/WHEEL +1 -1
- {odoo_addon_delivery_state-18.0.1.0.0.2.dist-info → odoo_addon_delivery_state-18.0.1.1.0.dist-info}/top_level.txt +0 -0
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
.. image:: https://odoo-community.org/readme-banner-image
|
|
2
|
+
:target: https://odoo-community.org/get-involved?utm_source=readme
|
|
3
|
+
:alt: Odoo Community Association
|
|
4
|
+
|
|
1
5
|
==============
|
|
2
6
|
Delivery State
|
|
3
7
|
==============
|
|
@@ -7,13 +11,13 @@ Delivery State
|
|
|
7
11
|
!! This file is generated by oca-gen-addon-readme !!
|
|
8
12
|
!! changes will be overwritten. !!
|
|
9
13
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
10
|
-
!! source digest: sha256:
|
|
14
|
+
!! source digest: sha256:d64fd22ab49cba03ff16e84772582cbb328d55953ca57e6201e2191c00a6f066
|
|
11
15
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
12
16
|
|
|
13
17
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
14
18
|
:target: https://odoo-community.org/page/development-status
|
|
15
19
|
:alt: Beta
|
|
16
|
-
.. |badge2| image:: https://img.shields.io/badge/
|
|
20
|
+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
|
|
17
21
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
18
22
|
:alt: License: AGPL-3
|
|
19
23
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fdelivery--carrier-lightgray.png?logo=github
|
|
@@ -110,6 +110,16 @@ msgstr ""
|
|
|
110
110
|
msgid "No more updates from carrier"
|
|
111
111
|
msgstr ""
|
|
112
112
|
|
|
113
|
+
#. module: delivery_state
|
|
114
|
+
#: model:ir.model.fields,field_description:delivery_state.field_stock_picking__pod_file
|
|
115
|
+
msgid "Proof of Delivery File"
|
|
116
|
+
msgstr ""
|
|
117
|
+
|
|
118
|
+
#. module: delivery_state
|
|
119
|
+
#: model:ir.model.fields,field_description:delivery_state.field_stock_picking__pod_filename
|
|
120
|
+
msgid "Proof of Delivery Filename"
|
|
121
|
+
msgstr ""
|
|
122
|
+
|
|
113
123
|
#. module: delivery_state
|
|
114
124
|
#: model_terms:ir.ui.view,arch_db:delivery_state.res_config_settings_view_form
|
|
115
125
|
msgid ""
|
|
@@ -39,6 +39,16 @@ class StockPicking(models.Model):
|
|
|
39
39
|
tracking=True,
|
|
40
40
|
readonly=True,
|
|
41
41
|
)
|
|
42
|
+
pod_file = fields.Binary(
|
|
43
|
+
string="Proof of Delivery File",
|
|
44
|
+
readonly=True,
|
|
45
|
+
copy=False,
|
|
46
|
+
)
|
|
47
|
+
pod_filename = fields.Char(
|
|
48
|
+
string="Proof of Delivery Filename",
|
|
49
|
+
readonly=True,
|
|
50
|
+
copy=False,
|
|
51
|
+
)
|
|
42
52
|
|
|
43
53
|
def tracking_state_update(self):
|
|
44
54
|
"""Call to the service provider API which should have the method
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
5
5
|
<meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
|
|
6
|
-
<title>
|
|
6
|
+
<title>README.rst</title>
|
|
7
7
|
<style type="text/css">
|
|
8
8
|
|
|
9
9
|
/*
|
|
@@ -360,16 +360,21 @@ ul.auto-toc {
|
|
|
360
360
|
</style>
|
|
361
361
|
</head>
|
|
362
362
|
<body>
|
|
363
|
-
<div class="document"
|
|
364
|
-
<h1 class="title">Delivery State</h1>
|
|
363
|
+
<div class="document">
|
|
365
364
|
|
|
365
|
+
|
|
366
|
+
<a class="reference external image-reference" href="https://odoo-community.org/get-involved?utm_source=readme">
|
|
367
|
+
<img alt="Odoo Community Association" src="https://odoo-community.org/readme-banner-image" />
|
|
368
|
+
</a>
|
|
369
|
+
<div class="section" id="delivery-state">
|
|
370
|
+
<h1>Delivery State</h1>
|
|
366
371
|
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
367
372
|
!! This file is generated by oca-gen-addon-readme !!
|
|
368
373
|
!! changes will be overwritten. !!
|
|
369
374
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
370
|
-
!! source digest: sha256:
|
|
375
|
+
!! source digest: sha256:d64fd22ab49cba03ff16e84772582cbb328d55953ca57e6201e2191c00a6f066
|
|
371
376
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
|
372
|
-
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/
|
|
377
|
+
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/license-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/delivery-carrier/tree/18.0/delivery_state"><img alt="OCA/delivery-carrier" src="https://img.shields.io/badge/github-OCA%2Fdelivery--carrier-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/delivery-carrier-18-0/delivery-carrier-18-0-delivery_state"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/delivery-carrier&target_branch=18.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
|
373
378
|
<p>This module adds additional functions that will be needed for the
|
|
374
379
|
carrier developments. It provides fields to be able to contemplate the
|
|
375
380
|
tracking states and also adds a global field so it can have generic
|
|
@@ -389,7 +394,7 @@ states in addition to the ones carrier gives us.</p>
|
|
|
389
394
|
</ul>
|
|
390
395
|
</div>
|
|
391
396
|
<div class="section" id="configuration">
|
|
392
|
-
<
|
|
397
|
+
<h2><a class="toc-backref" href="#toc-entry-1">Configuration</a></h2>
|
|
393
398
|
<p>A scheduled action for automating the tracking update for these pickings
|
|
394
399
|
can be configured going to <em>Settings > Technical > Scheduled Actions</em>
|
|
395
400
|
and then choosing <em>Update deliveries states</em>. It will update the pending
|
|
@@ -406,7 +411,7 @@ picking is customer_delivered:</p>
|
|
|
406
411
|
</blockquote>
|
|
407
412
|
</div>
|
|
408
413
|
<div class="section" id="usage">
|
|
409
|
-
<
|
|
414
|
+
<h2><a class="toc-backref" href="#toc-entry-2">Usage</a></h2>
|
|
410
415
|
<p>Depending on the delivery service provider, the state tracking could be
|
|
411
416
|
more or less complete, since it could have or not the necessary API
|
|
412
417
|
calls implemented.</p>
|
|
@@ -452,7 +457,7 @@ given by the provider (which is mapped to the ones in this module)</p>
|
|
|
452
457
|
</blockquote>
|
|
453
458
|
</div>
|
|
454
459
|
<div class="section" id="bug-tracker">
|
|
455
|
-
<
|
|
460
|
+
<h2><a class="toc-backref" href="#toc-entry-3">Bug Tracker</a></h2>
|
|
456
461
|
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/delivery-carrier/issues">GitHub Issues</a>.
|
|
457
462
|
In case of trouble, please check there if your issue has already been reported.
|
|
458
463
|
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
|
@@ -460,9 +465,9 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
|
460
465
|
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
|
461
466
|
</div>
|
|
462
467
|
<div class="section" id="credits">
|
|
463
|
-
<
|
|
468
|
+
<h2><a class="toc-backref" href="#toc-entry-4">Credits</a></h2>
|
|
464
469
|
<div class="section" id="authors">
|
|
465
|
-
<
|
|
470
|
+
<h3><a class="toc-backref" href="#toc-entry-5">Authors</a></h3>
|
|
466
471
|
<ul class="simple">
|
|
467
472
|
<li>Trey (www.trey.es)</li>
|
|
468
473
|
<li>FactorLibre</li>
|
|
@@ -470,7 +475,7 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
|
470
475
|
</ul>
|
|
471
476
|
</div>
|
|
472
477
|
<div class="section" id="contributors">
|
|
473
|
-
<
|
|
478
|
+
<h3><a class="toc-backref" href="#toc-entry-6">Contributors</a></h3>
|
|
474
479
|
<ul class="simple">
|
|
475
480
|
<li><a class="reference external" href="https://www.trey.es">Trey</a>:<ul>
|
|
476
481
|
<li>Roberto Lizana <<a class="reference external" href="mailto:roberto@trey.es">roberto@trey.es</a>></li>
|
|
@@ -490,7 +495,7 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
|
490
495
|
</ul>
|
|
491
496
|
</div>
|
|
492
497
|
<div class="section" id="maintainers">
|
|
493
|
-
<
|
|
498
|
+
<h3><a class="toc-backref" href="#toc-entry-7">Maintainers</a></h3>
|
|
494
499
|
<p>This module is maintained by the OCA.</p>
|
|
495
500
|
<a class="reference external image-reference" href="https://odoo-community.org">
|
|
496
501
|
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
|
|
@@ -503,5 +508,6 @@ promote its widespread use.</p>
|
|
|
503
508
|
</div>
|
|
504
509
|
</div>
|
|
505
510
|
</div>
|
|
511
|
+
</div>
|
|
506
512
|
</body>
|
|
507
513
|
</html>
|
|
@@ -22,6 +22,8 @@ License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
22
22
|
<field name="date_delivered" />
|
|
23
23
|
<field name="delivery_state" />
|
|
24
24
|
<field name="tracking_state" class="oe_inline" />
|
|
25
|
+
<field name="pod_file" filename="pod_filename" />
|
|
26
|
+
<field name="pod_filename" invisible="1" />
|
|
25
27
|
<button
|
|
26
28
|
name="tracking_state_update"
|
|
27
29
|
string="Update tracking state"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: odoo-addon-delivery_state
|
|
3
|
-
Version: 18.0.1.
|
|
3
|
+
Version: 18.0.1.1.0
|
|
4
4
|
Requires-Python: >=3.10
|
|
5
5
|
Requires-Dist: odoo==18.0.*
|
|
6
6
|
Summary: Provides fields to be able to contemplate the tracking statesand also adds a global fields
|
|
@@ -12,6 +12,11 @@ Classifier: Programming Language :: Python
|
|
|
12
12
|
Classifier: Framework :: Odoo
|
|
13
13
|
Classifier: Framework :: Odoo :: 18.0
|
|
14
14
|
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
|
|
15
|
+
Description-Content-Type: text/x-rst
|
|
16
|
+
|
|
17
|
+
.. image:: https://odoo-community.org/readme-banner-image
|
|
18
|
+
:target: https://odoo-community.org/get-involved?utm_source=readme
|
|
19
|
+
:alt: Odoo Community Association
|
|
15
20
|
|
|
16
21
|
==============
|
|
17
22
|
Delivery State
|
|
@@ -22,13 +27,13 @@ Delivery State
|
|
|
22
27
|
!! This file is generated by oca-gen-addon-readme !!
|
|
23
28
|
!! changes will be overwritten. !!
|
|
24
29
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
25
|
-
!! source digest: sha256:
|
|
30
|
+
!! source digest: sha256:d64fd22ab49cba03ff16e84772582cbb328d55953ca57e6201e2191c00a6f066
|
|
26
31
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
27
32
|
|
|
28
33
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
29
34
|
:target: https://odoo-community.org/page/development-status
|
|
30
35
|
:alt: Beta
|
|
31
|
-
.. |badge2| image:: https://img.shields.io/badge/
|
|
36
|
+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
|
|
32
37
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
33
38
|
:alt: License: AGPL-3
|
|
34
39
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fdelivery--carrier-lightgray.png?logo=github
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
odoo/addons/delivery_state/README.rst,sha256=
|
|
1
|
+
odoo/addons/delivery_state/README.rst,sha256=E8W3qC91NlJt3lkIhbMqCJgnQ0g8oMQdD4gFdP4ZeY8,5628
|
|
2
2
|
odoo/addons/delivery_state/__init__.py,sha256=vjC7oVOHhST0bMtkabfH6FeMaqB-PHV4o8HQvIB_5NM,86
|
|
3
|
-
odoo/addons/delivery_state/__manifest__.py,sha256=
|
|
3
|
+
odoo/addons/delivery_state/__manifest__.py,sha256=b4N6sIqjH8L90L1lL2rqycjrDAoydMTe70OeZgY7Zj8,809
|
|
4
4
|
odoo/addons/delivery_state/data/ir_cron_data.xml,sha256=a8pIAiddcrLqvQzF4Lx-3fTJ4jbYqmHoxbvUnUtBYFc,463
|
|
5
5
|
odoo/addons/delivery_state/data/mail_template.xml,sha256=U6MhWcPRLWIeIYkpfuvhEDI5-GZ-pswfXPUETmg9U8U,1344
|
|
6
|
-
odoo/addons/delivery_state/i18n/delivery_state.pot,sha256=
|
|
6
|
+
odoo/addons/delivery_state/i18n/delivery_state.pot,sha256=jUbspGtArzhxOarfisOG5R2vYifXKCRxUHN4I9tm4EY,6035
|
|
7
7
|
odoo/addons/delivery_state/i18n/es.po,sha256=t548exglxSJ7yAxKBOIzOp6qGn-wrGee5DalNxZfLhU,8844
|
|
8
8
|
odoo/addons/delivery_state/i18n/fr.po,sha256=AVgT5k2gldpaEMcygME88rpedTP7MJRe7328k2xoNw4,6657
|
|
9
9
|
odoo/addons/delivery_state/i18n/it.po,sha256=y3j7xlOH3A8tYY6JcIYwJ_Oey5n1hfB7IpXpmt6yc7o,7382
|
|
@@ -11,18 +11,18 @@ odoo/addons/delivery_state/models/__init__.py,sha256=cpomDITzUjM_K1CWge5kZH7Geo-
|
|
|
11
11
|
odoo/addons/delivery_state/models/delivery_carrier.py,sha256=l65TjoKhwiAAtDAhqGdfcMLiE7QMRGz0szbqYS2xd6c,838
|
|
12
12
|
odoo/addons/delivery_state/models/res_company.py,sha256=TmiRVODzdSApqG8oALxder-cR8gDEkIjQQp2Hu7IbpA,560
|
|
13
13
|
odoo/addons/delivery_state/models/res_config_settings.py,sha256=o8_pVps9gOceamgKwJO1IHyzXhbSoL5KKntFU3fAUNY,548
|
|
14
|
-
odoo/addons/delivery_state/models/stock_picking.py,sha256=
|
|
14
|
+
odoo/addons/delivery_state/models/stock_picking.py,sha256=ZkyojlDMreUu1thULzygmc-r80uEzpwMDkQGX7QCAS8,3482
|
|
15
15
|
odoo/addons/delivery_state/readme/CONFIGURE.md,sha256=qTUnJHkLOG67b53gXQIVaMiw7DerJ54x4TQNRQfqwpM,645
|
|
16
16
|
odoo/addons/delivery_state/readme/CONTRIBUTORS.md,sha256=z9acHu_jLy9kE6Sl3BVDxJuyP7af206ckJ0sgcklsmA,315
|
|
17
17
|
odoo/addons/delivery_state/readme/DESCRIPTION.md,sha256=XvCND-7CFgybGm3C2S6adPRFSJjbU9UXqxa54jeE_JU,254
|
|
18
18
|
odoo/addons/delivery_state/readme/USAGE.md,sha256=bBK1O4dDBWeaYVLiI1o-Vuw-SVic7VHvPmzj0-5wEb8,1424
|
|
19
19
|
odoo/addons/delivery_state/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
|
20
|
-
odoo/addons/delivery_state/static/description/index.html,sha256=
|
|
20
|
+
odoo/addons/delivery_state/static/description/index.html,sha256=aSkWuM9nOZQgBiHY8fGMzHs5rzypYhqEK1qnBHmS38A,16125
|
|
21
21
|
odoo/addons/delivery_state/tests/__init__.py,sha256=giksTYtSXScTPW6jKMPrb3DDCqTX_0HL1G76G5IJhQY,175
|
|
22
22
|
odoo/addons/delivery_state/tests/test_delivery_state.py,sha256=omYhd0h3Y-FYPU_4rbGeSGiESiG4dX7zUkupOKp1kMI,6534
|
|
23
23
|
odoo/addons/delivery_state/views/res_config_settings_view.xml,sha256=LspyMgUk7H3Ocv9YPEZHMGjUJv7joIMOnPEdTjFmDWs,2129
|
|
24
|
-
odoo/addons/delivery_state/views/stock_picking_views.xml,sha256=
|
|
25
|
-
odoo_addon_delivery_state-18.0.1.
|
|
26
|
-
odoo_addon_delivery_state-18.0.1.
|
|
27
|
-
odoo_addon_delivery_state-18.0.1.
|
|
28
|
-
odoo_addon_delivery_state-18.0.1.
|
|
24
|
+
odoo/addons/delivery_state/views/stock_picking_views.xml,sha256=BsGfPOIdijhtz9wRf7Hhzkz4vi4kPqEtHJXw8TIfErY,1638
|
|
25
|
+
odoo_addon_delivery_state-18.0.1.1.0.dist-info/METADATA,sha256=7CLqO9-8k_g5IPIlk__Tg3kWzqcw4hwvsIN3zMBoCS0,6272
|
|
26
|
+
odoo_addon_delivery_state-18.0.1.1.0.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
|
|
27
|
+
odoo_addon_delivery_state-18.0.1.1.0.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
|
|
28
|
+
odoo_addon_delivery_state-18.0.1.1.0.dist-info/RECORD,,
|
|
File without changes
|