odoo-addon-dms 18.0.1.0.5__py3-none-any.whl → 18.0.1.0.6__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 +6 -2
- odoo/addons/dms/__manifest__.py +1 -1
- odoo/addons/dms/models/dms_security_mixin.py +20 -1
- odoo/addons/dms/static/description/index.html +29 -23
- odoo/addons/dms/static/src/js/views/dms_file_upload.esm.js +1 -1
- odoo/addons/dms/tests/test_directory.py +15 -1
- {odoo_addon_dms-18.0.1.0.5.dist-info → odoo_addon_dms-18.0.1.0.6.dist-info}/METADATA +7 -3
- {odoo_addon_dms-18.0.1.0.5.dist-info → odoo_addon_dms-18.0.1.0.6.dist-info}/RECORD +10 -10
- {odoo_addon_dms-18.0.1.0.5.dist-info → odoo_addon_dms-18.0.1.0.6.dist-info}/WHEEL +0 -0
- {odoo_addon_dms-18.0.1.0.5.dist-info → odoo_addon_dms-18.0.1.0.6.dist-info}/top_level.txt +0 -0
odoo/addons/dms/README.rst
CHANGED
@@ -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
|
Document Management System
|
3
7
|
==========================
|
@@ -7,13 +11,13 @@ Document Management System
|
|
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:45ce312f2b0dafc58147b67c526a9005653f2ba9a9208468707b3a5986c7450c
|
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-LGPL--3-blue.png
|
17
21
|
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
|
18
22
|
:alt: License: LGPL-3
|
19
23
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fdms-lightgray.png?logo=github
|
odoo/addons/dms/__manifest__.py
CHANGED
@@ -275,6 +275,17 @@ class DmsSecurityMixin(models.AbstractModel):
|
|
275
275
|
result |= self._filtered_access_no_recursion(operation)
|
276
276
|
return result
|
277
277
|
|
278
|
+
def _check_access_dms_record(self, operation: str) -> tuple | None:
|
279
|
+
"""Specific method "similar" to _check_access() but with a different
|
280
|
+
behavior: check if you do not really have access to any of the records
|
281
|
+
in to avoid performing the corresponding create/write/unlink action."""
|
282
|
+
if any(self._ids) and not self.env.su:
|
283
|
+
Rule = self.env["ir.rule"]
|
284
|
+
domain = Rule._compute_domain(self._name, operation)
|
285
|
+
items = self.search(domain)
|
286
|
+
if any(x_id not in items.ids for x_id in self.ids):
|
287
|
+
raise Rule._make_access_error(operation, (self - items))
|
288
|
+
|
278
289
|
@api.model_create_multi
|
279
290
|
def create(self, vals_list):
|
280
291
|
# Create as sudo to avoid testing creation permissions before DMS security
|
@@ -285,5 +296,13 @@ class DmsSecurityMixin(models.AbstractModel):
|
|
285
296
|
res.flush_recordset()
|
286
297
|
# Go back to the original sudo state and check we really had creation permission
|
287
298
|
res = res.sudo(self.env.su)
|
288
|
-
res.
|
299
|
+
res._check_access_dms_record("create")
|
289
300
|
return res
|
301
|
+
|
302
|
+
def write(self, vals):
|
303
|
+
self._check_access_dms_record("write")
|
304
|
+
return super().write(vals)
|
305
|
+
|
306
|
+
def unlink(self):
|
307
|
+
self._check_access_dms_record("unlink")
|
308
|
+
return super().unlink()
|
@@ -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">Document Management System</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="document-management-system">
|
370
|
+
<h1>Document Management System</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:45ce312f2b0dafc58147b67c526a9005653f2ba9a9208468707b3a5986c7450c
|
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/lgpl-3.0-standalone.html"><img alt="License: LGPL-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/lgpl-3.0-standalone.html"><img alt="License: LGPL-3" src="https://img.shields.io/badge/license-LGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/dms/tree/18.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-18-0/dms-18-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=18.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
373
378
|
<p>DMS is a module for creating, managing and viewing document files
|
374
379
|
directly within Odoo. This module is only the basis for an entire
|
375
380
|
ecosystem of apps that extend and seamlessly integrate with the document
|
@@ -410,21 +415,21 @@ anonymous user.</p>
|
|
410
415
|
</ul>
|
411
416
|
</div>
|
412
417
|
<div class="section" id="installation">
|
413
|
-
<
|
418
|
+
<h2><a class="toc-backref" href="#toc-entry-1">Installation</a></h2>
|
414
419
|
<div class="section" id="preview">
|
415
|
-
<
|
420
|
+
<h3><a class="toc-backref" href="#toc-entry-2">Preview</a></h3>
|
416
421
|
<p><tt class="docutils literal"><span class="pre">python-magic</span></tt> library is recommended to be installed for having whole
|
417
422
|
support to get proper file types and file preview.</p>
|
418
423
|
</div>
|
419
424
|
</div>
|
420
425
|
<div class="section" id="configuration">
|
421
|
-
<
|
426
|
+
<h2><a class="toc-backref" href="#toc-entry-3">Configuration</a></h2>
|
422
427
|
</div>
|
423
428
|
<div class="section" id="configuration-1">
|
424
|
-
<
|
429
|
+
<h2><a class="toc-backref" href="#toc-entry-4">Configuration</a></h2>
|
425
430
|
<p>To configure this module, you need to:</p>
|
426
431
|
<div class="section" id="create-a-storage">
|
427
|
-
<
|
432
|
+
<h3><a class="toc-backref" href="#toc-entry-5">1. Create a storage</a></h3>
|
428
433
|
<ol class="arabic simple">
|
429
434
|
<li>Go to <em>Documents -> Configuration -> Storages</em>.</li>
|
430
435
|
<li>Create a new document storage. You can choose between three options
|
@@ -437,7 +442,7 @@ on <tt class="docutils literal">Save Type</tt>:<ul>
|
|
437
442
|
</ol>
|
438
443
|
</div>
|
439
444
|
<div class="section" id="create-an-access-group">
|
440
|
-
<
|
445
|
+
<h3><a class="toc-backref" href="#toc-entry-6">2. Create an access group</a></h3>
|
441
446
|
<ol class="arabic simple">
|
442
447
|
<li>Next, create an administrative access group. Go to <em>Configuration ->
|
443
448
|
Access Groups</em>.<ul>
|
@@ -453,7 +458,7 @@ control.</li>
|
|
453
458
|
</ol>
|
454
459
|
</div>
|
455
460
|
<div class="section" id="create-a-directory">
|
456
|
-
<
|
461
|
+
<h3><a class="toc-backref" href="#toc-entry-7">3. Create a directory</a></h3>
|
457
462
|
<ol class="arabic simple">
|
458
463
|
<li>Afterward, go to <em>Documents -> Directories</em>.</li>
|
459
464
|
<li>Create a new directory, mark it as root and select the previously
|
@@ -476,7 +481,7 @@ Groups</em>).</li>
|
|
476
481
|
</div>
|
477
482
|
</div>
|
478
483
|
<div class="section" id="migration">
|
479
|
-
<
|
484
|
+
<h2><a class="toc-backref" href="#toc-entry-8">Migration</a></h2>
|
480
485
|
<p>If you need to modify the storage <tt class="docutils literal">Save Type</tt> you might want to
|
481
486
|
migrate the file data. To achieve it, you need to:</p>
|
482
487
|
<ol class="arabic simple">
|
@@ -492,19 +497,19 @@ storages and migrate them manually on <em>Documents -> Configuration ->
|
|
492
497
|
Migration</em></p>
|
493
498
|
</div>
|
494
499
|
<div class="section" id="file-wizard-selection">
|
495
|
-
<
|
500
|
+
<h2><a class="toc-backref" href="#toc-entry-9">File Wizard Selection</a></h2>
|
496
501
|
<p>There is an action called <tt class="docutils literal">action_dms_file_wizard_selector</tt> to open a
|
497
502
|
wizard to list files in kanban view. This can be used (example
|
498
503
|
dms_attachment_link module) to add a button in kanban view with the
|
499
504
|
action we need.</p>
|
500
505
|
</div>
|
501
506
|
<div class="section" id="usage">
|
502
|
-
<
|
507
|
+
<h2><a class="toc-backref" href="#toc-entry-10">Usage</a></h2>
|
503
508
|
<p>The best way to manage the documents is to switch to the Documents view.
|
504
509
|
Existing documents can be managed there and new documents can be
|
505
510
|
created.</p>
|
506
511
|
<div class="section" id="portal-functionality">
|
507
|
-
<
|
512
|
+
<h3><a class="toc-backref" href="#toc-entry-11">Portal functionality</a></h3>
|
508
513
|
<p>You can add any portal user to DMS access groups, and then allow that
|
509
514
|
group in directories, so they will see in the portal such directories
|
510
515
|
and their files. Another possibility is to click on “Share” button
|
@@ -513,7 +518,7 @@ access to that resource, no matter if logged or not.</p>
|
|
513
518
|
</div>
|
514
519
|
</div>
|
515
520
|
<div class="section" id="known-issues-roadmap">
|
516
|
-
<
|
521
|
+
<h2><a class="toc-backref" href="#toc-entry-12">Known issues / Roadmap</a></h2>
|
517
522
|
<ul class="simple">
|
518
523
|
<li>Files preview in portal</li>
|
519
524
|
<li>Allow to download folder in portal and create zip file with all
|
@@ -540,7 +545,7 @@ any part of Odoo.</li>
|
|
540
545
|
</ul>
|
541
546
|
</div>
|
542
547
|
<div class="section" id="bug-tracker">
|
543
|
-
<
|
548
|
+
<h2><a class="toc-backref" href="#toc-entry-13">Bug Tracker</a></h2>
|
544
549
|
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/dms/issues">GitHub Issues</a>.
|
545
550
|
In case of trouble, please check there if your issue has already been reported.
|
546
551
|
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
@@ -548,16 +553,16 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
548
553
|
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
549
554
|
</div>
|
550
555
|
<div class="section" id="credits">
|
551
|
-
<
|
556
|
+
<h2><a class="toc-backref" href="#toc-entry-14">Credits</a></h2>
|
552
557
|
<div class="section" id="authors">
|
553
|
-
<
|
558
|
+
<h3><a class="toc-backref" href="#toc-entry-15">Authors</a></h3>
|
554
559
|
<ul class="simple">
|
555
560
|
<li>MuK IT</li>
|
556
561
|
<li>Tecnativa</li>
|
557
562
|
</ul>
|
558
563
|
</div>
|
559
564
|
<div class="section" id="contributors">
|
560
|
-
<
|
565
|
+
<h3><a class="toc-backref" href="#toc-entry-16">Contributors</a></h3>
|
561
566
|
<ul class="simple">
|
562
567
|
<li>Mathias Markl <<a class="reference external" href="mailto:mathias.markl@mukit.at">mathias.markl@mukit.at</a>></li>
|
563
568
|
<li>Enric Tobella <<a class="reference external" href="mailto:etobella@creublanca.es">etobella@creublanca.es</a>></li>
|
@@ -586,7 +591,7 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
586
591
|
</ul>
|
587
592
|
</div>
|
588
593
|
<div class="section" id="other-credits">
|
589
|
-
<
|
594
|
+
<h3><a class="toc-backref" href="#toc-entry-17">Other credits</a></h3>
|
590
595
|
<p>Some pictures are based on or inspired by:</p>
|
591
596
|
<ul class="simple">
|
592
597
|
<li><a class="reference external" href="https://www.flaticon.com/authors/roundicons">Roundicons</a></li>
|
@@ -597,7 +602,7 @@ DMS icon</li>
|
|
597
602
|
</ul>
|
598
603
|
</div>
|
599
604
|
<div class="section" id="maintainers">
|
600
|
-
<
|
605
|
+
<h3><a class="toc-backref" href="#toc-entry-18">Maintainers</a></h3>
|
601
606
|
<p>This module is maintained by the OCA.</p>
|
602
607
|
<a class="reference external image-reference" href="https://odoo-community.org">
|
603
608
|
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
|
@@ -610,5 +615,6 @@ promote its widespread use.</p>
|
|
610
615
|
</div>
|
611
616
|
</div>
|
612
617
|
</div>
|
618
|
+
</div>
|
613
619
|
</body>
|
614
620
|
</html>
|
@@ -6,7 +6,9 @@
|
|
6
6
|
|
7
7
|
import os
|
8
8
|
|
9
|
-
from odoo
|
9
|
+
from odoo import Command
|
10
|
+
from odoo.exceptions import AccessError, UserError
|
11
|
+
from odoo.tests import new_test_user
|
10
12
|
from odoo.tests.common import users
|
11
13
|
from odoo.tools import mute_logger
|
12
14
|
|
@@ -266,6 +268,18 @@ class DirectoryTestCaseBase(StorageDatabaseBaseCase):
|
|
266
268
|
msg="The tag_ids field should be a multi range field",
|
267
269
|
)
|
268
270
|
|
271
|
+
def test_directory_unlink_custom(self):
|
272
|
+
user = new_test_user(
|
273
|
+
self.env, login="test-dms-customer-user", groups="dms.group_dms_user"
|
274
|
+
)
|
275
|
+
group = self.access_group_model.create(
|
276
|
+
{"name": "Test read group", "explicit_user_ids": [Command.set(user.ids)]}
|
277
|
+
)
|
278
|
+
root_directory = self.create_directory(storage=self.storage)
|
279
|
+
root_directory.group_ids = [Command.link(group.id)]
|
280
|
+
with self.assertRaises(AccessError):
|
281
|
+
root_directory.with_user(user).unlink()
|
282
|
+
|
269
283
|
|
270
284
|
class DirectoryMailTestCase(StorageDatabaseBaseCase):
|
271
285
|
@classmethod
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: odoo-addon-dms
|
3
|
-
Version: 18.0.1.0.
|
3
|
+
Version: 18.0.1.0.6
|
4
4
|
Requires-Python: >=3.10
|
5
5
|
Requires-Dist: odoo==18.0.*
|
6
6
|
Summary: Document Management System for Odoo
|
@@ -13,6 +13,10 @@ Classifier: Framework :: Odoo
|
|
13
13
|
Classifier: Framework :: Odoo :: 18.0
|
14
14
|
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
|
15
15
|
|
16
|
+
.. image:: https://odoo-community.org/readme-banner-image
|
17
|
+
:target: https://odoo-community.org/get-involved?utm_source=readme
|
18
|
+
:alt: Odoo Community Association
|
19
|
+
|
16
20
|
==========================
|
17
21
|
Document Management System
|
18
22
|
==========================
|
@@ -22,13 +26,13 @@ Document Management System
|
|
22
26
|
!! This file is generated by oca-gen-addon-readme !!
|
23
27
|
!! changes will be overwritten. !!
|
24
28
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
25
|
-
!! source digest: sha256:
|
29
|
+
!! source digest: sha256:45ce312f2b0dafc58147b67c526a9005653f2ba9a9208468707b3a5986c7450c
|
26
30
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
27
31
|
|
28
32
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
29
33
|
:target: https://odoo-community.org/page/development-status
|
30
34
|
:alt: Beta
|
31
|
-
.. |badge2| image:: https://img.shields.io/badge/
|
35
|
+
.. |badge2| image:: https://img.shields.io/badge/license-LGPL--3-blue.png
|
32
36
|
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
|
33
37
|
:alt: License: LGPL-3
|
34
38
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fdms-lightgray.png?logo=github
|
@@ -1,6 +1,6 @@
|
|
1
|
-
odoo/addons/dms/README.rst,sha256=
|
1
|
+
odoo/addons/dms/README.rst,sha256=K9WycEOw_lH6-mTnlkvud6SlQ__Wm7mNBm0Fxlfyhyg,8517
|
2
2
|
odoo/addons/dms/__init__.py,sha256=dnUeA_K1torbiMNF3tt2dtECdk-FkWm01DByr9MBMIA,69
|
3
|
-
odoo/addons/dms/__manifest__.py,sha256=
|
3
|
+
odoo/addons/dms/__manifest__.py,sha256=NYA5WyP4DC27sxYIPRhnGRQ2CdMQ2kFojQqqC0_4PFI,2260
|
4
4
|
odoo/addons/dms/actions/file.xml,sha256=z4UWfhmDcaOxdcwMbFH9Wjgi8_23RRAouD_o3FFaiaw,520
|
5
5
|
odoo/addons/dms/controllers/__init__.py,sha256=akfNDwFGryweTYowOA3DbbP0zvLmQtCdihtGhYvsIPQ,40
|
6
6
|
odoo/addons/dms/controllers/main.py,sha256=DW7wSHB_47kkxQQMCuic8ptvs_wnF-i6vJ0sXIKGgUk,531
|
@@ -31,7 +31,7 @@ odoo/addons/dms/models/base.py,sha256=3Lyp4z3QzSmRlb4QQVQ1JMFH9yFC1XkAbvZ8EXu9cc
|
|
31
31
|
odoo/addons/dms/models/directory.py,sha256=cZbxeLjqClYqbQIeenp2kILl3ds4uDGWVMNCGX5eSO4,27942
|
32
32
|
odoo/addons/dms/models/dms_category.py,sha256=SWhf5uAHo9qyYocQH-TbmxqNvL9gPsUEcz_ACOua--Q,3311
|
33
33
|
odoo/addons/dms/models/dms_file.py,sha256=wJJ7MBLPjisSpCnozLLalsFuI32OubLJCtgEWDcQskk,24392
|
34
|
-
odoo/addons/dms/models/dms_security_mixin.py,sha256=
|
34
|
+
odoo/addons/dms/models/dms_security_mixin.py,sha256=I7a860A6YkBwYYJuDdkZEPvM0k-_EFVG2sX8Ofo2L6Q,11691
|
35
35
|
odoo/addons/dms/models/ir_attachment.py,sha256=JcD9GGeiYj8ahSq1QtPaR_2Y_TpeqgTXar6nakjlnEQ,4240
|
36
36
|
odoo/addons/dms/models/ir_binary.py,sha256=IZys2wtW_tIHm5NNmwWfCxsWW9geFsfr-25dHQzfQF8,724
|
37
37
|
odoo/addons/dms/models/mail_thread.py,sha256=DBanYxThmxvMLoTWDvh2dBn9mHdADJx0gWTfifa4bcM,561
|
@@ -53,7 +53,7 @@ odoo/addons/dms/security/ir.model.access.csv,sha256=_SuEwHD3SOXbpLalbr5FqGjPvwtD
|
|
53
53
|
odoo/addons/dms/security/security.xml,sha256=PNM3fDyFN4CWooj_aMkLqTR0CYrjAugsCAKbcTm6crw,9159
|
54
54
|
odoo/addons/dms/static/description/icon.png,sha256=KfrJt0JWFclsfbF1KsyjikkjwX3ib9OLlBf2QwyXSD4,1233
|
55
55
|
odoo/addons/dms/static/description/icon.svg,sha256=kOfm8NcYxdEWmr5jGDjvCXmDix2mw-5LT0ZQ4omZ2c0,1820
|
56
|
-
odoo/addons/dms/static/description/index.html,sha256=
|
56
|
+
odoo/addons/dms/static/description/index.html,sha256=uKI5GEK72JgSFBrMI3NqFENYUceTRuaYioK1q6VsIC8,22119
|
57
57
|
odoo/addons/dms/static/description/portal_icon.svg,sha256=z5RFc6mU_DAgNHfOS2OncYBlQBczsawqwRI1IFwct0M,4801
|
58
58
|
odoo/addons/dms/static/icons/file_ai.svg,sha256=HeCXVJivVnn6jjj__5WJiLfZv4mrmAamPFek0CwozCc,3343
|
59
59
|
odoo/addons/dms/static/icons/file_aj.svg,sha256=mUbfvaV5_m3zJ3zZKldBbaFz4AZNQNecSZ1W_JCZeE4,3063
|
@@ -121,7 +121,7 @@ odoo/addons/dms/static/src/js/fields/path_json/path_owl.esm.js,sha256=2KjLITE_yA
|
|
121
121
|
odoo/addons/dms/static/src/js/fields/path_json/path_owl.xml,sha256=aKX1wF0zZljsTkDfift29em53hr7piSAnZ73sHH6uks,1143
|
122
122
|
odoo/addons/dms/static/src/js/fields/preview_binary/preview_record.esm.js,sha256=DWREIEbnlF4GryWhe0YgEHB7po3-C8Y8vyAXgn7KTXU,1684
|
123
123
|
odoo/addons/dms/static/src/js/fields/preview_binary/preview_record.xml,sha256=6x_qLFe7P29hpCe69a-8j4Bg33Tf4JBPzZh3h6zavp8,1341
|
124
|
-
odoo/addons/dms/static/src/js/views/dms_file_upload.esm.js,sha256=
|
124
|
+
odoo/addons/dms/static/src/js/views/dms_file_upload.esm.js,sha256=7F8zpocepVHhFqZM9d84pJVcrlk5blQJfo77-c_3XsA,5759
|
125
125
|
odoo/addons/dms/static/src/js/views/file_kanban_controller.esm.js,sha256=I0ZZ97_OxqfLgR65yzXcwWzg3z9MqDhJI_EfsL-sgGA,495
|
126
126
|
odoo/addons/dms/static/src/js/views/file_kanban_controller.xml,sha256=5kNwcISPOnz8YZjrRzaQO0Hp12AHFOIVtFSgSWZDiCg,762
|
127
127
|
odoo/addons/dms/static/src/js/views/file_kanban_record.esm.js,sha256=DoswQuqi12Htbjw1lpF7l9-6TPYbiNDFvox_cdk-YOM,2062
|
@@ -178,7 +178,7 @@ odoo/addons/dms/test/video.mp4,sha256=v4nhmkmDkUulGtzewA92QPoCGL46FW_1hRrmQCAjPv
|
|
178
178
|
odoo/addons/dms/tests/__init__.py,sha256=eIbM1FQ81v8gWbUqsWhLnllFxuBeCnU7gw9Swb-mSHU,215
|
179
179
|
odoo/addons/dms/tests/common.py,sha256=5E1sWCyBCCRQLNt8mdHUC_y0U1C73leLUlJRggDRxoQ,8210
|
180
180
|
odoo/addons/dms/tests/test_benchmark.py,sha256=bAQYU7v45U67PCAONNUeod0Sw1ZascrYQFi1acfrnG8,14102
|
181
|
-
odoo/addons/dms/tests/test_directory.py,sha256=
|
181
|
+
odoo/addons/dms/tests/test_directory.py,sha256=cijcg2ySAxUZUtGMRWUztyuhR-kBC89le1DX9Geio6c,12165
|
182
182
|
odoo/addons/dms/tests/test_file.py,sha256=YTgPQfUfy2KJRxak2SO-Ey8_5avbjGuPGyFAGsEsJMw,7710
|
183
183
|
odoo/addons/dms/tests/test_file_database.py,sha256=nX34iI-MdbX98wFkykvBOVKFFgY8FOvvrPcwxiw4i7Q,5841
|
184
184
|
odoo/addons/dms/tests/test_portal.py,sha256=KGEO141mYxjqCP2-956tP-D_kAeTYGR5__fYmCKDnfA,3903
|
@@ -206,7 +206,7 @@ odoo/addons/dms/wizards/wizard_dms_file_move.py,sha256=zQouQDJuLWOrjzkksiUaTf0DF
|
|
206
206
|
odoo/addons/dms/wizards/wizard_dms_file_move_views.xml,sha256=1zclO-2cv8-erAcllgdbuvC65KWWIHAWt9z73bbX_X8,1927
|
207
207
|
odoo/addons/dms/wizards/wizard_dms_share.py,sha256=s7n6nQy0I6qVsvQ7Z57lfY28wi8tbd9062Bdw-BSoWg,558
|
208
208
|
odoo/addons/dms/wizards/wizard_dms_share_views.xml,sha256=63BhWyowqJ2Yf3RdOdjT6WvC13jXxTKzsJEZXmaHv-A,1230
|
209
|
-
odoo_addon_dms-18.0.1.0.
|
210
|
-
odoo_addon_dms-18.0.1.0.
|
211
|
-
odoo_addon_dms-18.0.1.0.
|
212
|
-
odoo_addon_dms-18.0.1.0.
|
209
|
+
odoo_addon_dms-18.0.1.0.6.dist-info/METADATA,sha256=c4_4k0tR7HhPH-5h5Y6VkXDAEOxX9Blf4-9zHqeLYUo,9029
|
210
|
+
odoo_addon_dms-18.0.1.0.6.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
|
211
|
+
odoo_addon_dms-18.0.1.0.6.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
|
212
|
+
odoo_addon_dms-18.0.1.0.6.dist-info/RECORD,,
|
File without changes
|
File without changes
|