1 answer
Can you please tell in which method the following code is :-
for(PricebookEntry r:selectP){
system.debug('*************************OrderSelect************************'+OrderSelect);
Orderitem t = new OrderItem();
t.OrderId = OrderSelect;
t.UnitPrice = r.UnitPrice;
t.PricebookEntryId = r.Id;
t.Quantity = r.Order_Quantity__c;
}
PageReference d = new PageReference('/'+OrderSelect);
d.setRedirect(true);
return d;