DESKTOP-0K9VGFE\hp
2022-03-11 6d766b0c8e9b31e7e03ffd344a94c2851aa9beb9
1
2
3
4
5
6
7
8
9
10
<apex:page standardController="Opportunity" showHeader="false" sidebar="false">
    <script type="text/javascript">
        var stage = '{!Opportunity.Last_opportunity_file_stage__c}';
        var bid = '{!Opportunity.Bid_Date__c}';
        var closingbid = '{!Opportunity.Closing_Bid_Date__c}';
        if ((stage == 'A.中标通知/截图' || stage == 'B.采购通知书') && (bid == '' || closingbid == '')) {
            alert('填写询价中的“招标日”和“中标日”');
        }
    </script>
</apex:page>