Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
2 Trả lời
3598 Lượt xem

Hello,

I tried to inherit from documents.controllerMixin because I need to rewrite the _makeFileUploadFormDataKeys function, because I need to add the some values from context, but it doesn't work for me. Does anyone know how to overwrite?
This is what I did:

const documentsControllerMixin = require("documents.controllerMixin");
const DocumentSaleMixin = Object.assign({}, documentsControllerMixin, {
_makeFileUploadFormDataKeys({ recordId }) {
const context = this.model.get(this.handle, { raw: true }).getContext();
return {
document_id: recordId,
folder_id: this.searchModel.get('selectedFolderId'),
tag_ids: this.searchModel.get('selectedTagIds'),
owner_id: context && context.default_owner_id,
partner_id: context && context.default_partner_id,
​active_model: context && context.​active_model,
active_id: context && context.active_id,
};
},
});
return DocumentSaleMixin;
Thank you


Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

Hi

Try the following code

const documentsControllerMixin = require("documents.controllerMixin");
documentsControllerMixin._makeFileUploadFormDataKeys = ({ recordId }) => {
    const context = this.model.get(this.handle, { raw: true }).getContext();
    return {
        document_id: recordId,
        folder_id: this.searchModel.get('selectedFolderId'),
        tag_ids: this.searchModel.get('selectedTagIds'),
        owner_id: context && context.default_owner_id,
        partner_id: context && context.default_partner_id,
        active_model: context && context.active_model,
        active_id: context && context.active_id,
    };
},

Hope it helps

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

I tried this method inherit _makeFileUploadFormDataKeys  and some code add  but this not working documents.controllerMixin how to inherit this file function inherit.

  


Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
2
thg 5 23
3284
0
thg 1 21
8558
1
thg 4 23
1909
0
thg 10 22
571
0
thg 4 22
2471