19626
2023-06-06 b28b7983fd65d7e3da0e6a57ba1754899f036971
1
2
3
4
5
<apex:page Controller="SetProductTargetController" cache="true" contentType="text/csv;charset=GB2312;#SetProductTarget.csv" language="zh-CN">销售本部:{!salesDpt},省,担当<apex:repeat value="{!opportunity_category}" var="oc">,{!oc}</apex:repeat>
<apex:repeat value="{!dataBeans}" var="dbs">
"{!dbs.department}","{!dbs.opportunity.SAP_Province__c}","{!dbs.ownername}",<apex:repeat value="{!dbs.amount}" var="amount" rendered="{!IF(dbs.amount.size>=0,true,false)}">"{!amount.Num_Of_OPD__c}",</apex:repeat><apex:repeat value="{!dbs.amount}" var="amount" rendered="{!IF(dbs.amount.size<0,true,false)}">" ",</apex:repeat>
</apex:repeat>  
</apex:page>