odoo-addon-dms 16.0.1.4.0.23__py3-none-any.whl → 16.0.1.5.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/static/description/index.html +1 -1
- odoo/addons/dms/static/src/scss/directory_kanban.scss +5 -1
- odoo/addons/dms/views/directory.xml +12 -2
- {odoo_addon_dms-16.0.1.4.0.23.dist-info → odoo_addon_dms-16.0.1.5.0.dist-info}/METADATA +2 -2
- {odoo_addon_dms-16.0.1.4.0.23.dist-info → odoo_addon_dms-16.0.1.5.0.dist-info}/RECORD +9 -9
- {odoo_addon_dms-16.0.1.4.0.23.dist-info → odoo_addon_dms-16.0.1.5.0.dist-info}/WHEEL +0 -0
- {odoo_addon_dms-16.0.1.4.0.23.dist-info → odoo_addon_dms-16.0.1.5.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:f036ddb49f1f2603665bf2f251dd46d551959989d6c1775af9b6966b6c8423c2
|
11
11
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
12
12
|
|
13
13
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
odoo/addons/dms/__manifest__.py
CHANGED
@@ -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:f036ddb49f1f2603665bf2f251dd46d551959989d6c1775af9b6966b6c8423c2
|
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
|
@@ -31,10 +31,14 @@
|
|
31
31
|
border-bottom: solid 1px $gray-400;
|
32
32
|
}
|
33
33
|
}
|
34
|
+
span.total_items {
|
35
|
+
margin-left: 3px;
|
36
|
+
margin-top: 3px;
|
37
|
+
}
|
34
38
|
}
|
35
39
|
}
|
36
40
|
.o_kanban_image {
|
37
|
-
width: $o-kanban-image-width
|
41
|
+
width: $o-kanban-image-width - 1;
|
38
42
|
border-right: solid 1px $gray-400;
|
39
43
|
+ div {
|
40
44
|
padding-left: $o-kanban-image-width + $o-kanban-inside-hgutter +
|
@@ -208,6 +208,8 @@
|
|
208
208
|
<field name="count_files" />
|
209
209
|
<field name="count_directories_title" />
|
210
210
|
<field name="count_files_title" />
|
211
|
+
<field name="count_total_directories" />
|
212
|
+
<field name="count_total_files" />
|
211
213
|
<templates>
|
212
214
|
<t t-name="kanban-box">
|
213
215
|
<div
|
@@ -305,7 +307,11 @@
|
|
305
307
|
class="btn btn-sm btn-outline-primary mk_directory_kanban_directories"
|
306
308
|
t-att-title="record.count_directories_title.raw_value"
|
307
309
|
>
|
308
|
-
<i class="fa fa-
|
310
|
+
<i class="fa fa-xs fa-folder" />
|
311
|
+
<span
|
312
|
+
class="total_items"
|
313
|
+
t-esc="record.count_total_directories.raw_value"
|
314
|
+
/>
|
309
315
|
</a>
|
310
316
|
<a
|
311
317
|
type="object"
|
@@ -314,7 +320,11 @@
|
|
314
320
|
class="btn btn-sm btn-outline-primary mk_directory_kanban_files"
|
315
321
|
t-att-title="record.count_files_title.raw_value"
|
316
322
|
>
|
317
|
-
<i class="fa fa-
|
323
|
+
<i class="fa fa-xs fa-file" />
|
324
|
+
<span
|
325
|
+
class="total_items"
|
326
|
+
t-esc="record.count_total_files.raw_value"
|
327
|
+
/>
|
318
328
|
</a>
|
319
329
|
</div>
|
320
330
|
</div>
|
@@ -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.5.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:f036ddb49f1f2603665bf2f251dd46d551959989d6c1775af9b6966b6c8423c2
|
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=_nV2w7M3dhfIvg7lQ50Dl1djRLoLcgKRIHOudl3XRRE,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=Bp5Z5kHk_KDTslqf9DFcvxZDHRLSU89V_wAIQv1EzO8,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
|
@@ -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=j3wcG32qOLtZAgNHLNaTFccnOPaNE4lvbOOaZZ4kzKc,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
|
@@ -134,7 +134,7 @@ odoo/addons/dms/static/src/js/views/fields/binary/preview_record.xml,sha256=fyMy
|
|
134
134
|
odoo/addons/dms/static/src/models/attachment.esm.js,sha256=nm5-a7v7QMqYSUosmuL0YaDg1NVmVDtceL2Bg-HWhMQ,3806
|
135
135
|
odoo/addons/dms/static/src/models/attachment_image.esm.js,sha256=AQG3PEPEp0r4Qmf6UUUdvdxv6t8ZKXsLVapoJuuDn38,1240
|
136
136
|
odoo/addons/dms/static/src/models/attachment_viewer_viewable.esm.js,sha256=3nTupuxE3qhztQRFtjoAJctBDdz3wRqv-o_x58S8bdI,1160
|
137
|
-
odoo/addons/dms/static/src/scss/directory_kanban.scss,sha256=
|
137
|
+
odoo/addons/dms/static/src/scss/directory_kanban.scss,sha256=y3M3GCMhrdK_YK-ozyup1Pi259XmJWD-eZ0jjNqG1mY,3295
|
138
138
|
odoo/addons/dms/static/src/scss/file_kanban.scss,sha256=OX8vLww-fxCsBAHhSvs1HbFiQwpo0lI40HfKe0ioz0g,2274
|
139
139
|
odoo/addons/dms/static/src/scss/variables.scss,sha256=YeLQiICMzfyL1kxAAWMaV12DytMROIcIM4ibzWulmOk,358
|
140
140
|
odoo/addons/dms/static/src/xml/views.xml,sha256=4izebAqbt1Qr-BqHfq5fIAVkiG__y_6F8clKYiwTSg4,3198
|
@@ -195,7 +195,7 @@ 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=qAiSSiIyHr8ZTgPvmm3uxx7rln9h0rmi7N9GN5ebcbg,35732
|
199
199
|
odoo/addons/dms/views/dms_access_groups_views.xml,sha256=vVeq7iGl7YfT1GKVGsulwOdPc6z3xS51hsRXfR2hR7w,5427
|
200
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
|
@@ -203,7 +203,7 @@ odoo/addons/dms/views/menu.xml,sha256=YJxLfNpa7HqM5rj09kXGUeernJp9sSTA_mDICKvIs9
|
|
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.5.0.dist-info/METADATA,sha256=TZdJAiYfqxwzjUCRphafxXjuXU0CwCxREBS1VPRpYX0,8289
|
207
|
+
odoo_addon_dms-16.0.1.5.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
208
|
+
odoo_addon_dms-16.0.1.5.0.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
209
|
+
odoo_addon_dms-16.0.1.5.0.dist-info/RECORD,,
|
File without changes
|
{odoo_addon_dms-16.0.1.4.0.23.dist-info → odoo_addon_dms-16.0.1.5.0.dist-info}/top_level.txt
RENAMED
File without changes
|