Exemple #1
0
 protected function pxyEditFundDonationLineItem_Click($strFormid, $strControlId, $strParameter)
 {
     $objOnlineDonationLineItem = OnlineDonationLineItem::Load($strParameter);
     if ($objOnlineDonationLineItem->OnlineDonation->CreditCardPayment->PaypalBatchId == $this->objBatch->Id) {
         $this->objEditing = $objOnlineDonationLineItem;
         if ($this->objEditing->DonationFlag) {
             $this->lstDialogFund->SelectedValue = $objOnlineDonationLineItem->StewardshipFundId;
         } else {
             $this->lstDialogFund->SelectedValue = -1;
         }
         $this->txtDialogOther->Text = $objOnlineDonationLineItem->Other;
         $this->lblDialogSplitFund->Text = 'Please specify the Funding account Details for the two separate line items you wish to split into The amount to be split is: $' . $objOnlineDonationLineItem->Amount;
         $this->dlgEditFund->ShowDialogBox();
         //GJS We change this dialog box
         $this->lstDialogFund_Change();
     }
 }
 /**
  * Static Helper Method to Create using PK arguments
  * You must pass in the PK arguments on an object to load, or leave it blank to create a new one.
  * If you want to load via QueryString or PathInfo, use the CreateFromQueryString or CreateFromPathInfo
  * static helper methods.  Finally, specify a CreateType to define whether or not we are only allowed to 
  * edit, or if we are also allowed to create a new one, etc.
  * 
  * @param mixed $objParentObject QForm or QPanel which will be using this OnlineDonationLineItemMetaControl
  * @param integer $intId primary key value
  * @param QMetaControlCreateType $intCreateType rules governing OnlineDonationLineItem object creation - defaults to CreateOrEdit
  * @return OnlineDonationLineItemMetaControl
  */
 public static function Create($objParentObject, $intId = null, $intCreateType = QMetaControlCreateType::CreateOrEdit)
 {
     // Attempt to Load from PK Arguments
     if (strlen($intId)) {
         $objOnlineDonationLineItem = OnlineDonationLineItem::Load($intId);
         // OnlineDonationLineItem was found -- return it!
         if ($objOnlineDonationLineItem) {
             return new OnlineDonationLineItemMetaControl($objParentObject, $objOnlineDonationLineItem);
         } else {
             if ($intCreateType != QMetaControlCreateType::CreateOnRecordNotFound) {
                 throw new QCallerException('Could not find a OnlineDonationLineItem object with PK arguments: ' . $intId);
             }
         }
         // If EditOnly is specified, throw an exception
     } else {
         if ($intCreateType == QMetaControlCreateType::EditOnly) {
             throw new QCallerException('No PK arguments specified');
         }
     }
     // If we are here, then we need to create a new record
     return new OnlineDonationLineItemMetaControl($objParentObject, new OnlineDonationLineItem());
 }
 /**
  * Reload this OnlineDonationLineItem from the database.
  * @return void
  */
 public function Reload()
 {
     // Make sure we are actually Restored from the database
     if (!$this->__blnRestored) {
         throw new QCallerException('Cannot call Reload() on a new, unsaved OnlineDonationLineItem object.');
     }
     // Reload the Object
     $objReloaded = OnlineDonationLineItem::Load($this->intId);
     // Update $this's local variables to match
     $this->OnlineDonationId = $objReloaded->OnlineDonationId;
     $this->fltAmount = $objReloaded->fltAmount;
     $this->blnDonationFlag = $objReloaded->blnDonationFlag;
     $this->StewardshipFundId = $objReloaded->StewardshipFundId;
     $this->strOther = $objReloaded->strOther;
 }