You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.9 KiB
59 lines
1.9 KiB
/** @odoo-module */
|
|
|
|
import publicWidget from '@web/legacy/js/public/public_widget';
|
|
import {session} from "@web/session";
|
|
import { rpc } from "@web/core/network/rpc";
|
|
|
|
var Template = publicWidget.Widget.extend({
|
|
selector: '.gdpr_portal_template',
|
|
events: {
|
|
'click ._actionDelete': '_actionModalCloseAndOpen',
|
|
'click ._actionDownload': '_onClickActionDownload',
|
|
'click ._actionReqDownload': '_onClickActionReqDownload',
|
|
'click .gdpr-close-button': '_actionModalCloseAndOpen',
|
|
'click .gdpr-modal-confirm': '_onClickActionDelete',
|
|
},
|
|
init() {
|
|
this._super(...arguments);
|
|
this.orm = this.bindService("orm");
|
|
},
|
|
/**
|
|
* Action to transfer data to create record type of delete
|
|
*/
|
|
_onClickActionDelete: function(ev) {
|
|
rpc('/gdpr_management/confirm',{
|
|
user_id: session.user_id,
|
|
template_id: this.template_id,
|
|
type: 'delete'
|
|
})
|
|
},
|
|
/**
|
|
* For opening and closing the modal
|
|
*/
|
|
_actionModalCloseAndOpen: function(ev) {
|
|
this.template_id = Number(ev.currentTarget.getAttribute("id"))
|
|
this.el.querySelector(".gdpr-modal").classList.toggle("gdpr-show-modal")
|
|
},
|
|
/**
|
|
* Action to transfer data to create record type of download
|
|
*/
|
|
_onClickActionDownload: function(ev) {
|
|
rpc('/gdpr_management/confirm',{
|
|
user_id: session.user_id,
|
|
template_id: Number(ev.currentTarget.getAttribute("id")),
|
|
type: 'download'
|
|
})
|
|
},
|
|
/**
|
|
* Action to open window of the content to download
|
|
*/
|
|
_onClickActionReqDownload: function(ev) {
|
|
var req_id = Number(ev.currentTarget.getAttribute("id"))
|
|
this.orm.call('gdpr.request', 'action_download_pdf',[,req_id],{}
|
|
).then(function(result) {
|
|
window.open(result['url'])
|
|
});
|
|
}
|
|
})
|
|
publicWidget.registry.gdpr_portal_template = Template;
|
|
return Template;
|
|
|