odoo-addon-dms 16.0.1.3.0.7__py3-none-any.whl → 16.0.1.4.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/dms/README.rst +1 -1
- odoo/addons/dms/__manifest__.py +1 -1
- odoo/addons/dms/i18n/dms.pot +1 -1
- odoo/addons/dms/models/directory.py +2 -0
- odoo/addons/dms/static/description/index.html +1 -1
- odoo/addons/dms/views/directory.xml +1 -1
- odoo/addons/dms/views/dms_file.xml +1 -0
- {odoo_addon_dms-16.0.1.3.0.7.dist-info → odoo_addon_dms-16.0.1.4.0.dist-info}/METADATA +2 -2
- {odoo_addon_dms-16.0.1.3.0.7.dist-info → odoo_addon_dms-16.0.1.4.0.dist-info}/RECORD +11 -11
- {odoo_addon_dms-16.0.1.3.0.7.dist-info → odoo_addon_dms-16.0.1.4.0.dist-info}/WHEEL +1 -1
- {odoo_addon_dms-16.0.1.3.0.7.dist-info → odoo_addon_dms-16.0.1.4.0.dist-info}/top_level.txt +0 -0
odoo/addons/dms/README.rst
CHANGED
@@ -7,7 +7,7 @@ Document Management System
|
|
7
7
|
!! This file is generated by oca-gen-addon-readme !!
|
8
8
|
!! changes will be overwritten. !!
|
9
9
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
10
|
-
!! source digest: sha256:
|
10
|
+
!! source digest: sha256:d08fb86d7cebb5adbab4a7658e46e630a25d68106405b186db4ca0b011e7cb2d
|
11
11
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
12
12
|
|
13
13
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
odoo/addons/dms/__manifest__.py
CHANGED
odoo/addons/dms/i18n/dms.pot
CHANGED
@@ -228,8 +228,8 @@ msgid "A file with the same name already exists"
|
|
228
228
|
msgstr ""
|
229
229
|
|
230
230
|
#. module: dms
|
231
|
-
#. odoo-javascript
|
232
231
|
#. odoo-python
|
232
|
+
#. odoo-javascript
|
233
233
|
#: code:addons/dms/models/dms_file.py:0
|
234
234
|
#: code:addons/dms/static/src/js/views/dms_file_upload.esm.js:0
|
235
235
|
#, python-format
|
@@ -770,6 +770,7 @@ class DmsDirectory(models.Model):
|
|
770
770
|
[("parent_id", "child_of", self.id)],
|
771
771
|
]
|
772
772
|
)
|
773
|
+
action["display_name"] = self.name
|
773
774
|
action["domain"] = domain
|
774
775
|
action["context"] = dict(
|
775
776
|
self.env.context,
|
@@ -787,6 +788,7 @@ class DmsDirectory(models.Model):
|
|
787
788
|
[("directory_id", "child_of", self.id)],
|
788
789
|
]
|
789
790
|
)
|
791
|
+
action["display_name"] = self.name
|
790
792
|
action["domain"] = domain
|
791
793
|
action["context"] = dict(
|
792
794
|
self.env.context,
|
@@ -366,7 +366,7 @@ ul.auto-toc {
|
|
366
366
|
!! This file is generated by oca-gen-addon-readme !!
|
367
367
|
!! changes will be overwritten. !!
|
368
368
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
369
|
-
!! source digest: sha256:
|
369
|
+
!! source digest: sha256:d08fb86d7cebb5adbab4a7658e46e630a25d68106405b186db4ca0b011e7cb2d
|
370
370
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
371
371
|
<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/lgpl-3.0-standalone.html"><img alt="License: LGPL-3" src="https://img.shields.io/badge/licence-LGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/dms/tree/16.0/dms"><img alt="OCA/dms" src="https://img.shields.io/badge/github-OCA%2Fdms-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/dms-16-0/dms-16-0-dms"><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/dms&target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
372
372
|
<p>DMS is a module for creating, managing and viewing document files directly
|
@@ -376,7 +376,7 @@
|
|
376
376
|
<field name="name">dms_directory.tree</field>
|
377
377
|
<field name="model">dms.directory</field>
|
378
378
|
<field name="arch" type="xml">
|
379
|
-
<tree>
|
379
|
+
<tree default_order="complete_name asc">
|
380
380
|
<field name="name" />
|
381
381
|
<field name="write_date" />
|
382
382
|
<field name="count_files" string="Files" />
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: odoo-addon-dms
|
3
|
-
Version: 16.0.1.
|
3
|
+
Version: 16.0.1.4.0
|
4
4
|
Summary: Document Management System for Odoo
|
5
5
|
Home-page: https://github.com/OCA/dms
|
6
6
|
Author: MuK IT, Tecnativa, Odoo Community Association (OCA)
|
@@ -23,7 +23,7 @@ Document Management System
|
|
23
23
|
!! This file is generated by oca-gen-addon-readme !!
|
24
24
|
!! changes will be overwritten. !!
|
25
25
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
26
|
-
!! source digest: sha256:
|
26
|
+
!! source digest: sha256:d08fb86d7cebb5adbab4a7658e46e630a25d68106405b186db4ca0b011e7cb2d
|
27
27
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
28
28
|
|
29
29
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
@@ -1,6 +1,6 @@
|
|
1
|
-
odoo/addons/dms/README.rst,sha256=
|
1
|
+
odoo/addons/dms/README.rst,sha256=7ZzmiL_ieROaVwfGO2oHJxadDc7ahNwchLlPuFFvmro,7748
|
2
2
|
odoo/addons/dms/__init__.py,sha256=jQ-fltIs1ohXt7udDkkJwzh7ckauQW2rbmv1Wtg3SjQ,47
|
3
|
-
odoo/addons/dms/__manifest__.py,sha256=
|
3
|
+
odoo/addons/dms/__manifest__.py,sha256=B2oGGW037I0Sc0kkQJNHwXthn2mbZ3-KVF8r4wcg9Ek,1767
|
4
4
|
odoo/addons/dms/actions/file.xml,sha256=NlRIQoCbbDSaRmsumJP9dcrNtYpQji74hwhfi5TillE,524
|
5
5
|
odoo/addons/dms/controllers/__init__.py,sha256=akfNDwFGryweTYowOA3DbbP0zvLmQtCdihtGhYvsIPQ,40
|
6
6
|
odoo/addons/dms/controllers/main.py,sha256=9TjOKDeNerPNN4CKL0TWQiqOpNug8pqG6F5uBJO3bkM,1960
|
@@ -13,7 +13,7 @@ odoo/addons/dms/demo/res_users.xml,sha256=edRmAsHsaQYhHiJWdFni5BGM3-0Vskw3A1grXC
|
|
13
13
|
odoo/addons/dms/demo/storage.xml,sha256=-FaGk-HRVGjqsrotq7rfsObWFF4E6FiIGjVWPYFrWiI,751
|
14
14
|
odoo/addons/dms/demo/tag.xml,sha256=QfLyWfBB2Cpa6mMWmuUfQJ-l3Ofj8QpFglVmTFgIsGs,2408
|
15
15
|
odoo/addons/dms/i18n/de.po,sha256=jpwZXl0X_dyiod_R4XAt_WP8gseoDVrQGPGFff07JbQ,80446
|
16
|
-
odoo/addons/dms/i18n/dms.pot,sha256=
|
16
|
+
odoo/addons/dms/i18n/dms.pot,sha256=gDiCI-8Iv11TGgot7-lNx2IdkE0CJH2qozG-9RMqY34,68542
|
17
17
|
odoo/addons/dms/i18n/es.po,sha256=NAjsw_03Qg6pswoIXfp_ohAtYLKoKePox6ur5KO4AE0,83242
|
18
18
|
odoo/addons/dms/i18n/fr.po,sha256=1IuzBwkW612h9rwMZmjB_PZr9FOkPLPCdXq2leF_ahY,82112
|
19
19
|
odoo/addons/dms/i18n/he_IL.po,sha256=PkX4xmQHbt9I7pR-go7SsU5iy_AFIGu7ekZ69tZ4HpA,79127
|
@@ -27,7 +27,7 @@ odoo/addons/dms/models/abstract_dms_mixin.py,sha256=n4-4hkz1qRYQfPcfzMEfCSfi5yzd
|
|
27
27
|
odoo/addons/dms/models/access_groups.py,sha256=ldhs1cc_wlG1G4zfg8ohPwh_mFO1C5wEq6Gza9PXDOU,5504
|
28
28
|
odoo/addons/dms/models/base.py,sha256=t7uhbkDE9L4UdvYJAwPTlX5ff2Y9S01urlFfC3KlLxM,893
|
29
29
|
odoo/addons/dms/models/category.py,sha256=MB36VPKw3DItR5ZYM7CCROO3LDDTpTx87clML966GAs,4132
|
30
|
-
odoo/addons/dms/models/directory.py,sha256=
|
30
|
+
odoo/addons/dms/models/directory.py,sha256=Ge8E_ha4GYGXbDTjpcUPfrMWSF3F7Ffz-X78o_qr0bo,28795
|
31
31
|
odoo/addons/dms/models/dms_file.py,sha256=AkIf8yuIXW0LukqOsZLBIOb3INsbCxX48w81ZVYVVwE,24854
|
32
32
|
odoo/addons/dms/models/dms_security_mixin.py,sha256=PE5o_TvOn746OckncuZs73zVStP348Tlmy9C68PaI2U,9733
|
33
33
|
odoo/addons/dms/models/ir_attachment.py,sha256=-AwkedqL2cgPZ794O31UIMvchrf_a9TPVE1rEb--CXQ,3248
|
@@ -48,7 +48,7 @@ odoo/addons/dms/security/ir.model.access.csv,sha256=y7YrbLylNaNrKJ3w-aG47mz_GP5c
|
|
48
48
|
odoo/addons/dms/security/security.xml,sha256=plasjSwS2w5GK07BvW9obXNOpPgeBLKeEkUJ6Wpc6nA,9085
|
49
49
|
odoo/addons/dms/static/description/icon.png,sha256=8xwcyAfhzMOu_xBinu4KwZsvmqUj6X5aF2LUQvvwdc4,7197
|
50
50
|
odoo/addons/dms/static/description/icon.svg,sha256=cICSzGzl0Z00q7m0yhriujt2ip5_v4ymxAMTGzolxsc,8025
|
51
|
-
odoo/addons/dms/static/description/index.html,sha256=
|
51
|
+
odoo/addons/dms/static/description/index.html,sha256=7mgVFfhJVIbHNvXRgPPyZxZb1bEfQiy_QXEK14ivX_A,20358
|
52
52
|
odoo/addons/dms/static/icons/file_ai.svg,sha256=HeCXVJivVnn6jjj__5WJiLfZv4mrmAamPFek0CwozCc,3343
|
53
53
|
odoo/addons/dms/static/icons/file_aj.svg,sha256=mUbfvaV5_m3zJ3zZKldBbaFz4AZNQNecSZ1W_JCZeE4,3063
|
54
54
|
odoo/addons/dms/static/icons/file_avi.svg,sha256=Pf78IrO6gGsg3aUVguOu6osDwLYz5ceIOLMbTRpya5s,1862
|
@@ -195,15 +195,15 @@ odoo/addons/dms/tests/data/mail02.eml,sha256=QDbZu4Xne3-VgntqqDBviBcSB4Y8Cgn_I8O
|
|
195
195
|
odoo/addons/dms/tools/__init__.py,sha256=X0El9WW-bmLhnUpcS_csCs0TR1RcxaQg36Dy8wyg_vI,19
|
196
196
|
odoo/addons/dms/tools/file.py,sha256=NYgdhsu1qdcLfMInmzhMs-PzDKmFm3wuo9kx610mSJs,1488
|
197
197
|
odoo/addons/dms/views/category.xml,sha256=fjes6BqnZpcB8IJhZliZP4C7HqjJHlRVqRo4mvlEt38,4434
|
198
|
-
odoo/addons/dms/views/directory.xml,sha256=
|
198
|
+
odoo/addons/dms/views/directory.xml,sha256=EHmTttKUk2yyBLmDob4AALdIERZab-l9NQJ6MAKhroI,35106
|
199
199
|
odoo/addons/dms/views/dms_access_groups_views.xml,sha256=vVeq7iGl7YfT1GKVGsulwOdPc6z3xS51hsRXfR2hR7w,5427
|
200
|
-
odoo/addons/dms/views/dms_file.xml,sha256=
|
200
|
+
odoo/addons/dms/views/dms_file.xml,sha256=YaeOioCiRySD0AiUr7ttFgUond0JL2zRWhjFBixqmZA,31392
|
201
201
|
odoo/addons/dms/views/dms_portal_templates.xml,sha256=piujeenSeFNfeQzME_wphQ16Heg2AFmWtBnLO_yv3Z0,5638
|
202
202
|
odoo/addons/dms/views/menu.xml,sha256=YJxLfNpa7HqM5rj09kXGUeernJp9sSTA_mDICKvIs9I,792
|
203
203
|
odoo/addons/dms/views/res_config_settings.xml,sha256=0ypGd5018Lh7ItlOo8Ks5-4RuTImAWocvgTFtYP-RK4,5214
|
204
204
|
odoo/addons/dms/views/storage.xml,sha256=RCspiPEBUSNoR0NC3X9LD1BqmYWPIoq3poQMjcI62vg,10454
|
205
205
|
odoo/addons/dms/views/tag.xml,sha256=A1-WfRlN5TumsEdIEUwx7G2RpX7iHV37ztKxGABLvi0,7186
|
206
|
-
odoo_addon_dms-16.0.1.
|
207
|
-
odoo_addon_dms-16.0.1.
|
208
|
-
odoo_addon_dms-16.0.1.
|
209
|
-
odoo_addon_dms-16.0.1.
|
206
|
+
odoo_addon_dms-16.0.1.4.0.dist-info/METADATA,sha256=791rEU6PwShJ6z9GbUaFr-K_Qkza8WNCnSEVyU-jGYs,8289
|
207
|
+
odoo_addon_dms-16.0.1.4.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
208
|
+
odoo_addon_dms-16.0.1.4.0.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
209
|
+
odoo_addon_dms-16.0.1.4.0.dist-info/RECORD,,
|
File without changes
|