odoo/addons/google_calendar/static/src/js/calendar_sync.js

57 lines
2.1 KiB
JavaScript

openerp.google_calendar = function(instance) {
var _t = instance.web._t,
_lt = instance.web._lt;
var QWeb = instance.web.qweb;
instance.web_calendar.FullCalendarView.include({
view_loading: function(r) {
var self = this;
this.$el.on('click', 'div.oe_cal_sync_button', function() {
console.log("Launch synchro");
self.sync_calendar(r);
});
return this._super(r);
},
sync_calendar: function(res,button) {
var self = this;
var context = instance.web.pyeval.eval('context');
//$('div.oe_cal_sync_button').hide();
$('div.oe_cal_sync_button').prop('disabled',true);
self.rpc('/google_calendar/sync_data', {
arch: res.arch,
fields: res.fields,
model:res.model,
fromurl: window.location.href,
LocalContext:context
}).done(function(o) {
console.log(o);
if (o.status == "NeedAuth") {
alert(_t("You will be redirected on gmail to authorize your OpenErp to access your calendar !"));
window.location = o.url;
}
else if (o.status == "NeedConfigFromAdmin") {
alert(_t("Admin need to configure Google Synchronization before to use it !"));
window.location = o.url;
}
else if (o.status == "NeedRefresh"){
self.$calendar.fullCalendar('refetchEvents');
}
}).always(function(o) { $('div.oe_cal_sync_button').prop('disabled',false); });
}
});
instance.web_calendar.FullCalendarView.include({
extraSideBar: function() {
this._super();
if (this.dataset.model == "crm.meeting") {
var button = QWeb.render('GoogleCalendar.buttonSynchro');
this.$el.find('.oe_calendar_filter').prepend(button);
}
}
});
};