81 lines
2.5 KiB
JavaScript
81 lines
2.5 KiB
JavaScript
/*********************************************************************************
|
|
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
|
* ("License"); You may not use this file except in compliance with the License
|
|
* The Original Code is: vtiger CRM Open Source
|
|
* The Initial Developer of the Original Code is vtiger.
|
|
* Portions created by vtiger are Copyright (C) vtiger.
|
|
* All Rights Reserved.
|
|
*
|
|
********************************************************************************/
|
|
|
|
document.write("<script type='text/javascript' src='include/js/Merge.js'></"+"script>");
|
|
function verify_data(form) {
|
|
if(! form.createpotential.checked == true)
|
|
{
|
|
if (form.potential_name.value == "")
|
|
{
|
|
alert(alert_arr.OPPORTUNITYNAME_CANNOT_BE_EMPTY);
|
|
return false;
|
|
}
|
|
if (form.closedate.value == "")
|
|
{
|
|
alert(alert_arr.CLOSEDATE_CANNOT_BE_EMPTY);
|
|
return false;
|
|
}
|
|
return dateValidate('closedate','Potential Close Date','GECD');
|
|
|
|
|
|
}
|
|
return true;
|
|
}
|
|
|
|
function togglePotFields(form)
|
|
{
|
|
if (form.createpotential.checked == true)
|
|
{
|
|
form.potential_name.disabled = true;
|
|
form.closedate.disabled = true;
|
|
|
|
}
|
|
else
|
|
{
|
|
form.potential_name.disabled = false;
|
|
form.closedate.disabled = false;
|
|
}
|
|
|
|
}
|
|
|
|
function toggleAssignType(currType)
|
|
{
|
|
if (currType=="U")
|
|
{
|
|
getObj("assign_user").style.display="block"
|
|
getObj("assign_team").style.display="none"
|
|
}
|
|
else
|
|
{
|
|
getObj("assign_user").style.display="none"
|
|
getObj("assign_team").style.display="block"
|
|
}
|
|
}
|
|
|
|
function set_return(product_id, product_name) {
|
|
if(document.getElementById('from_link').value != '') {
|
|
window.opener.document.QcEditView.parent_name.value = product_name;
|
|
window.opener.document.QcEditView.parent_id.value = product_id;
|
|
} else {
|
|
window.opener.document.EditView.parent_name.value = product_name;
|
|
window.opener.document.EditView.parent_id.value = product_id;
|
|
}
|
|
}
|
|
|
|
function set_return_todo(product_id, product_name) {
|
|
if(document.getElementById('from_link').value != '') {
|
|
window.opener.document.QcEditView.task_parent_name.value = product_name;
|
|
window.opener.document.QcEditView.task_parent_id.value = product_id;
|
|
} else {
|
|
window.opener.document.createTodo.task_parent_name.value = product_name;
|
|
window.opener.document.createTodo.task_parent_id.value = product_id;
|
|
}
|
|
}
|