odoo-addon-stock-request 17.0.1.1.4__py3-none-any.whl → 17.0.1.1.5.2__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.
Files changed (42) hide show
  1. odoo/addons/stock_request/README.rst +27 -24
  2. odoo/addons/stock_request/__manifest__.py +1 -1
  3. odoo/addons/stock_request/i18n/ca.po +18 -0
  4. odoo/addons/stock_request/i18n/de.po +18 -0
  5. odoo/addons/stock_request/i18n/el_GR.po +18 -0
  6. odoo/addons/stock_request/i18n/es.po +20 -1
  7. odoo/addons/stock_request/i18n/es_ES.po +18 -0
  8. odoo/addons/stock_request/i18n/eu.po +18 -0
  9. odoo/addons/stock_request/i18n/fi.po +18 -0
  10. odoo/addons/stock_request/i18n/fr.po +18 -0
  11. odoo/addons/stock_request/i18n/fr_CH.po +18 -0
  12. odoo/addons/stock_request/i18n/fr_FR.po +18 -0
  13. odoo/addons/stock_request/i18n/gl.po +18 -0
  14. odoo/addons/stock_request/i18n/hr.po +18 -0
  15. odoo/addons/stock_request/i18n/hr_HR.po +18 -0
  16. odoo/addons/stock_request/i18n/it.po +24 -2
  17. odoo/addons/stock_request/i18n/ja.po +18 -0
  18. odoo/addons/stock_request/i18n/ja_JP.po +18 -0
  19. odoo/addons/stock_request/i18n/nl.po +18 -0
  20. odoo/addons/stock_request/i18n/nl_NL.po +18 -0
  21. odoo/addons/stock_request/i18n/pt.po +18 -0
  22. odoo/addons/stock_request/i18n/pt_BR.po +18 -0
  23. odoo/addons/stock_request/i18n/ro.po +18 -0
  24. odoo/addons/stock_request/i18n/ru.po +18 -0
  25. odoo/addons/stock_request/i18n/sl.po +18 -0
  26. odoo/addons/stock_request/i18n/stock_request.pot +18 -0
  27. odoo/addons/stock_request/i18n/tr.po +18 -0
  28. odoo/addons/stock_request/i18n/tr_TR.po +18 -0
  29. odoo/addons/stock_request/i18n/vi_VN.po +18 -0
  30. odoo/addons/stock_request/i18n/zh_CN.po +18 -0
  31. odoo/addons/stock_request/models/res_company.py +4 -0
  32. odoo/addons/stock_request/models/res_config_settings.py +4 -0
  33. odoo/addons/stock_request/models/stock_request.py +5 -0
  34. odoo/addons/stock_request/readme/CONTRIBUTORS.md +2 -0
  35. odoo/addons/stock_request/static/description/index.html +5 -1
  36. odoo/addons/stock_request/tests/test_stock_request.py +49 -0
  37. odoo/addons/stock_request/views/res_config_settings_views.xml +11 -0
  38. {odoo_addon_stock_request-17.0.1.1.4.dist-info → odoo_addon_stock_request-17.0.1.1.5.2.dist-info}/METADATA +28 -25
  39. odoo_addon_stock_request-17.0.1.1.5.2.dist-info/RECORD +71 -0
  40. odoo_addon_stock_request-17.0.1.1.4.dist-info/RECORD +0 -71
  41. {odoo_addon_stock_request-17.0.1.1.4.dist-info → odoo_addon_stock_request-17.0.1.1.5.2.dist-info}/WHEEL +0 -0
  42. {odoo_addon_stock_request-17.0.1.1.4.dist-info → odoo_addon_stock_request-17.0.1.1.5.2.dist-info}/top_level.txt +0 -0
@@ -7,7 +7,7 @@ Stock Request
7
7
  !! This file is generated by oca-gen-addon-readme !!
8
8
  !! changes will be overwritten. !!
9
9
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10
- !! source digest: sha256:1cb4dde73ccf1b2695a5d8e96c3b1041a9f5e1cd57bf38db63dc05870df6f8bd
10
+ !! source digest: sha256:3fa7fcaf1f584b5d831556efb068fdfcf194ad4ea198b66ecd59543c68dc4807
11
11
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
12
 
13
13
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -42,29 +42,29 @@ Configuration
42
42
 
43
43
  To configure this module:
44
44
 
45
- - Go to Stock Requests > Settings
45
+ - Go to Stock Requests > Settings
46
46
 
47
47
  Users should be assigned to the groups 'Stock Request / User' or 'Stock
48
48
  Request / Manager'.
49
49
 
50
50
  ## Group Stock Request / User
51
51
 
52
- - Can see her/his own Stock Requests, and others that she/he's been
53
- granted permission to follow.
54
- - Can create/update only her/his Stock Requests.
52
+ - Can see her/his own Stock Requests, and others that she/he's been
53
+ granted permission to follow.
54
+ - Can create/update only her/his Stock Requests.
55
55
 
56
56
  ## Group Stock Request / Manager
57
57
 
58
- - Can fully manage all Stock Requests
58
+ - Can fully manage all Stock Requests
59
59
 
60
60
  Usage
61
61
  =====
62
62
 
63
63
  ## Creation
64
64
 
65
- - Go to 'Stock Requests / Stock Requests' and create a new Request.
66
- - Indicate a product, quantity and location.
67
- - Press 'Confirm'.
65
+ - Go to 'Stock Requests / Stock Requests' and create a new Request.
66
+ - Indicate a product, quantity and location.
67
+ - Press 'Confirm'.
68
68
 
69
69
  Upon confirmation the request will be evaluated using the procurement
70
70
  rules for the selected location.
@@ -107,21 +107,24 @@ Authors
107
107
  Contributors
108
108
  ------------
109
109
 
110
- - Jordi Ballester (EFICENT) <jordi.ballester@forgeflow.com>.
111
- - Enric Tobella <etobella@creublanca.es>
112
- - Atte Isopuro <atte.isopuro@avoin.systems>
113
- - Lois Rilo <lois.rilo@forgeflow.com>
114
- - Raul Martin <raul.martin@braintec-group.com>
115
- - Serpent Consulting Services Pvt. Ltd. <support@serpentcs.com>
116
- - `Open Source Integrators <https://www.opensourceintegrators.com>`__
117
-
118
- - Maxime Chambreuil <mchambreuil@opensourceintegrators.com>
119
- - Steve Campbell <scampbell@opensourceintegrators.com>
120
-
121
- - Héctor Villarreal <hector.villarreal@forgeflow.com>
122
- - Kitti U. <kittiu@ecosoft.co.th>
123
- - Bernat Puig <bernat.puig@forgeflow.com>
124
- - Oriol Miranda <oriol.miranda@forgeflow.com>
110
+ - Jordi Ballester (EFICENT) <jordi.ballester@forgeflow.com>.
111
+ - Enric Tobella <etobella@creublanca.es>
112
+ - Atte Isopuro <atte.isopuro@avoin.systems>
113
+ - Lois Rilo <lois.rilo@forgeflow.com>
114
+ - Raul Martin <raul.martin@braintec-group.com>
115
+ - Serpent Consulting Services Pvt. Ltd. <support@serpentcs.com>
116
+ - `Open Source Integrators <https://www.opensourceintegrators.com>`__
117
+
118
+ - Maxime Chambreuil <mchambreuil@opensourceintegrators.com>
119
+ - Steve Campbell <scampbell@opensourceintegrators.com>
120
+
121
+ - Héctor Villarreal <hector.villarreal@forgeflow.com>
122
+ - Kitti U. <kittiu@ecosoft.co.th>
123
+ - Bernat Puig <bernat.puig@forgeflow.com>
124
+ - Oriol Miranda <oriol.miranda@forgeflow.com>
125
+ - `APSL-Nagarro <https://apsl.tech>`__:
126
+
127
+ - Bernat Obrador <bobrador@apsl.net>
125
128
 
126
129
  Maintainers
127
130
  -----------
@@ -4,7 +4,7 @@
4
4
  {
5
5
  "name": "Stock Request",
6
6
  "summary": "Internal request for stock",
7
- "version": "17.0.1.1.4",
7
+ "version": "17.0.1.1.5",
8
8
  "license": "LGPL-3",
9
9
  "website": "https://github.com/OCA/stock-logistics-request",
10
10
  "author": "ForgeFlow, Odoo Community Association (OCA)",
@@ -139,6 +139,11 @@ msgstr ""
139
139
  msgid "Category"
140
140
  msgstr ""
141
141
 
142
+ #. module: stock_request
143
+ #: model_terms:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
144
+ msgid "Check Stock Request Order requested by"
145
+ msgstr ""
146
+
142
147
  #. module: stock_request
143
148
  #: model:ir.model.fields,field_description:stock_request.field_res_company__stock_request_check_available_first
144
149
  #: model:ir.model.fields,field_description:stock_request.field_res_config_settings__stock_request_check_available_first
@@ -535,6 +540,12 @@ msgstr ""
535
540
  msgid "Number of messages with delivery error"
536
541
  msgstr ""
537
542
 
543
+ #. module: stock_request
544
+ #: model:ir.model.fields,field_description:stock_request.field_res_company__stock_request_check_order_requested_by
545
+ #: model:ir.model.fields,field_description:stock_request.field_res_config_settings__check_order_requested_by
546
+ msgid "Only allow edit stock request orders if requested by the same user"
547
+ msgstr ""
548
+
538
549
  #. module: stock_request
539
550
  #. odoo-python
540
551
  #: code:addons/stock_request/models/stock_request_order.py:0
@@ -549,6 +560,13 @@ msgstr ""
549
560
  msgid "Only requests on draft state can be unlinked"
550
561
  msgstr ""
551
562
 
563
+ #. module: stock_request
564
+ #: model_terms:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
565
+ msgid ""
566
+ "Only the user who submitted the request will be able to edit the stock "
567
+ "request order."
568
+ msgstr ""
569
+
552
570
  #. module: stock_request
553
571
  #: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation__open_product_qty
554
572
  msgid "Open Quantity"
@@ -144,6 +144,11 @@ msgstr "Abgebrochen"
144
144
  msgid "Category"
145
145
  msgstr ""
146
146
 
147
+ #. module: stock_request
148
+ #: model_terms:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
149
+ msgid "Check Stock Request Order requested by"
150
+ msgstr ""
151
+
147
152
  #. module: stock_request
148
153
  #: model:ir.model.fields,field_description:stock_request.field_res_company__stock_request_check_available_first
149
154
  #: model:ir.model.fields,field_description:stock_request.field_res_config_settings__stock_request_check_available_first
@@ -548,6 +553,12 @@ msgstr ""
548
553
  msgid "Number of messages with delivery error"
549
554
  msgstr "Anzahl Meldungen mit Zustellfehler"
550
555
 
556
+ #. module: stock_request
557
+ #: model:ir.model.fields,field_description:stock_request.field_res_company__stock_request_check_order_requested_by
558
+ #: model:ir.model.fields,field_description:stock_request.field_res_config_settings__check_order_requested_by
559
+ msgid "Only allow edit stock request orders if requested by the same user"
560
+ msgstr ""
561
+
551
562
  #. module: stock_request
552
563
  #. odoo-python
553
564
  #: code:addons/stock_request/models/stock_request_order.py:0
@@ -562,6 +573,13 @@ msgstr "Nur Aufträge im Entwurf dürfen gelöscht werden"
562
573
  msgid "Only requests on draft state can be unlinked"
563
574
  msgstr "Nur Anforderungen im Entwurf dürfen gelöscht werden"
564
575
 
576
+ #. module: stock_request
577
+ #: model_terms:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
578
+ msgid ""
579
+ "Only the user who submitted the request will be able to edit the stock "
580
+ "request order."
581
+ msgstr ""
582
+
565
583
  #. module: stock_request
566
584
  #: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation__open_product_qty
567
585
  msgid "Open Quantity"
@@ -140,6 +140,11 @@ msgstr ""
140
140
  msgid "Category"
141
141
  msgstr ""
142
142
 
143
+ #. module: stock_request
144
+ #: model_terms:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
145
+ msgid "Check Stock Request Order requested by"
146
+ msgstr ""
147
+
143
148
  #. module: stock_request
144
149
  #: model:ir.model.fields,field_description:stock_request.field_res_company__stock_request_check_available_first
145
150
  #: model:ir.model.fields,field_description:stock_request.field_res_config_settings__stock_request_check_available_first
@@ -536,6 +541,12 @@ msgstr ""
536
541
  msgid "Number of messages with delivery error"
537
542
  msgstr ""
538
543
 
544
+ #. module: stock_request
545
+ #: model:ir.model.fields,field_description:stock_request.field_res_company__stock_request_check_order_requested_by
546
+ #: model:ir.model.fields,field_description:stock_request.field_res_config_settings__check_order_requested_by
547
+ msgid "Only allow edit stock request orders if requested by the same user"
548
+ msgstr ""
549
+
539
550
  #. module: stock_request
540
551
  #. odoo-python
541
552
  #: code:addons/stock_request/models/stock_request_order.py:0
@@ -550,6 +561,13 @@ msgstr ""
550
561
  msgid "Only requests on draft state can be unlinked"
551
562
  msgstr ""
552
563
 
564
+ #. module: stock_request
565
+ #: model_terms:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
566
+ msgid ""
567
+ "Only the user who submitted the request will be able to edit the stock "
568
+ "request order."
569
+ msgstr ""
570
+
553
571
  #. module: stock_request
554
572
  #: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation__open_product_qty
555
573
  msgid "Open Quantity"
@@ -147,6 +147,11 @@ msgstr "Cancelado"
147
147
  msgid "Category"
148
148
  msgstr "Categoría"
149
149
 
150
+ #. module: stock_request
151
+ #: model_terms:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
152
+ msgid "Check Stock Request Order requested by"
153
+ msgstr ""
154
+
150
155
  #. module: stock_request
151
156
  #: model:ir.model.fields,field_description:stock_request.field_res_company__stock_request_check_available_first
152
157
  #: model:ir.model.fields,field_description:stock_request.field_res_config_settings__stock_request_check_available_first
@@ -549,6 +554,12 @@ msgstr "Número de mensajes que requieren una acción"
549
554
  msgid "Number of messages with delivery error"
550
555
  msgstr "Número de mensajes con error de entrega"
551
556
 
557
+ #. module: stock_request
558
+ #: model:ir.model.fields,field_description:stock_request.field_res_company__stock_request_check_order_requested_by
559
+ #: model:ir.model.fields,field_description:stock_request.field_res_config_settings__check_order_requested_by
560
+ msgid "Only allow edit stock request orders if requested by the same user"
561
+ msgstr ""
562
+
552
563
  #. module: stock_request
553
564
  #. odoo-python
554
565
  #: code:addons/stock_request/models/stock_request_order.py:0
@@ -563,6 +574,13 @@ msgstr "Solo los pedidos en estado borrado pueden ser eliminadas"
563
574
  msgid "Only requests on draft state can be unlinked"
564
575
  msgstr "Sólo se pueden eliminar peticiones en estado borrador"
565
576
 
577
+ #. module: stock_request
578
+ #: model_terms:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
579
+ msgid ""
580
+ "Only the user who submitted the request will be able to edit the stock "
581
+ "request order."
582
+ msgstr ""
583
+
566
584
  #. module: stock_request
567
585
  #: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation__open_product_qty
568
586
  msgid "Open Quantity"
@@ -896,7 +914,8 @@ msgstr "El nombre de la solicitud debe ser único"
896
914
  #: code:addons/stock_request/models/stock_request.py:0
897
915
  #, python-format
898
916
  msgid "Stock Request product quantity cannot be negative."
899
- msgstr "La cantidad de producto de la solicitud de stock no puede ser negativa."
917
+ msgstr ""
918
+ "La cantidad de producto de la solicitud de stock no puede ser negativa."
900
919
 
901
920
  #. module: stock_request
902
921
  #. odoo-python
@@ -140,6 +140,11 @@ msgstr ""
140
140
  msgid "Category"
141
141
  msgstr ""
142
142
 
143
+ #. module: stock_request
144
+ #: model_terms:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
145
+ msgid "Check Stock Request Order requested by"
146
+ msgstr ""
147
+
143
148
  #. module: stock_request
144
149
  #: model:ir.model.fields,field_description:stock_request.field_res_company__stock_request_check_available_first
145
150
  #: model:ir.model.fields,field_description:stock_request.field_res_config_settings__stock_request_check_available_first
@@ -536,6 +541,12 @@ msgstr ""
536
541
  msgid "Number of messages with delivery error"
537
542
  msgstr ""
538
543
 
544
+ #. module: stock_request
545
+ #: model:ir.model.fields,field_description:stock_request.field_res_company__stock_request_check_order_requested_by
546
+ #: model:ir.model.fields,field_description:stock_request.field_res_config_settings__check_order_requested_by
547
+ msgid "Only allow edit stock request orders if requested by the same user"
548
+ msgstr ""
549
+
539
550
  #. module: stock_request
540
551
  #. odoo-python
541
552
  #: code:addons/stock_request/models/stock_request_order.py:0
@@ -550,6 +561,13 @@ msgstr ""
550
561
  msgid "Only requests on draft state can be unlinked"
551
562
  msgstr ""
552
563
 
564
+ #. module: stock_request
565
+ #: model_terms:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
566
+ msgid ""
567
+ "Only the user who submitted the request will be able to edit the stock "
568
+ "request order."
569
+ msgstr ""
570
+
553
571
  #. module: stock_request
554
572
  #: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation__open_product_qty
555
573
  msgid "Open Quantity"
@@ -139,6 +139,11 @@ msgstr ""
139
139
  msgid "Category"
140
140
  msgstr ""
141
141
 
142
+ #. module: stock_request
143
+ #: model_terms:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
144
+ msgid "Check Stock Request Order requested by"
145
+ msgstr ""
146
+
142
147
  #. module: stock_request
143
148
  #: model:ir.model.fields,field_description:stock_request.field_res_company__stock_request_check_available_first
144
149
  #: model:ir.model.fields,field_description:stock_request.field_res_config_settings__stock_request_check_available_first
@@ -535,6 +540,12 @@ msgstr ""
535
540
  msgid "Number of messages with delivery error"
536
541
  msgstr ""
537
542
 
543
+ #. module: stock_request
544
+ #: model:ir.model.fields,field_description:stock_request.field_res_company__stock_request_check_order_requested_by
545
+ #: model:ir.model.fields,field_description:stock_request.field_res_config_settings__check_order_requested_by
546
+ msgid "Only allow edit stock request orders if requested by the same user"
547
+ msgstr ""
548
+
538
549
  #. module: stock_request
539
550
  #. odoo-python
540
551
  #: code:addons/stock_request/models/stock_request_order.py:0
@@ -549,6 +560,13 @@ msgstr ""
549
560
  msgid "Only requests on draft state can be unlinked"
550
561
  msgstr ""
551
562
 
563
+ #. module: stock_request
564
+ #: model_terms:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
565
+ msgid ""
566
+ "Only the user who submitted the request will be able to edit the stock "
567
+ "request order."
568
+ msgstr ""
569
+
552
570
  #. module: stock_request
553
571
  #: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation__open_product_qty
554
572
  msgid "Open Quantity"
@@ -139,6 +139,11 @@ msgstr ""
139
139
  msgid "Category"
140
140
  msgstr ""
141
141
 
142
+ #. module: stock_request
143
+ #: model_terms:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
144
+ msgid "Check Stock Request Order requested by"
145
+ msgstr ""
146
+
142
147
  #. module: stock_request
143
148
  #: model:ir.model.fields,field_description:stock_request.field_res_company__stock_request_check_available_first
144
149
  #: model:ir.model.fields,field_description:stock_request.field_res_config_settings__stock_request_check_available_first
@@ -535,6 +540,12 @@ msgstr ""
535
540
  msgid "Number of messages with delivery error"
536
541
  msgstr ""
537
542
 
543
+ #. module: stock_request
544
+ #: model:ir.model.fields,field_description:stock_request.field_res_company__stock_request_check_order_requested_by
545
+ #: model:ir.model.fields,field_description:stock_request.field_res_config_settings__check_order_requested_by
546
+ msgid "Only allow edit stock request orders if requested by the same user"
547
+ msgstr ""
548
+
538
549
  #. module: stock_request
539
550
  #. odoo-python
540
551
  #: code:addons/stock_request/models/stock_request_order.py:0
@@ -549,6 +560,13 @@ msgstr ""
549
560
  msgid "Only requests on draft state can be unlinked"
550
561
  msgstr ""
551
562
 
563
+ #. module: stock_request
564
+ #: model_terms:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
565
+ msgid ""
566
+ "Only the user who submitted the request will be able to edit the stock "
567
+ "request order."
568
+ msgstr ""
569
+
552
570
  #. module: stock_request
553
571
  #: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation__open_product_qty
554
572
  msgid "Open Quantity"
@@ -139,6 +139,11 @@ msgstr ""
139
139
  msgid "Category"
140
140
  msgstr ""
141
141
 
142
+ #. module: stock_request
143
+ #: model_terms:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
144
+ msgid "Check Stock Request Order requested by"
145
+ msgstr ""
146
+
142
147
  #. module: stock_request
143
148
  #: model:ir.model.fields,field_description:stock_request.field_res_company__stock_request_check_available_first
144
149
  #: model:ir.model.fields,field_description:stock_request.field_res_config_settings__stock_request_check_available_first
@@ -535,6 +540,12 @@ msgstr ""
535
540
  msgid "Number of messages with delivery error"
536
541
  msgstr ""
537
542
 
543
+ #. module: stock_request
544
+ #: model:ir.model.fields,field_description:stock_request.field_res_company__stock_request_check_order_requested_by
545
+ #: model:ir.model.fields,field_description:stock_request.field_res_config_settings__check_order_requested_by
546
+ msgid "Only allow edit stock request orders if requested by the same user"
547
+ msgstr ""
548
+
538
549
  #. module: stock_request
539
550
  #. odoo-python
540
551
  #: code:addons/stock_request/models/stock_request_order.py:0
@@ -549,6 +560,13 @@ msgstr ""
549
560
  msgid "Only requests on draft state can be unlinked"
550
561
  msgstr ""
551
562
 
563
+ #. module: stock_request
564
+ #: model_terms:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
565
+ msgid ""
566
+ "Only the user who submitted the request will be able to edit the stock "
567
+ "request order."
568
+ msgstr ""
569
+
552
570
  #. module: stock_request
553
571
  #: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation__open_product_qty
554
572
  msgid "Open Quantity"
@@ -140,6 +140,11 @@ msgstr ""
140
140
  msgid "Category"
141
141
  msgstr ""
142
142
 
143
+ #. module: stock_request
144
+ #: model_terms:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
145
+ msgid "Check Stock Request Order requested by"
146
+ msgstr ""
147
+
143
148
  #. module: stock_request
144
149
  #: model:ir.model.fields,field_description:stock_request.field_res_company__stock_request_check_available_first
145
150
  #: model:ir.model.fields,field_description:stock_request.field_res_config_settings__stock_request_check_available_first
@@ -536,6 +541,12 @@ msgstr ""
536
541
  msgid "Number of messages with delivery error"
537
542
  msgstr ""
538
543
 
544
+ #. module: stock_request
545
+ #: model:ir.model.fields,field_description:stock_request.field_res_company__stock_request_check_order_requested_by
546
+ #: model:ir.model.fields,field_description:stock_request.field_res_config_settings__check_order_requested_by
547
+ msgid "Only allow edit stock request orders if requested by the same user"
548
+ msgstr ""
549
+
539
550
  #. module: stock_request
540
551
  #. odoo-python
541
552
  #: code:addons/stock_request/models/stock_request_order.py:0
@@ -550,6 +561,13 @@ msgstr ""
550
561
  msgid "Only requests on draft state can be unlinked"
551
562
  msgstr ""
552
563
 
564
+ #. module: stock_request
565
+ #: model_terms:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
566
+ msgid ""
567
+ "Only the user who submitted the request will be able to edit the stock "
568
+ "request order."
569
+ msgstr ""
570
+
553
571
  #. module: stock_request
554
572
  #: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation__open_product_qty
555
573
  msgid "Open Quantity"
@@ -140,6 +140,11 @@ msgstr ""
140
140
  msgid "Category"
141
141
  msgstr ""
142
142
 
143
+ #. module: stock_request
144
+ #: model_terms:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
145
+ msgid "Check Stock Request Order requested by"
146
+ msgstr ""
147
+
143
148
  #. module: stock_request
144
149
  #: model:ir.model.fields,field_description:stock_request.field_res_company__stock_request_check_available_first
145
150
  #: model:ir.model.fields,field_description:stock_request.field_res_config_settings__stock_request_check_available_first
@@ -536,6 +541,12 @@ msgstr ""
536
541
  msgid "Number of messages with delivery error"
537
542
  msgstr ""
538
543
 
544
+ #. module: stock_request
545
+ #: model:ir.model.fields,field_description:stock_request.field_res_company__stock_request_check_order_requested_by
546
+ #: model:ir.model.fields,field_description:stock_request.field_res_config_settings__check_order_requested_by
547
+ msgid "Only allow edit stock request orders if requested by the same user"
548
+ msgstr ""
549
+
539
550
  #. module: stock_request
540
551
  #. odoo-python
541
552
  #: code:addons/stock_request/models/stock_request_order.py:0
@@ -550,6 +561,13 @@ msgstr ""
550
561
  msgid "Only requests on draft state can be unlinked"
551
562
  msgstr ""
552
563
 
564
+ #. module: stock_request
565
+ #: model_terms:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
566
+ msgid ""
567
+ "Only the user who submitted the request will be able to edit the stock "
568
+ "request order."
569
+ msgstr ""
570
+
553
571
  #. module: stock_request
554
572
  #: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation__open_product_qty
555
573
  msgid "Open Quantity"
@@ -139,6 +139,11 @@ msgstr ""
139
139
  msgid "Category"
140
140
  msgstr ""
141
141
 
142
+ #. module: stock_request
143
+ #: model_terms:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
144
+ msgid "Check Stock Request Order requested by"
145
+ msgstr ""
146
+
142
147
  #. module: stock_request
143
148
  #: model:ir.model.fields,field_description:stock_request.field_res_company__stock_request_check_available_first
144
149
  #: model:ir.model.fields,field_description:stock_request.field_res_config_settings__stock_request_check_available_first
@@ -535,6 +540,12 @@ msgstr ""
535
540
  msgid "Number of messages with delivery error"
536
541
  msgstr ""
537
542
 
543
+ #. module: stock_request
544
+ #: model:ir.model.fields,field_description:stock_request.field_res_company__stock_request_check_order_requested_by
545
+ #: model:ir.model.fields,field_description:stock_request.field_res_config_settings__check_order_requested_by
546
+ msgid "Only allow edit stock request orders if requested by the same user"
547
+ msgstr ""
548
+
538
549
  #. module: stock_request
539
550
  #. odoo-python
540
551
  #: code:addons/stock_request/models/stock_request_order.py:0
@@ -549,6 +560,13 @@ msgstr ""
549
560
  msgid "Only requests on draft state can be unlinked"
550
561
  msgstr ""
551
562
 
563
+ #. module: stock_request
564
+ #: model_terms:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
565
+ msgid ""
566
+ "Only the user who submitted the request will be able to edit the stock "
567
+ "request order."
568
+ msgstr ""
569
+
552
570
  #. module: stock_request
553
571
  #: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation__open_product_qty
554
572
  msgid "Open Quantity"
@@ -140,6 +140,11 @@ msgstr ""
140
140
  msgid "Category"
141
141
  msgstr ""
142
142
 
143
+ #. module: stock_request
144
+ #: model_terms:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
145
+ msgid "Check Stock Request Order requested by"
146
+ msgstr ""
147
+
143
148
  #. module: stock_request
144
149
  #: model:ir.model.fields,field_description:stock_request.field_res_company__stock_request_check_available_first
145
150
  #: model:ir.model.fields,field_description:stock_request.field_res_config_settings__stock_request_check_available_first
@@ -536,6 +541,12 @@ msgstr ""
536
541
  msgid "Number of messages with delivery error"
537
542
  msgstr ""
538
543
 
544
+ #. module: stock_request
545
+ #: model:ir.model.fields,field_description:stock_request.field_res_company__stock_request_check_order_requested_by
546
+ #: model:ir.model.fields,field_description:stock_request.field_res_config_settings__check_order_requested_by
547
+ msgid "Only allow edit stock request orders if requested by the same user"
548
+ msgstr ""
549
+
539
550
  #. module: stock_request
540
551
  #. odoo-python
541
552
  #: code:addons/stock_request/models/stock_request_order.py:0
@@ -550,6 +561,13 @@ msgstr ""
550
561
  msgid "Only requests on draft state can be unlinked"
551
562
  msgstr ""
552
563
 
564
+ #. module: stock_request
565
+ #: model_terms:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
566
+ msgid ""
567
+ "Only the user who submitted the request will be able to edit the stock "
568
+ "request order."
569
+ msgstr ""
570
+
553
571
  #. module: stock_request
554
572
  #: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation__open_product_qty
555
573
  msgid "Open Quantity"
@@ -141,6 +141,11 @@ msgstr ""
141
141
  msgid "Category"
142
142
  msgstr ""
143
143
 
144
+ #. module: stock_request
145
+ #: model_terms:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
146
+ msgid "Check Stock Request Order requested by"
147
+ msgstr ""
148
+
144
149
  #. module: stock_request
145
150
  #: model:ir.model.fields,field_description:stock_request.field_res_company__stock_request_check_available_first
146
151
  #: model:ir.model.fields,field_description:stock_request.field_res_config_settings__stock_request_check_available_first
@@ -537,6 +542,12 @@ msgstr ""
537
542
  msgid "Number of messages with delivery error"
538
543
  msgstr ""
539
544
 
545
+ #. module: stock_request
546
+ #: model:ir.model.fields,field_description:stock_request.field_res_company__stock_request_check_order_requested_by
547
+ #: model:ir.model.fields,field_description:stock_request.field_res_config_settings__check_order_requested_by
548
+ msgid "Only allow edit stock request orders if requested by the same user"
549
+ msgstr ""
550
+
540
551
  #. module: stock_request
541
552
  #. odoo-python
542
553
  #: code:addons/stock_request/models/stock_request_order.py:0
@@ -551,6 +562,13 @@ msgstr ""
551
562
  msgid "Only requests on draft state can be unlinked"
552
563
  msgstr ""
553
564
 
565
+ #. module: stock_request
566
+ #: model_terms:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
567
+ msgid ""
568
+ "Only the user who submitted the request will be able to edit the stock "
569
+ "request order."
570
+ msgstr ""
571
+
554
572
  #. module: stock_request
555
573
  #: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation__open_product_qty
556
574
  msgid "Open Quantity"
@@ -9,7 +9,7 @@ msgstr ""
9
9
  "Project-Id-Version: Odoo Server 11.0\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
11
  "POT-Creation-Date: 2018-03-02 03:44+0000\n"
12
- "PO-Revision-Date: 2024-09-28 17:06+0000\n"
12
+ "PO-Revision-Date: 2025-04-22 10:24+0000\n"
13
13
  "Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
14
14
  "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
15
15
  "Language: it\n"
@@ -17,7 +17,7 @@ msgstr ""
17
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
18
  "Content-Transfer-Encoding: \n"
19
19
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
20
- "X-Generator: Weblate 5.6.2\n"
20
+ "X-Generator: Weblate 5.10.4\n"
21
21
 
22
22
  #. module: stock_request
23
23
  #. odoo-python
@@ -146,6 +146,11 @@ msgstr "Annullato"
146
146
  msgid "Category"
147
147
  msgstr "Categoria"
148
148
 
149
+ #. module: stock_request
150
+ #: model_terms:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
151
+ msgid "Check Stock Request Order requested by"
152
+ msgstr "Controlla gli ordini richiesta di magazzino fatti da"
153
+
149
154
  #. module: stock_request
150
155
  #: model:ir.model.fields,field_description:stock_request.field_res_company__stock_request_check_available_first
151
156
  #: model:ir.model.fields,field_description:stock_request.field_res_config_settings__stock_request_check_available_first
@@ -549,6 +554,14 @@ msgstr "Numero di messaggi che richiedono un'azione"
549
554
  msgid "Number of messages with delivery error"
550
555
  msgstr "Numero di messaggi con errore di consegna"
551
556
 
557
+ #. module: stock_request
558
+ #: model:ir.model.fields,field_description:stock_request.field_res_company__stock_request_check_order_requested_by
559
+ #: model:ir.model.fields,field_description:stock_request.field_res_config_settings__check_order_requested_by
560
+ msgid "Only allow edit stock request orders if requested by the same user"
561
+ msgstr ""
562
+ "Consente solo la modifica degli ordini richiesta di magazzino se fatti dallo "
563
+ "stesso utente"
564
+
552
565
  #. module: stock_request
553
566
  #. odoo-python
554
567
  #: code:addons/stock_request/models/stock_request_order.py:0
@@ -563,6 +576,15 @@ msgstr "Solo gli ordini in stato bozza possono essere scollegati"
563
576
  msgid "Only requests on draft state can be unlinked"
564
577
  msgstr "Solo le richieste in stato bozza possono essere scollegate"
565
578
 
579
+ #. module: stock_request
580
+ #: model_terms:ir.ui.view,arch_db:stock_request.res_config_settings_view_form
581
+ msgid ""
582
+ "Only the user who submitted the request will be able to edit the stock "
583
+ "request order."
584
+ msgstr ""
585
+ "Solo lìutente che ha inviato la richiesta sarà abilitato a modificare "
586
+ "l'ordine di richiesta di magazzino."
587
+
566
588
  #. module: stock_request
567
589
  #: model:ir.model.fields,field_description:stock_request.field_stock_request_allocation__open_product_qty
568
590
  msgid "Open Quantity"