blob: 1c797dca158d017a9229517e12af836e3ec794f8 [file] [log] [blame]
Rushabh Mehtaad45e312013-11-20 12:59:58 +05301// Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
Rushabh Mehtae67d1fb2013-08-05 14:59:54 +05302// License: GNU General Public License v3. See license.txt
3
Anand Doshi9a4a13c2013-12-31 17:38:21 +05304if(!window.erpnext) window.erpnext = {};
Rushabh Mehta173a0fd2012-12-14 16:39:27 +05305
Rushabh Mehtaa54cb242013-03-19 11:12:22 +05306// Add / update a new Lead / Communication
Rushabh Mehta173a0fd2012-12-14 16:39:27 +05307// subject, sender, description
Anand Doshifb109ad2013-09-11 18:58:20 +05308wn.send_message = function(opts, btn) {
Anand Doshi1fac2a92013-07-29 19:30:39 +05309 return wn.call({
Rushabh Mehtaa75efa72013-03-19 17:59:49 +053010 type: "POST",
Anand Doshi9a4a13c2013-12-31 17:38:21 +053011 method: "erpnext.templates.utils.send_message",
Anand Doshifb109ad2013-09-11 18:58:20 +053012 btn: btn,
Rushabh Mehtaa75efa72013-03-19 17:59:49 +053013 args: opts,
14 callback: opts.callback
Anand Doshiedbf3e12013-07-02 11:40:16 +053015 });
Anand Doshifb109ad2013-09-11 18:58:20 +053016};
17
18// for backward compatibility
Anand Doshi9a4a13c2013-12-31 17:38:21 +053019erpnext.send_message = wn.send_message;