0

我对 SFDC 很陌生。我正在尝试实现自定义对象的克隆功能,当我克隆对象时,该对象及其相关列表中的所有对象都将被克隆。我已经实现了克隆对象的部分,但是卡住了如何获取与对象的相关列表关联的对象列表。请让我知道,如何实现这一点。

谢谢

4

2 回答 2

1

你可以试试这个...

公共类 PurchaseOrderCloneWithItemsController {

//added an instance varaible for the standard controller
private ApexPages.StandardController controller {get; set;}
 // add the instance for the variables being passed by id on the url
private Purchase_Order__c po {get;set;}
// set the id of the record that is created -- ONLY USED BY THE TEST CLASS
public ID newRecordId {get;set;}

// initialize the controller
public PurchaseOrderCloneWithItemsController(ApexPages.StandardController controller) {

    //initialize the stanrdard controller
    this.controller = controller;
    // load the current record
    po = (Purchase_Order__c)controller.getRecord();

}

// method called from the VF's action attribute to clone the po
public PageReference cloneWithItems() {

     // setup the save point for rollback
     Savepoint sp = Database.setSavepoint();
     Purchase_Order__c newPO;

     try {

          //copy the purchase order - ONLY INCLUDE THE FIELDS YOU WANT TO CLONE
         po = [select Id, Name, Ship_To__c, PO_Number__c, Supplier__c, Supplier_Contact__c, Date_Needed__c, Status__c, Type_of_Purchase__c, Terms__c, Shipping__c, Discount__c from Purchase_Order__c where id = :po.id];
         newPO = po.clone(false);
         insert newPO;

         // set the id of the new po created for testing
           newRecordId = newPO.id;

         // copy over the line items - ONLY INCLUDE THE FIELDS YOU WANT TO CLONE
         List<Purchased_Item__c> items = new List<Purchased_Item__c>();
         for (Purchased_Item__c pi : [Select p.Id, p.Unit_Price__c, p.Quantity__c, p.Memo__c, p.Description__c From Purchased_Item__c p where Purchase_Order__c = :po.id]) {
              Purchased_Item__c newPI = pi.clone(false);
              newPI.Purchase_Order__c = newPO.id;
              items.add(newPI);
         }
         insert items;

     } catch (Exception e){
         // roll everything back in case of error
        Database.rollback(sp);
        ApexPages.addMessages(e);
        return null;
     }

    return new PageReference('/'+newPO.id+'/e?retURL=%2F'+newPO.id);
}
于 2014-03-12T12:11:47.143 回答
0

听起来您需要“深度克隆” - 请查看以下链接以供参考:

https://salesforce.stackexchange.com/questions/8493/d​​eep-clone-parent-child-grand-child

http://www.salesforce.com/us/developer/docs/apexcode/Content/apex_System_List_deepClone.htm

于 2013-11-06T15:22:53.643 回答