Browse Source

Dec 04: [FIX] Bug Fixed 'product_multi_document'

pull/309/head
Cybrosys Technologies 5 months ago
parent
commit
e1938bb3a8
  1. 2
      product_multi_document/__manifest__.py
  2. 5
      product_multi_document/doc/RELEASE_NOTES.md
  3. 3
      product_multi_document/models/product_template.py

2
product_multi_document/__manifest__.py

@ -21,7 +21,7 @@
###############################################################################
{
'name': 'Product Multi Document',
'version': '17.0.1.0.0',
'version': '17.0.1.0.1',
'category': 'Purchases,Discuss',
'summary': """Multiple documents can be attached to a product with the help
of this module.""",

5
product_multi_document/doc/RELEASE_NOTES.md

@ -4,3 +4,8 @@
#### Version 17.0.1.0.0
##### ADD
- Initial commit for Product Multi Document
#### 02.12.2024
#### Version 17.0.1.0.1
##### FIX
- Fixed an issue in the case of choosing documents from product template

3
product_multi_document/models/product_template.py

@ -28,4 +28,5 @@ class ProductTemplate(models.Model):
document_ids = fields.Many2many('documents.document',
string='Document',
help='Added product document')
help='Added product document',
domain=[('type', '=', 'binary')])

Loading…
Cancel
Save