2012-12-14 11:09:27 +00:00
|
|
|
|
|
|
|
var erpnext = {};
|
|
|
|
|
2013-03-19 05:42:22 +00:00
|
|
|
// Add / update a new Lead / Communication
|
2012-12-14 11:09:27 +00:00
|
|
|
// subject, sender, description
|
|
|
|
erpnext.send_message = function(opts) {
|
|
|
|
if(opts.btn) {
|
|
|
|
$(opts.btn).attr("disabled", "disabled");
|
|
|
|
}
|
|
|
|
|
|
|
|
$.ajax({
|
2013-01-31 16:35:39 +00:00
|
|
|
type: "POST",
|
2012-12-14 11:09:27 +00:00
|
|
|
url: "server.py",
|
|
|
|
data: {
|
2013-01-16 06:04:26 +00:00
|
|
|
cmd: "website.helpers.contact.send_message",
|
2012-12-14 11:09:27 +00:00
|
|
|
subject: opts.subject,
|
|
|
|
sender: opts.sender,
|
2012-12-24 14:20:15 +00:00
|
|
|
status: opts.status,
|
2013-02-21 14:36:57 +00:00
|
|
|
_type: "POST",
|
2012-12-14 11:09:27 +00:00
|
|
|
message: typeof opts.message == "string"
|
|
|
|
? opts.message
|
|
|
|
: JSON.stringify(opts.message)
|
|
|
|
},
|
|
|
|
dataType: "json",
|
|
|
|
success: function(data) {
|
|
|
|
if(opts.btn) {
|
|
|
|
$(opts.btn).attr("disabled", false);
|
|
|
|
}
|
|
|
|
if(opts.callback)
|
|
|
|
opts.callback(data);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-03-19 05:42:22 +00:00
|
|
|
// Setup the user tools
|
|
|
|
//
|
|
|
|
$(document).ready(function() {
|
|
|
|
// update login
|
|
|
|
var full_name = getCookie("full_name");
|
2013-03-19 09:05:20 +00:00
|
|
|
if(full_name && full_name.substr(0,1)=='"') {
|
2013-03-19 05:42:22 +00:00
|
|
|
full_name = full_name.substr(1, full_name.length-2);
|
|
|
|
}
|
|
|
|
if(full_name) {
|
|
|
|
$("#user-tools").html(repl('<a href="account" title="My Account">%(full_name)s</a> | \
|
|
|
|
<a href="cart" title="Shopping Cart"><i class="icon-shopping-cart"></i> (%(count)s)</a> | \
|
|
|
|
<a href="server.py?cmd=web_logout" title="Sign Out"><i class="icon-signout"></i></a>', {
|
|
|
|
full_name: full_name,
|
|
|
|
count: getCookie("cart_count") || "0"
|
|
|
|
}));
|
|
|
|
$("#user-tools a").tooltip({"placement":"bottom"});
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
// Utility functions
|
|
|
|
|
2012-12-14 11:09:27 +00:00
|
|
|
function valid_email(id) {
|
|
|
|
if(id.toLowerCase().search("[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?")==-1)
|
|
|
|
return 0; else return 1; }
|
|
|
|
|
2013-01-16 06:04:26 +00:00
|
|
|
var validate_email = valid_email;
|
|
|
|
|
2012-12-14 11:09:27 +00:00
|
|
|
function get_url_arg(name) {
|
|
|
|
name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
|
|
|
|
var regexS = "[\\?&]"+name+"=([^&#]*)";
|
|
|
|
var regex = new RegExp( regexS );
|
|
|
|
var results = regex.exec( window.location.href );
|
|
|
|
if(results == null)
|
|
|
|
return "";
|
|
|
|
else
|
|
|
|
return decodeURIComponent(results[1]);
|
2012-12-17 07:22:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function repl(s, dict) {
|
|
|
|
if(s==null)return '';
|
|
|
|
for(key in dict) {
|
|
|
|
s = s.split("%("+key+")s").join(dict[key]);
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
2013-03-19 05:42:22 +00:00
|
|
|
|
|
|
|
function getCookie(name) {
|
|
|
|
return getCookies()[name];
|
|
|
|
}
|
|
|
|
|
|
|
|
function getCookies() {
|
|
|
|
var c = document.cookie, v = 0, cookies = {};
|
|
|
|
if (document.cookie.match(/^\s*\$Version=(?:"1"|1);\s*(.*)/)) {
|
|
|
|
c = RegExp.$1;
|
|
|
|
v = 1;
|
|
|
|
}
|
|
|
|
if (v === 0) {
|
|
|
|
c.split(/[,;]/).map(function(cookie) {
|
|
|
|
var parts = cookie.split(/=/, 2),
|
|
|
|
name = decodeURIComponent(parts[0].trimLeft()),
|
|
|
|
value = parts.length > 1 ? decodeURIComponent(parts[1].trimRight()) : null;
|
|
|
|
cookies[name] = value;
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
c.match(/(?:^|\s+)([!#$%&'*+\-.0-9A-Z^`a-z|~]+)=([!#$%&'*+\-.0-9A-Z^`a-z|~]*|"(?:[\x20-\x7E\x80\xFF]|\\[\x00-\x7F])*")(?=\s*[,;]|$)/g).map(function($0, $1) {
|
|
|
|
var name = $0,
|
|
|
|
value = $1.charAt(0) === '"'
|
|
|
|
? $1.substr(1, -1).replace(/\\(.)/g, "$1")
|
|
|
|
: $1;
|
|
|
|
cookies[name] = value;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return cookies;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof String.prototype.trimLeft !== "function") {
|
|
|
|
String.prototype.trimLeft = function() {
|
|
|
|
return this.replace(/^\s+/, "");
|
|
|
|
};
|
|
|
|
}
|
|
|
|
if (typeof String.prototype.trimRight !== "function") {
|
|
|
|
String.prototype.trimRight = function() {
|
|
|
|
return this.replace(/\s+$/, "");
|
|
|
|
};
|
|
|
|
}
|
|
|
|
if (typeof Array.prototype.map !== "function") {
|
|
|
|
Array.prototype.map = function(callback, thisArg) {
|
|
|
|
for (var i=0, n=this.length, a=[]; i<n; i++) {
|
|
|
|
if (i in this) a[i] = callback.call(thisArg, this[i]);
|
|
|
|
}
|
|
|
|
return a;
|
|
|
|
};
|
|
|
|
}
|