Ejemplo n.º 1
0
 public static function GetSoapObjectFromObject($objObject, $blnBindRelatedObjects)
 {
     if ($objObject->objCourier) {
         $objObject->objCourier = Courier::GetSoapObjectFromObject($objObject->objCourier, false);
     } else {
         if (!$blnBindRelatedObjects) {
             $objObject->intCourierId = null;
         }
     }
     if ($objObject->objCreatedByObject) {
         $objObject->objCreatedByObject = UserAccount::GetSoapObjectFromObject($objObject->objCreatedByObject, false);
     } else {
         if (!$blnBindRelatedObjects) {
             $objObject->intCreatedBy = null;
         }
     }
     if ($objObject->dttCreationDate) {
         $objObject->dttCreationDate = $objObject->dttCreationDate->__toString(QDateTime::FormatSoap);
     }
     if ($objObject->objModifiedByObject) {
         $objObject->objModifiedByObject = UserAccount::GetSoapObjectFromObject($objObject->objModifiedByObject, false);
     } else {
         if (!$blnBindRelatedObjects) {
             $objObject->intModifiedBy = null;
         }
     }
     return $objObject;
 }
Ejemplo n.º 2
0
 public static function GetSoapArrayFromArray($objArray)
 {
     if (!$objArray) {
         return null;
     }
     $objArrayToReturn = array();
     foreach ($objArray as $objObject) {
         array_push($objArrayToReturn, Courier::GetSoapObjectFromObject($objObject, true));
     }
     return unserialize(serialize($objArrayToReturn));
 }
Ejemplo n.º 3
0
 public static function GetSoapObjectFromObject($objObject, $blnBindRelatedObjects)
 {
     if ($objObject->objTransaction) {
         $objObject->objTransaction = Transaction::GetSoapObjectFromObject($objObject->objTransaction, false);
     } else {
         if (!$blnBindRelatedObjects) {
             $objObject->intTransactionId = null;
         }
     }
     if ($objObject->objFromCompany) {
         $objObject->objFromCompany = Company::GetSoapObjectFromObject($objObject->objFromCompany, false);
     } else {
         if (!$blnBindRelatedObjects) {
             $objObject->intFromCompanyId = null;
         }
     }
     if ($objObject->objFromContact) {
         $objObject->objFromContact = Contact::GetSoapObjectFromObject($objObject->objFromContact, false);
     } else {
         if (!$blnBindRelatedObjects) {
             $objObject->intFromContactId = null;
         }
     }
     if ($objObject->objFromAddress) {
         $objObject->objFromAddress = Address::GetSoapObjectFromObject($objObject->objFromAddress, false);
     } else {
         if (!$blnBindRelatedObjects) {
             $objObject->intFromAddressId = null;
         }
     }
     if ($objObject->objToCompany) {
         $objObject->objToCompany = Company::GetSoapObjectFromObject($objObject->objToCompany, false);
     } else {
         if (!$blnBindRelatedObjects) {
             $objObject->intToCompanyId = null;
         }
     }
     if ($objObject->objToContact) {
         $objObject->objToContact = Contact::GetSoapObjectFromObject($objObject->objToContact, false);
     } else {
         if (!$blnBindRelatedObjects) {
             $objObject->intToContactId = null;
         }
     }
     if ($objObject->objToAddress) {
         $objObject->objToAddress = Address::GetSoapObjectFromObject($objObject->objToAddress, false);
     } else {
         if (!$blnBindRelatedObjects) {
             $objObject->intToAddressId = null;
         }
     }
     if ($objObject->objCourier) {
         $objObject->objCourier = Courier::GetSoapObjectFromObject($objObject->objCourier, false);
     } else {
         if (!$blnBindRelatedObjects) {
             $objObject->intCourierId = null;
         }
     }
     if ($objObject->dttShipDate) {
         $objObject->dttShipDate = $objObject->dttShipDate->__toString(QDateTime::FormatSoap);
     }
     if ($objObject->objCreatedByObject) {
         $objObject->objCreatedByObject = UserAccount::GetSoapObjectFromObject($objObject->objCreatedByObject, false);
     } else {
         if (!$blnBindRelatedObjects) {
             $objObject->intCreatedBy = null;
         }
     }
     if ($objObject->dttCreationDate) {
         $objObject->dttCreationDate = $objObject->dttCreationDate->__toString(QDateTime::FormatSoap);
     }
     if ($objObject->objModifiedByObject) {
         $objObject->objModifiedByObject = UserAccount::GetSoapObjectFromObject($objObject->objModifiedByObject, false);
     } else {
         if (!$blnBindRelatedObjects) {
             $objObject->intModifiedBy = null;
         }
     }
     return $objObject;
 }
Ejemplo n.º 4
0
 public static function GetSoapObjectFromObject($objObject, $blnBindRelatedObjects)
 {
     if ($objObject->objCourier) {
         $objObject->objCourier = Courier::GetSoapObjectFromObject($objObject->objCourier, false);
     } else {
         if (!$blnBindRelatedObjects) {
             $objObject->intCourierId = null;
         }
     }
     return $objObject;
 }