Attachment Preview | Attachment viewer | Many2many Binary Field Viewer | Many2many Attachments Preview | Many2many Attachments Viewer
by CFIS https://www.cfis.store
Odoo
$ 16.20
Availability |
Odoo Online
Odoo.sh
On Premise
|
Odoo Apps Dependencies |
•
Sales (sale_management)
• Discuss (mail) • Invoicing (account) |
Lines of code | 316 |
Technical Name |
many2many_binary_field_viewer |
License | See License tab |
Website | https://www.cfis.store |
Versions | 17.0 18.0 |
Availability |
Odoo Online
Odoo.sh
On Premise
|
Odoo Apps Dependencies |
•
Sales (sale_management)
• Discuss (mail) • Invoicing (account) |
Lines of code | 316 |
Technical Name |
many2many_binary_field_viewer |
License | See License tab |
Website | https://www.cfis.store |
Versions | 17.0 18.0 |
Attachment Preview | Attachment viewer | Many2many Binary Field Viewer | Many2many Attachments Preview | Many2many Attachments Viewer
The "many2many_binary_viewer" widget, added by this module, allows the user to view attachments without downloading them.
Installation
- Copy many2many_binary_field_viewer module to addons folder
- Install the module normally like other modules
Features

1. Add Widget many2many_binary_viewer
Model
from odoo import api, fields, models, _
class SaleOrder(models.Model):
_inherit = 'sale.order'
additional_attachments = fields.Many2many('ir.attachment', string="Add Files")
XML
<record id="view_order_form_attachments_preview" model="ir.ui.view">
<field name="name">sale.order.view</field>
<field name="model">sale.order</field>
<field eval="0" name="priority">
<field name="arch" type="xml"/>
<xpath expr="//page[1]" position="after">
<page string="Additional Attachments">
<field name="additional_attachments" widget="many2many_binary_viewer"/>
</page>
</xpath>
</field>
</record>
Add Binay Attachments

View Binay Attachments

Help and Support
Odoo Proprietary License v1.0 This software and associated files (the "Software") may only be used (executed, modified, executed after modifications) if you have purchased a valid license from the authors, typically via Odoo Apps, or if you have received a written agreement from the authors of the Software (see the COPYRIGHT file). You may develop Odoo modules that use the Software as a library (typically by depending on it, importing it and using its resources), but without copying any source code or material from the Software. You may distribute those modules under the license of your choice, provided that this license is compatible with the terms of the Odoo Proprietary License (For example: LGPL, MIT, or proprietary licenses similar to this one). It is forbidden to publish, distribute, sublicense, or sell copies of the Software or modified copies of the Software. The above copyright notice and this permission notice must be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Please log in to comment on this module