Vous êtes sur la page 1sur 2

<apex:page standardController="Opportunity">

<apex:form >

<apex:pageBlock >
<apex:pageblockSection title="Oppartunity Details Are:" columns="2">
<apex:inputField value="{!Opportunity.Name}"/>
<apex:inputField value="{!Opportunity.Active__c}" required="true"/>
<apex:inputField value="{!Opportunity.DeliveryInstallationStatus__c}" />
<apex:inputField value="{!Opportunity.TrackingNumber__c}"/>
<apex:inputField value="{!Opportunity.CloseDate}"/>

<apex:commandButton value="Save the Opportunity" action="{!Save}"/>


</apex:pageblockSection>
</apex:pageBlock>

<apex:pageBlock >
<apex:pageblockSection title="Oppartunity Details2 Are:" columns="2">
<apex:inputField value="{!Opportunity.Description}"/>
<apex:inputField value="{!Opportunity.LeadSource}"/>
<apex:inputField value="{!Opportunity.NextStep}" />
<apex:inputField value="{!Opportunity.Type}"/>
<apex:inputField value="{!Opportunity.StageName}"/>

<apex:commandButton value="Save the Opportunity" action="{!Save}"/>


</apex:pageblockSection>
</apex:pageBlock>

</apex:form>
</apex:page>

Vous aimerez peut-être aussi