ReactionOpportunityStatus
online
button
javascript
反应询价状态
onClickJavaScript
false
{!RequireScript("/soap/ajax/51.0/connection.js")}
{!RequireScript("/soap/ajax/51.0/apex.js")}
{!RequireScript("/resource/CommonUtilJs")}
//2021-10-22 gwy 版本更改为51.0
var foo = function(){
if('{!Tender_information__c.IsRelateProject__c}'== "否"){
alert('招投标项目不相关后不能反应询价状态!');
return;
}
var listss = [];
listss.push('{!Tender_information__c.Id}');
var rtn = sforce.apex.execute("UpdateTenderInformationBatch", "updateOpportunityInformation", {TenderIdList : listss } );
if(rtn != 'OK'){
alert(rtn);
}else {
alert('反映完了');
}
//重新加载页面
window.location.reload();
}
foo();