$(function () {
InitGridData();
InitWorkOrderFollowerGridData();
InitAllFollowerGridData();
getWorkOrderCollapsed();
$('#dialog_customercontact').dialog(function () {
showmaskbg(false);
});
$('#dialog_estimate').dialog(function () {
showmaskbg(false);
});
$('#dialog_invoice').dialog(function () {
showmaskbg(false);
});
$('#dialog_panddattachments').dialog(function () {
showmaskbg(false);
});
$('#addfollowerpopupdialog').dialog(function () {
showmaskbg(false);
});
$('#selfollower_search').bind('input propertychange', function () {
searchFollower(false);
});
$('#selfollower_search').keydown(function () {
searchFollower(false);
});
});
/*************************Customer********************************/
var customerid;
var grid_dtcustomer;
function InitGridCustomers() {
grid_dtcustomer = new GridView('#customerlist');
grid_dtcustomer.lang = {
all: GetTextByKey("P_GRID_ALL", "(All)"),
ok: GetTextByKey("P_GRID_OK", "OK"),
reset: GetTextByKey("P_GRID_RESET", "Reset")
};
var list_columns = [
{ name: 'Code', caption: GetTextByKey("P_CR_CODE", "Code"), valueIndex: 'Code', css: { 'width': 120, 'text-align': 'left' } },
{ name: 'Name', caption: GetTextByKey("P_CR_COMPANYNAME", "Company Name"), valueIndex: 'Name', css: { 'width': 200, 'text-align': 'left' } },
{ name: 'Address', caption: GetTextByKey("P_CR_ADDRESS", "Address"), valueIndex: 'Address', css: { 'width': 150, 'text-align': 'left' } },
{ name: 'Notes', caption: GetTextByKey("P_CR_NOTES", "Notes"), valueIndex: 'Notes', css: { 'width': 200, 'text-align': 'left' } }
];
var columns = [];
for (var hd in list_columns) {
var col = {};
col.name = list_columns[hd].name;
col.caption = list_columns[hd].caption;
col.visible = true;
col.sortable = true;
col.width = list_columns[hd].css.width;
col.align = list_columns[hd].css["text-align"]
col.key = list_columns[hd].valueIndex;
columns.push(col);
}
grid_dtcustomer.canMultiSelect = true;
grid_dtcustomer.columns = columns;
grid_dtcustomer.init();
grid_dtcustomer.rowdblclick = function (rowindex) {
var rowdata = grid_dtcustomer.source[rowindex];
if (rowdata) {
//setCustomerData(rowdata.Values);
OnSetSelectCustomer();
}
};
//grid_dtcustomer.selectedrowchanged = function (rowindex) {
// var rowdata = grid_dtcustomer.source[rowindex];
// if (rowdata) {
// }
//}
}
function showCustomerList(data) {
var rows = [];
for (var i = 0; i < data.length; i++) {
var r = data[i];
var fr = { Values: r };
rows.push(fr);
}
grid_dtcustomer.setData(rows);
}
function onSelectCustomer() {
grid_dtcustomer.setData([]);
$('#txt_customer_key').val('');
$('#txt_customer_key').attr('disabled', true);
$('#chkshowallcust').attr('checked', false);
$('#dialog_customer .dialog-title span.title').text(GetTextByKey("P_WO_SELECTCUSTOMER", 'Select Customer'));
$('#mask_bg').show();
$('#dialog_customer')
.attr('act', 'edit')
.css({
'top': (document.documentElement.clientHeight - $('#dialog_customer').height()) / 3,
'left': (document.documentElement.clientWidth - $('#dialog_customer').width()) / 2
})
.showDialog();
GetCustomerList();
}
var allcustomers;
function GetCustomerList() {
grid_dtcustomer.setData([]);
var chk = $('#chkshowallcust').prop('checked');
if (chk) {
$('#txt_customer_key').attr('disabled', false);
getAllCustomer();
} else {
$('#txt_customer_key').attr('disabled', true);
$('#txt_customer_key').val('');
getAssetCustomer();
}
}
function getAllCustomer() {
if (allcustomers)
getMatchCustomers();
else {
customerquery('GetPartners', '', function (data) {
if (typeof (data) === "string") {
showAlert(data, GetTextByKey('P_CUSTOMERRECORD', "Customer Record"));
showmaskbg(false);
return;
}
allcustomers = data;
getMatchCustomers();
}, function (err) {
});
}
}
function getAssetCustomer() {
if (!machineid)
return;
customerquery('GetAssignedPartnersByMachine', machineid, function (data) {
if (typeof (data) === "string") {
showAlert(data, GetTextByKey('P_CUSTOMERRECORD', "Customer Record"));
showmaskbg(false);
return;
}
showCustomerList(data);
}, function (err) {
});
}
function getMatchCustomers() {
var filter = $('#txt_customer_key').val().toLowerCase();
var _availablecustomers = [];
if (allcustomers) {
for (var i = 0; i < allcustomers.length; i++) {
var m = allcustomers[i];
if (filter == "" || m.Code.toLowerCase().indexOf(filter) >= 0 || m.Name.toLowerCase().indexOf(filter) >= 0) {
_availablecustomers.push(m);
}
}
}
showCustomerList(_availablecustomers);
}
function onCustomerKeyPress(e) {
if (e.keyCode === 13) {
GetCustomerList();
}
};
function OnSetSelectCustomer() {
var index = grid_dtcustomer.selectedIndex;
if (index < 0) {
showAlert(GetTextByKey("P_WO_PLEASESELECTACUSTOMER", "Please select a customer."), GetTextByKey("P_WO_SELECTCUSTOMER", "Select Customer")); return;
}
var cust = grid_dtcustomer.source[index].Values;
setCustomerData(cust);
}
function setCustomerData(cust) {
customerid = cust.Id;
$('#dialog_salesperson').dropdownVal(cust.SalespersonIID);
$('#dialog_custcustomername').text(cust.Name);
$('#dialog_custcustomercode').text(cust.Code);
if (typeof customer !== 'undefined') {
customer.companyName = cust.Name;
customer.companyCode = cust.Code;
customer.setData('companyCode', cust.Code);
}
getCustomerContacts(cust.Id);
getCustomerFollowers(cust.Id);
$('#dialog_customer').hideDialog();
showmaskbg(false);
}
function OnAddCustomer() {
execIframeFunc("init", [null, machineid], "iframeuser");
$('#contatcmask').show();
$('#dialog_addcustomer')
.showDialogRight();
}
function CloseCustomerDialog(type) {
$('#dialog_addcustomer').hideDialog();
allcustomers = null;
GetCustomerList();
$('#contatcmask').hide();
}
/************************* Customer********************************/
//*************************Contact********************************//
var contact;
var grid_dtcontact;
function InitGridData() {
grid_dtcontact = new GridView('#cusomercontactlist');
grid_dtcontact.lang = {
all: GetTextByKey("P_GRID_ALL", "(All)"),
ok: GetTextByKey("P_GRID_OK", "OK"),
reset: GetTextByKey("P_GRID_RESET", "Reset")
};
var list_columns = [
{ name: 'Name', caption: GetTextByKey("P_CR_CONTACTNAME", "Contact Name"), valueIndex: 'Name', css: { 'width': 150, 'text-align': 'left' } },
{ name: 'ContactEmail', caption: GetTextByKey("P_CR_CONTACTEMAIL", "Contact Email"), valueIndex: 'Email', css: { 'width': 130, 'text-align': 'left' } },
{ name: 'ContactMobilePhone', caption: GetTextByKey("P_CR_CONTACTMOBILE", "Contact Mobile"), valueIndex: 'MobilePhoneDisplayText', css: { 'width': 120, 'text-align': 'left' } },
{ name: 'ContactPreferenceStr', caption: GetTextByKey("P_CR_CONTACTPREFERENCES", "Contact Preferences"), valueIndex: 'ContactPreferenceStr', css: { 'width': 100, 'text-align': 'left' } },
{ name: 'OptOut', caption: GetTextByKey("P_CR_OPTOUT", "Opt Out"), valueIndex: 'OptOut', type: 3, css: { 'width': 60, 'text-align': 'center' } },
{ name: 'Notes', caption: GetTextByKey("P_CR_NOTES", "Notes"), valueIndex: 'Notes', css: { 'width': 150, 'text-align': 'left' } },
{ name: 'Edit', caption: "", css: { 'width': 30, 'text-align': 'center' } },
{ name: 'Delete', caption: "", css: { 'width': 30, 'text-align': 'center' } }
];
var columns = [];
// head
for (var hd in list_columns) {
var col = {};
col.name = list_columns[hd].name;
col.caption = list_columns[hd].caption;
col.visible = true;
col.sortable = true;
col.width = list_columns[hd].css.width;
col.align = list_columns[hd].css["text-align"]
col.key = list_columns[hd].valueIndex;
col.allowFilter = list_columns[hd].allowFilter;
if (list_columns[hd].type) {
col.type = list_columns[hd].type;
}
if (CRReadOnly && (col.name === "Edit" || col.name === "Delete")) {
continue;
}
if (col.name === "Edit") {
col.isurl = true;
col.text = "\uf044";
col.sortable = false;
col.events = {
onclick: function () {
onEditContact();
}
};
col.styleFilter = function (e) {
if (!IsAdmin && workorderdata && workorderdata.Completed) {
return {
display: 'none'
};
}
}
col.classFilter = function (e) {
return "icon-col";
}
col.attrs = { 'title': GetTextByKey("P_UM_EDIT", 'Edit') };
}
else if (col.name === "Delete") {
col.isurl = true;
col.text = "\uf00d";
col.sortable = false;
col.events = {
onclick: function () {
onDeleteContact(this);
}
};
col.styleFilter = function (e) {
if (!IsAdmin && workorderdata && workorderdata.Completed) {
return {
display: 'none'
};
}
}
col.classFilter = function (e) {
return "icon-col";
};
col.attrs = { 'title': GetTextByKey("P_UM_DELETE", 'Delete') };
}
else if (col.name === "OptOut") {
col.enabled = !CRReadOnly;
col.events = {
onchange: function () {
if (typeof customer !== 'undefined') {
customer.contacts = customercontacts;
}
SaveWorkorderContact();
}
};
}
columns.push(col);
}
grid_dtcontact.canMultiSelect = false;
grid_dtcontact.columns = columns;
grid_dtcontact.init();
if (!CRReadOnly)
grid_dtcontact.rowdblclick = onEditContact;
}
function getCustomerContacts(custid) {
worequest('GetCustomerContacts', custid, function (data) {
if (typeof (data) === "string") {
showAlert(data, GetTextByKey('P_CUSTOMERRECORD', "Customer Record"));
showcontatcmask(false);
return;
}
if (customercontacts) {
for (var i = 0; i < customercontacts.length; i++) {
customercontacts[i].Id = -1;
customercontacts[i].SaveToCustomer = 0;
}
}
for (var i = 0; i < data.length; i++) {
var r = data[i];
var item = {
'Id': r.Id,
'Name': r.Name,
'ContactPreference': r.ContactPreference,
'ContactPreferenceStr': r.ContactPreferenceStr,
'Email': r.Email,
'MobilePhone': r.MobilePhone,
//'Address': r.Address,
'Notes': r.Notes,
'OptOut': r.OptOut,
'OptOut_BC': r.OptOut
};
var contactexists = false;
for (var j = 0; j < grid_dtcontact.source.length; j++) {
var ct = grid_dtcontact.source[j].Values;
if (ct.Name === item.Name && ct.MobilePhone === item.MobilePhone) {
contactexists = true;
break;
}
}
if (contactexists) {
if (customercontacts) {
for (var j = 0; j < customercontacts.length; j++) {
var ct = customercontacts[j];
if (ct.Name === item.Name && ct.MobilePhone === item.MobilePhone) {
ct.Id = item.Id;
break;
}
}
}
}
else
customercontacts.push(item);
}
SaveWorkorderContact();
showCustomerContacts(customercontacts);
}, function (err) {
});
}
function showCustomerContacts(data) {
customer?.setData('contacts', data);
var rows = [];
for (var i = 0; i < data.length; i++) {
var r = data[i];
var fr = { Values: r };
rows.push(fr);
}
grid_dtcontact.setData(rows);
setPhoneNumber();
setPhoneNumber_statuschange();
}
function onAddContact() {
contact = null;
for (var i = 0; i < grid_dtcontact.source.length; i++) {
grid_dtcontact.source[i].Values.IsCurrent = false;
}
$('#btn_contactrecord').val(GetTextByKey('P_WO_ADDCONTACTRECORD', 'Add Contact Record'));
if (AllowCustomer && customerid && customerid != -1)
$('#btn_contactrecord').show();
else
$('#btn_contactrecord').hide();
$('#dialog_contactname').val("");
$('#dialog_contactpreference').dropdownVal('0');
$('#dialog_emailaddress').val("");
$('#dialog_mobile').val("");
//$('#dialog_address').val("");
$('#dialog_optout').prop('checked', false);
$('#dialog_contactnotes').val("");
$('#dialog_customercontact .dialog-title span.title').text(GetTextByKey("P_CR_ADDCONTACT", 'Add Contact'));
$('#mask_bg').show();
$('#dialog_customercontact')
.css({
'top': (document.documentElement.clientHeight - $('#dialog_customercontact').height()) / 3,
'left': (document.documentElement.clientWidth - $('#dialog_customercontact').width()) / 2
}).showDialogfixed();
}
function onEditContact() {
var index = grid_dtcontact.selectedIndex;
if (index < 0) return;
$('#btn_contactrecord').val(GetTextByKey('P_WO_EDITCONTACTRECORD', 'Edit Contact Record'));
if (AllowCustomer && customerid && customerid != -1)
$('#btn_contactrecord').show();
else
$('#btn_contactrecord').hide();
for (var i = 0; i < grid_dtcontact.source.length; i++) {
if (index == i) {
grid_dtcontact.source[index].Values.IsCurrent = true;
contact = grid_dtcontact.source[index].Values;
} else
grid_dtcontact.source[i].Values.IsCurrent = false;
}
$('#dialog_contactname').val(contact.Name);
$('#dialog_contactpreference').dropdownVal(contact.ContactPreference);
$('#dialog_emailaddress').val(contact.Email);
$('#dialog_mobile').val(contact.MobilePhone);
//$('#dialog_address').val(contact.Address);
$('#dialog_optout').prop('checked', contact.OptOut);
$('#dialog_contactnotes').val(contact.Notes);
$('#dialog_customercontact .dialog-title span.title').text(GetTextByKey("P_CR_EDITCONTACT", 'Edit Contact'));
$('#mask_bg').show();
$('#dialog_customercontact')
.css({
'top': (document.documentElement.clientHeight - $('#dialog_customercontact').height()) / 3,
'left': (document.documentElement.clientWidth - $('#dialog_customercontact').width()) / 2
}).showDialogfixed();
}
function onSaveContact(type) {//0.work order only;1.contact record
var item = {
'Name': $.trim($('#dialog_contactname').val()),
'ContactPreference': $.trim($('#dialog_contactpreference').dropdownVal()),
'ContactPreferenceStr': $('#dialog_contactpreference').data('dropdown').selected.text,
'Email': $.trim($('#dialog_emailaddress').val()),
'MobilePhone': $.trim($('#dialog_mobile').val()),
//'Address': $('#dialog_address').val(),
'OptOut': $('#dialog_optout').prop('checked'),
'Notes': $.trim($('#dialog_contactnotes').val()),
'SaveToCustomer': type
};
var alerttitle;
if (contact) {
alerttitle = GetTextByKey("P_CR_EDITCONTACT", "Edit Contact");
} else {
alerttitle = GetTextByKey("P_CR_ADDCONTACT", "Add Contact");
}
if (!item.Name || item.Name.length == 0) {
showAlert(GetTextByKey("P_CR_CONTACTNAMECANNOTBEEMPTY", 'Contact Name cannot be empty.'), alerttitle, undefined, function () { $('#dialog_contactname').focus(); });
return;
}
if ((!item.Email || item.Email.length == 0) && (!item.MobilePhone || item.MobilePhone.length == 0)) {
showAlert(GetTextByKey("P_CR_EMAILANDMOBILEPHONECANNOTBOTHBEEMPTY", 'Email and Mobile Phone cannot both be empty. '), alerttitle);
return;
}
if (item.Email !== "" && !isEmail(item.Email)) {
showAlert(GetTextByKey("P_CR_EMAILISNOTAVALIDEMAILADDRESS", 'The email address is invalid.'), alerttitle);
return;
}
var contactexists = false;
for (var i = 0; i < grid_dtcontact.source.length; i++) {
var ct = grid_dtcontact.source[i].Values;
if (!ct.IsCurrent && ct.Name === item.Name && ct.MobilePhone === item.MobilePhone) {
contactexists = true;
break;
}
}
if (contactexists) {
showAlert(GetTextByKey("P_WO_CONTACTNAMEANDMOBILEUNIQUECOMBINATION", 'Contact name and contact mobile must be a unique combination.'), alerttitle);
return;
}
if (contact) {
contact.Name = $.trim($('#dialog_contactname').val());
contact.ContactPreference = $.trim($('#dialog_contactpreference').dropdownVal());
contact.Email = $.trim($('#dialog_emailaddress').val());
contact.MobilePhone = $.trim($('#dialog_mobile').val());
//contact.Address = $('#dialog_address').val();
contact.OptOut = $('#dialog_optout').prop('checked');
contact.Notes = $.trim($('#dialog_contactnotes').val());
contact.SaveToCustomer = type;
if (parseInt(contact.ContactPreference) == 0)
contact.ContactPreferenceStr = GetTextByKey("P_CR_TEXT", "Text");
else if (parseInt(contact.ContactPreference) == 1)
contact.ContactPreferenceStr = GetTextByKey("P_CR_EMAIL", "Email");
else if (parseInt(contact.ContactPreference) == 2)
contact.ContactPreferenceStr = GetTextByKey("P_CR_PHONE", "Phone");
}
else {
item.Id = -1;
customercontacts.push(item);
}
showmaskbg(false);
$('#dialog_customercontact').hideDialog();
SaveWorkorderContact(null, function (data) {
if (typeof data === "string") {
showAlert(data, GetTextByKey("P_WO_ERROR", 'Error'));
return;
}
showCustomerContacts(customercontacts = data);
});
//showCustomerContacts(customercontacts);
}
function onDeleteContact(c) {
if (!c) {
return;
}
showConfirm(GetTextByKey("P_CR_DOYOUWANTTODELETETHISCONTACT", 'Do you want to delete this contact?'), GetTextByKey("P_CR_DELETECONTACT", 'Delete Contact'), function () {
var index = customercontacts.indexOf(c);
customercontacts.splice(index, 1);
SaveWorkorderContact();
showCustomerContacts(customercontacts);
});
}
function SaveWorkorderContact(data, next) {
if (!workorderid || workorderid == "")
return;
var custid = customerid;
if (!custid)
custid = -1;
var param = JSON.stringify([workorderid, custid, JSON.stringify(data ?? customercontacts)]);
param = htmlencode(param);
worequest("SaveWorkOrderContact", param, function (data) {
if (typeof next === 'function') {
next(data);
return;
}
if (typeof data === "string") {
showAlert(data, GetTextByKey("P_WO_ERROR", 'Error'));
return;
}
}, function (err) {
//showmaskbg(false);
});
}
/*************************End Contact********************************/
//*************************Follwer********************************//
var grid_dtfollower;
function InitWorkOrderFollowerGridData() {
grid_dtfollower = new GridView('#followerlist');
grid_dtfollower.lang = {
all: GetTextByKey("P_GRID_ALL", "(All)"),
ok: GetTextByKey("P_GRID_OK", "OK"),
reset: GetTextByKey("P_GRID_RESET", "Reset")
};
var list_columns = [
{ name: 'Name', caption: GetTextByKey("P_CR_CONTACTNAME", "Contact Name"), valueIndex: 'Name', css: { 'width': 150, 'text-align': 'left' } },
{ name: 'ContactEmail', caption: GetTextByKey("P_CR_CONTACTEMAIL", "Contact Email"), valueIndex: 'Email', css: { 'width': 130, 'text-align': 'left' } },
{ name: 'ContactMobilePhone', caption: GetTextByKey("P_CR_CONTACTMOBILE", "Contact Mobile"), valueIndex: 'MobilePhoneDisplayText', css: { 'width': 120, 'text-align': 'left' } },
{ name: 'ContactPreferenceStr', caption: GetTextByKey("P_CR_CONTACTPREFERENCES", "Contact Preferences"), valueIndex: 'ContactPreferenceStr', css: { 'width': 100, 'text-align': 'left' } },
{ name: 'Delete', caption: "", css: { 'width': 30, 'text-align': 'center' } }
];
var columns = [];
// head
for (var hd in list_columns) {
var col = {};
col.name = list_columns[hd].name;
col.caption = list_columns[hd].caption;
col.visible = true;
col.sortable = true;
col.width = list_columns[hd].css.width;
col.align = list_columns[hd].css["text-align"]
col.key = list_columns[hd].valueIndex;
col.allowFilter = list_columns[hd].allowFilter;
if (list_columns[hd].type) {
col.type = list_columns[hd].type;
}
if (CRReadOnly && (col.name === "Edit" || col.name === "Delete")) {
continue;
}
if (col.name == "ContactPreferenceStr") {
col.filter = function (item) {
var text = "";
if (item.SendEmail)
text = "Email";
if (item.SendText) {
if (text == "")
text = "Text";
else
text += ", Text";
}
return text;
}
}
else if (col.name === "Delete") {
col.isurl = true;
col.text = "\uf00d";
col.sortable = false;
col.events = {
onclick: function () {
onDeleteFollower(this);
}
};
col.styleFilter = function (e) {
if (!IsAdmin && workorderdata && workorderdata.Completed) {
return {
display: 'none'
};
}
}
col.classFilter = function (e) {
return "icon-col";
};
col.attrs = { 'title': GetTextByKey("P_UM_DELETE", 'Delete') };
}
columns.push(col);
}
grid_dtfollower.canMultiSelect = false;
grid_dtfollower.columns = columns;
grid_dtfollower.init();
}
function getWorkOrderContacts(woid) {
worequest('GetWorkOrderContacts', woid, function (data) {
if (typeof (data) === "string") {
showAlert(data, GetTextByKey('P_CUSTOMERRECORD', "Customer Record"));
showmaskbg(false);
return;
}
customercontacts = data || [];
showCustomerContacts(customercontacts);
}, function (err) {
});
}
function showWorkOrderFollowers(data) {
if (typeof customer !== 'undefined') {
customer.followers = data;
}
var rows = [];
for (var i = 0; i < data.length; i++) {
var r = data[i];
var fr = { Values: r };
rows.push(fr);
}
grid_dtfollower.setData(rows);
}
function getWorkOrderFollowers(woid) {
worequest('GetWorkOrderFollowers', woid, function (data) {
if (typeof (data) === "string") {
showAlert(data, GetTextByKey('P_CUSTOMERRECORD', "Customer Record"));
showmaskbg(false);
return;
}
followers = data;
showWorkOrderFollowers(followers);
}, function (err) {
});
}
function getCustomerFollowers(custid) {
worequest('GetCustomerFollowers', custid, function (data) {
if (typeof (data) === "string") {
showAlert(data, GetTextByKey('P_CUSTOMERRECORD', "Customer Record"));
showcontatcmask(false);
return;
}
for (var i = 0; i < data.length; i++) {
var fl = data[i];
var item = {};
item.Id = -1;
item.UserIID = fl.UserIID;
item.Name = fl.Name;
item.Email = fl.Email;
item.MobilePhone = fl.MobilePhone;
item.SendEmail = fl.SendEmail;
item.SendText = fl.SendText;
var followerexists = false;
for (var j = 0; j < grid_dtfollower.source.length; j++) {
var ct = grid_dtfollower.source[j].Values;
if (ct.UserIID === item.UserIID) {
followerexists = true;
break;
}
}
if (followerexists) {
if (followers) {
for (var j = 0; j < followers.length; j++) {
var ct = followers[j];
if (ct.UserIID === item.UserIID) {
ct.Id = item.Id;
break;
}
}
}
}
else
followers.push(item);
}
SaveWorkOrderFollower();
showWorkOrderFollowers(followers);
}, function (err) {
});
}
var isloadfollower = false;
var allfollowers = [];
function onAddFollower() {
$('#selfollower_search').val('').attr('placeholder', GetTextByKey('P_IPT_SEARCH', 'Search'));
if (!isloadfollower)
getAllFollowers();
else
searchFollower(true);
$('#addfollowerpopupdialog .dialog-title span.title').text(GetTextByKey("P_CR_XXXXXX", 'Add Followers'));
$('#mask_bg').show();
$('#addfollowerpopupdialog')
.css({
'top': (document.documentElement.clientHeight - $('#addfollowerpopupdialog').height()) / 3,
'left': (document.documentElement.clientWidth - $('#addfollowerpopupdialog').width()) / 2
}).showDialogfixed();
setTimeout(function () {
grid_allfollower && grid_allfollower.resize();
});
}
var grid_allfollower;
function InitAllFollowerGridData() {
grid_allfollower = new GridView('#allfollowerlist');
grid_allfollower.lang = {
all: GetTextByKey("P_GRID_ALL", "(All)"),
ok: GetTextByKey("P_GRID_OK", "OK"),
reset: GetTextByKey("P_GRID_RESET", "Reset")
};
var list_columns = [
{ name: 'DisplayName', caption: GetTextByKey("P_WO_CONTACTNAME", "Contact Name"), valueIndex: 'DisplayName', css: { 'width': 240, 'text-align': 'left' } },
{ name: 'ContactTypeName', caption: GetTextByKey("P_WO_CONTACTTYPE", "Contact Type"), valueIndex: 'ContactTypeName', css: { 'width': 120, 'text-align': 'left' } },
{ name: 'Text', caption: "Text", valueIndex: 'Text', type: 3, css: { 'width': 60, 'text-align': 'center' } },
{ name: 'Email', caption: GetTextByKey("P_WO_EMAIL", "Email"), valueIndex: 'Email', type: 3, css: { 'width': 70, 'text-align': 'center' } }
];
var columns = [];
// head
for (var hd in list_columns) {
var col = {};
col.name = list_columns[hd].name;
col.caption = list_columns[hd].caption;
col.visible = true;
col.sortable = true;
col.width = list_columns[hd].css.width;
col.align = list_columns[hd].css["text-align"]
col.key = list_columns[hd].valueIndex;
if (list_columns[hd].type) {
col.type = list_columns[hd].type;
}
columns.push(col);
if (col.name === "Text") {
col.enabled = function (item) {
return item.Mobile != null && $.trim(item.Mobile).length > 0;
};
}
if (col.name === "Email") {
col.enabled = function (item) {
return item.ID !== '';
};
}
}
grid_allfollower.canMultiSelect = false;
grid_allfollower.columns = columns;
grid_allfollower.init();
}
function getAllFollowers(next) {
worequest('GetAllFollowers', '', function (data) {
if (typeof next === 'function') {
next(data);
} else {
if (typeof (data) === "string") {
showAlert(data, GetTextByKey('P_CUSTOMERRECORD', "Customer Record"));
showmaskbg(false);
return;
}
isloadfollower = true;
allfollowers = data;
showAllFollower(data);
}
}, function (err) {
});
}
function showAllFollower(data) {
if (typeof customer !== 'undefined') {
customer.setData('allfollowers', data);
}
var rows = [];
for (var i = 0; i < data.length; i++) {
var r = data[i];
for (var j in r) {
var a = r[j];
}
if (!r.Text)
r.Text = false;
if (!r.Email)
r.Email = false;
var fr = { Values: r };
rows.push(fr);
}
grid_allfollower.setData(rows);
}
function searchFollower(newopen) {//newopen新打开
var filter = $('#selfollower_search').val().trim().toLowerCase();
if (isloadfollower && allfollowers) {
var emails = [];
for (var i = 0; i < allfollowers.length; i++) {
var m = allfollowers[i];
if (newopen) {
m.Text = false;
m.Email = false;
emails.push(m);
}
else {
if (!m.Text && !m.Email) {
if (m.ID.toLowerCase().indexOf(filter) >= 0 || m.DisplayName.toLowerCase().indexOf(filter) >= 0)
emails.push(m);
}
else
emails.push(m);
}
}
showAllFollower(emails);
}
}
function onSelectFollowers() {
for (var i = 0; i < grid_allfollower.source.length; i++) {
var ct = grid_allfollower.source[i].Values;
if (ct.Email || ct.Text) {
var f = {};
f.Id = -1;
f.UserIID = ct.IID;
f.Name = ct.DisplayName;
f.Email = ct.ID;
f.MobilePhone = ct.Mobile;
f.SendEmail = ct.Email;
f.SendText = ct.Text;
if (followers && followers.length > 0) {
for (var j = 0; j < followers.length; j++) {
if (followers[j].UserIID.toLowerCase() == f.UserIID.toLowerCase()) {
f.Id = followers[j].Id;
followers.splice(j, 1);
break;
}
}
}
followers.push(f);
}
}
SaveWorkOrderFollower();
showWorkOrderFollowers(followers);
showmaskbg(false);
$('#addfollowerpopupdialog').hideDialog();
}
function onDeleteFollower(c) {
if (!c) {
return;
}
showConfirm(GetTextByKey("P_CR_XXXXXX", 'Do you want to delete this follower?'), GetTextByKey("P_CR_XXXXXX", 'Delete Follower'), function () {
var index = followers.indexOf(c);
followers.splice(index, 1);
SaveWorkOrderFollower();
showWorkOrderFollowers(followers);
});
}
function SaveWorkOrderFollower(next) {
if (!workorderid || workorderid == "")
return;
var param = JSON.stringify([workorderid, JSON.stringify(followers)]);
param = htmlencode(param);
worequest("SaveWorkOrderFollower", param, function (data) {
if (typeof next === 'function') {
next(data);
} else {
if (data !== "OK") {
showAlert(data, GetTextByKey("P_WO_ERROR", 'Error'));
return;
}
}
}, function (err) {
//showmaskbg(false);
});
}
/*************************End Follwer********************************/
/*************************Inspections********************************/
var assetworkorders;
function getWOInspectItems() {
assetworkorders = [];
if (!workorderid || workorderid == "") return;
worequest("GetWOInspectItems", JSON.stringify([workorderid, machineid]), function (data) {
if (typeof (data) === "string") {
showAlert(data, GetTextByKey("P_WO_ERROR", 'Error'));
return;
}
if (data && data.length > 0) {
assetworkorders = data[0].WorkOrders;
ShowWOInspects(data);
}
else {
var div = $('#divinspections');
div.empty();
div.append($('
').text(GetTextByKey("P_WO_NOINSPECTION", 'No Inspection')));
}
}, function (err) {
});
}
function ShowWOInspects(inspects) {
var div = $('#divinspections');
div.empty();
for (var i = 0; i < inspects.length; i++) {
var ipt = inspects[i];
var targetid = "tbinspect_" + i;
var div_title = $('');
var spimg = $('').data('iptid', ipt.Id).click(function () {
var t = $(this);
var tid = t.attr("target");
if (t.hasClass("iconchevrondown")) {
t.removeClass("iconchevrondown").addClass("iconchevronright");
$("#" + tid).hide();
}
else {
t.removeClass("iconchevronright").addClass("iconchevrondown");
$("#" + tid).show();
var iptid = t.data("iptid");
var iframe = $("#iframe_" + iptid);
if (iframe.data("load") == 0) {
iframe.attr('src', '../Inspection/ReportForWorkOrder.aspx?rid=' + iptid);
iframe.data("load", 1);
}
}
});
var span = $('').text(ipt.TemplateName);
div_title.append(spimg).append(span);
span = $('').text(ipt.CommitTimeLocalStr + ' by ' + ipt.CommitedByUserName);
div_title.append(span);
var ext_chk = $('').prop('checked', ipt.VisibleToCustomer).click(ipt, function (e) {
updateInspectVisibleToCustomer(e.data.Id, $(this).prop('checked'));
});
div_title.append(ext_chk);
span = $('').text(GetTextByKey('P_WO_VISIBLETOCUSTOMER', 'Visible To Customer'));
if (WOReadOnly)
ext_chk.prop('disabled', true);
div_title.append(span);
if (AllowReassignWorkorders) {
span = $('').text(GetTextByKey('P_WO_WORKORDERASSIGNMENT', 'Work Order Assignment'));
div_title.append(span);
var div_editableselect = $('');
div_editableselect
.attr({
'inspection-id': ipt.Id,
'old-wo-id': ipt.WorkOrderId
})
.dropdown(assetworkorders || [], {
input: true,
valueKey: 'Id',
textKey: 'WorkOrderNumber',
selected: ipt.WorkOrderNumber
}).on('select', function (_e, wo) {
console.log(1)
var et = $(_e.target);
if (wo) {
var msg1 = GetTextByKey('P_WO_AREYOUSURETHATYOUWANTTOPROCEED', 'Are you sure that you want to proceed ?');
var msg = GetTextByKey('P_WO_YOUAREREASSIGNINGTHISWORKORDER', 'You are reassigning this work order. ') + " " + msg1;
if (wo.Completed)
msg = GetTextByKey('P_WO_YOUAREREASSIGNINGTHISWORKORDERTOACLOSEDWORKORDER', 'You are reassigning this Work Order to a CLOSED Work Order.') + " " + msg1;
showConfirm(msg, GetTextByKey("P_WO_WORKORDERASSIGNMENT", 'Work Order Assignment'), function () {
updateInspectionWorkOrder(et.attr('inspection-id'), wo.Id);
}, function () {
et.dropdownVal(et.attr('old-wo-id'));
});
}
});
div_title.append(div_editableselect);
}
div_title.append('');
div.append(div_title);
var tab = $('
');
tr = $("
");
td = $('
');
var iframe = $('').attr("id", "iframe_" + ipt.Id).data("load", 0);
td.append(iframe);
tr.append(td);
tab.append(tr);
div.append(tab);
}
}
function updateInspectionWorkOrder(id, woid) {
var p = JSON.stringify([id, woid, workorderid]);
worequest("UpdateInspectionWorkOrder", htmlencode(p), function (data) {
if (typeof (data) === "string") {
showAlert(data, GetTextByKey("P_WO_WORKORDERASSIGNMENT", 'Work Order Assignment'));
return;
}
getWOInspectItems();
getAlerts();
getWorkOrderAttachments();
}, function (err) {
});
}
function updateInspectVisibleToCustomer(id, chk) {
var item = [id, chk];
var param = JSON.stringify(item);
param = htmlencode(param);
worequest('UpdateInspectionVisibleToCustomer', param, function (data) {
if (data !== 'OK') {
showAlert(data, GetTextByKey("P_WO_AVAILABLETOCUSTOMER", 'Available to Customer'));
}
}, function (err) {
});
}
/*************************End Inspections********************************/
function getWorkOrderCollapsed() {
worequest("GetWorkOrderCollapsed", '', function (data) {
if (typeof (data) === "string") {
return;
}
if (data) {
for (var i = 0; i < data.length; i++) {
var item = data[i];
if (item.Value == "1" && $("#span" + item.Key).is(":visible")) {
$("#span" + item.Key).removeClass("iconchevronright").addClass("iconchevrondown");
$("#tb" + item.Key).show();
if ("customer" == item.Key)
grid_dtcontact && grid_dtcontact.resize();
else if ("follower" == item.Key)
grid_dtfollower && grid_dtfollower.resize();
}
else {
$("#span" + item.Key).removeClass("iconchevrondown").addClass("iconchevronright");
$("#tb" + item.Key).hide();
}
if (!AllowCustomer && item.Key === "customer") {
$("#tb" + item.Key).hide();
}
}
}
}, function (err) {
});
}
function saveWorkOrderCollapsed() {
var items = [];
items.push({ 'Key': 'asset', 'Value': $("#spanasset").hasClass('iconchevrondown') ? "1" : "0" });
items.push({ 'Key': 'customer', 'Value': $("#spancustomer").hasClass('iconchevrondown') ? "1" : "0" });
items.push({ 'Key': 'follower', 'Value': $("#spanfollower").hasClass('iconchevrondown') ? "1" : "0" });
items.push({ 'Key': 'summary', 'Value': $("#spansummary").hasClass('iconchevrondown') ? "1" : "0" });
items.push({ 'Key': 'cost', 'Value': $("#spancost").hasClass('iconchevrondown') ? "1" : "0" });
var param = JSON.stringify(items);
param = htmlencode(param);
worequest("SetWorkOrderCollapsed", param, function (data) {
}, function (err) {
});
}
/*****************************************Begin Estimate*********************************************/
var EstimateStatus = {
Draft: 0,
Pending: 1,
Cancelled: 2,
Declined: 3,
Approved: 4,
Void: 5,
None: 100,
};
var estimateindex = 0;
var publishestindex = 0;
var addestfiledatas = [];
var cur_uploaddata;
var cur_uploadindex = "";
function showEstimatePopup() {
$('#popupestimatemask').css('height', $('#dialog_workorder').height());
$('#popupestimatemask').show();
$('#dialog_estimate').show();
$('#dialog_estimate').css({
"top": ($("#popupestimatemask").height() - $('#dialog_estimate').height()) / 3,
"left": ($("#popupestimatemask").width() - $('#dialog_estimate').width()) / 3
});
$('#dialog_segmentuser').focus();
}
function hideEstimatePopup() {
$('#popupestimatemask').hide();
$('#dialog_estimate').hide();
}
function getEstimates() {
estimateindex = 0;
$('#tab_estimates .estimates_div').remove();
$('#tab_estimates .estimates_table').remove();
if (!workorderid || workorderid == "") return;
worequest("GetWorkOrderEstimates", workorderid, function (data) {
$('#tab_estimates .estimates_div').remove();
$('#tab_estimates .estimates_table').remove();
if (typeof (data) === "string") {
showAlert(data, GetTextByKey("P_WO_ERROR", 'Error'));
return;
}
if (data) {
if (data && data.length > 0) {
if (AllowCustomer)
$('#dialog_estimatestatus').text(getEstimateStatus(data[data.length - 1].Status));
for (var i = 0; i < data.length; i++) {
showEstimate(data[i]);
}
}
else {
if (AllowCustomer)
$('#dialog_estimatestatus').text(getEstimateStatus(100))
}
}
}, function (err) {
});
}
function dragOverEstimateAttachment(ev, index) {
ev.preventDefault();
ev.dataTransfer.dropEffect = 'link';
}
function dropEstimateAttachment(ev, index) {
ev.preventDefault();
ev.stopPropagation();
var df = ev.dataTransfer;
var files = [];
if (df.items !== undefined) {
for (var i = 0; i < df.items.length; i++) {
var item = df.items[i];
if (item.kind === "file" && (item.webkitGetAsEntry() == null || item.webkitGetAsEntry().isFile)) {
var file = item.getAsFile();
if (file.size == 0) {
alert(GetTextByKey("P_WO_ATTACHMENTSTIPS", "Attachment size is 0kb, uploading failed."));
return;
}
if (file.size > 50 * 1024 * 1024) {
alert(GetTextByKey("P_WO_ATTACHMENTSTIPS1", "Attachment is too large. Maximum file size is 50 MB."));
return;
}
files.push({ 'File': file, 'Notes': '' });
}
}
}
var estimate = $('#tabestimate' + index).data('estimate');
if (!estimate)
return;
if (estimate.Status !== 0)
return;
if (files.length > 0)
SaveEstimateAttachmentFiles(files, estimate.Id, index);
}
function cutEstimateAttachment(ev, index) {
ev.stopPropagation();
var df = ev.clipboardData;
var files = [];
if (df.items !== undefined) {
for (var i = 0; i < df.items.length; i++) {
var item = df.items[i];
if (item.kind === "file" && (item.webkitGetAsEntry() == null || item.webkitGetAsEntry().isFile)) {
var file = item.getAsFile();
if (file.size == 0) {
alert(GetTextByKey("P_WO_ATTACHMENTSTIPS", "Attachment size is 0kb, uploading failed."));
return;
}
if (file.size > 50 * 1024 * 1024) {
alert(GetTextByKey("P_WO_ATTACHMENTSTIPS1", "Attachment is too large. Maximum file size is 50 MB."));
return;
}
files.push({ 'File': file, 'Notes': '' });
}
}
}
var estimate = $('#tabestimate' + index).data('estimate');
if (!estimate)
return;
if (estimate.Status !== 0)
return;
if (files.length > 0)
SaveEstimateAttachmentFiles(files, estimate.Id, index);
}
function showEstimate(estimate) {
estimateindex++;
var statustext = getEstimateStatus(estimate.Status);
var div_estimates = $('#tab_estimates');
var div_title = $('');
div_title.append('');
div_title.append('' + estimate.EstimateNumber + '');
div_title.append('' + statustext + '');
if (!WOReadOnly && (estimate.Status == 0 || estimate.Status === 1)) {
var s_del = $('');
div_title.append(s_del);
}
div_title.append('');
div_estimates.append(div_title);
var table = $('
').data('estimate', estimate).data('index', estimateindex).hide();
div_estimates.append(table);
var tr = $('