Se rendre au contenu
Menu
Cette question a été signalée
1 Répondre
9597 Vues

Hello,

I'm trying to make a feature in Odoo that allows a user to upload multiple files from an attachment form, and when he submits it, it creates as many attachments as selected documents.

I created a widget for the 'binary' field that allows the multi selection (Adding 'multiple' argument to 'input' tag in a Qweb template), but at this point i'm struggling with attachments creation and linking them with the concerned field from JS.

my widget :

odoo.define('lettermgmt', function(require)
{
    'use strict';
    var core = require('web.core');
    var FieldBinaryFile = core.form_widget_registry.get('binary');
    var FieldBinaryMultipleFiles = FieldBinaryFile.extend({
        template : 'FieldBinaryMultipleFiles',
    });
    core.form_widget_registry.add('binary_multiple_files',FieldBinaryMultipleFiles);

});

My first guess was to override on_file_change method, loop over "e.target.files" and make a POST request for each file on '/web/binary/upload_attachment'. this creates the attachments but i couldn't figure out how to link them to my model (relational field).

I'll appreciate any help :)

Avatar
Ignorer
Meilleure réponse

Have you seen:

https://www.odoo.com/apps/modules/8.0/sync_mail_multi_attach_ext/

https://apps.openerp.com/apps/modules/10.0/max_base_multi_attachment/

Avatar
Ignorer
Auteur

Hi Ray,

For the first module (v8) it's not compatible with V9, i couldn't adapt it.

For the second one it's not what i'm looking for.

Thank you for your response :)

Publications associées Réponses Vues Activité
0
oct. 20
7561
0
mars 21
4034
0
août 20
3497
0
avr. 20
3130
0
déc. 19
10198