示例#1
0
 public static function GetObjectFromSoapObject($objSoapObject)
 {
     $objToReturn = new Shipment();
     if (property_exists($objSoapObject, 'ShipmentId')) {
         $objToReturn->intShipmentId = $objSoapObject->ShipmentId;
     }
     if (property_exists($objSoapObject, 'ShipmentNumber')) {
         $objToReturn->strShipmentNumber = $objSoapObject->ShipmentNumber;
     }
     if (property_exists($objSoapObject, 'Transaction') && $objSoapObject->Transaction) {
         $objToReturn->Transaction = Transaction::GetObjectFromSoapObject($objSoapObject->Transaction);
     }
     if (property_exists($objSoapObject, 'FromCompany') && $objSoapObject->FromCompany) {
         $objToReturn->FromCompany = Company::GetObjectFromSoapObject($objSoapObject->FromCompany);
     }
     if (property_exists($objSoapObject, 'FromContact') && $objSoapObject->FromContact) {
         $objToReturn->FromContact = Contact::GetObjectFromSoapObject($objSoapObject->FromContact);
     }
     if (property_exists($objSoapObject, 'FromAddress') && $objSoapObject->FromAddress) {
         $objToReturn->FromAddress = Address::GetObjectFromSoapObject($objSoapObject->FromAddress);
     }
     if (property_exists($objSoapObject, 'ToCompany') && $objSoapObject->ToCompany) {
         $objToReturn->ToCompany = Company::GetObjectFromSoapObject($objSoapObject->ToCompany);
     }
     if (property_exists($objSoapObject, 'ToContact') && $objSoapObject->ToContact) {
         $objToReturn->ToContact = Contact::GetObjectFromSoapObject($objSoapObject->ToContact);
     }
     if (property_exists($objSoapObject, 'ToAddress') && $objSoapObject->ToAddress) {
         $objToReturn->ToAddress = Address::GetObjectFromSoapObject($objSoapObject->ToAddress);
     }
     if (property_exists($objSoapObject, 'Courier') && $objSoapObject->Courier) {
         $objToReturn->Courier = Courier::GetObjectFromSoapObject($objSoapObject->Courier);
     }
     if (property_exists($objSoapObject, 'TrackingNumber')) {
         $objToReturn->strTrackingNumber = $objSoapObject->TrackingNumber;
     }
     if (property_exists($objSoapObject, 'ShipDate')) {
         $objToReturn->dttShipDate = new QDateTime($objSoapObject->ShipDate);
     }
     if (property_exists($objSoapObject, 'ShippedFlag')) {
         $objToReturn->blnShippedFlag = $objSoapObject->ShippedFlag;
     }
     if (property_exists($objSoapObject, 'CreatedByObject') && $objSoapObject->CreatedByObject) {
         $objToReturn->CreatedByObject = UserAccount::GetObjectFromSoapObject($objSoapObject->CreatedByObject);
     }
     if (property_exists($objSoapObject, 'CreationDate')) {
         $objToReturn->dttCreationDate = new QDateTime($objSoapObject->CreationDate);
     }
     if (property_exists($objSoapObject, 'ModifiedByObject') && $objSoapObject->ModifiedByObject) {
         $objToReturn->ModifiedByObject = UserAccount::GetObjectFromSoapObject($objSoapObject->ModifiedByObject);
     }
     if (property_exists($objSoapObject, 'ModifiedDate')) {
         $objToReturn->strModifiedDate = $objSoapObject->ModifiedDate;
     }
     if (property_exists($objSoapObject, '__blnRestored')) {
         $objToReturn->__blnRestored = $objSoapObject->__blnRestored;
     }
     return $objToReturn;
 }
示例#2
0
 public static function GetObjectFromSoapObject($objSoapObject)
 {
     $objToReturn = new Receipt();
     if (property_exists($objSoapObject, 'ReceiptId')) {
         $objToReturn->intReceiptId = $objSoapObject->ReceiptId;
     }
     if (property_exists($objSoapObject, 'Transaction') && $objSoapObject->Transaction) {
         $objToReturn->Transaction = Transaction::GetObjectFromSoapObject($objSoapObject->Transaction);
     }
     if (property_exists($objSoapObject, 'FromCompany') && $objSoapObject->FromCompany) {
         $objToReturn->FromCompany = Company::GetObjectFromSoapObject($objSoapObject->FromCompany);
     }
     if (property_exists($objSoapObject, 'FromContact') && $objSoapObject->FromContact) {
         $objToReturn->FromContact = Contact::GetObjectFromSoapObject($objSoapObject->FromContact);
     }
     if (property_exists($objSoapObject, 'ToContact') && $objSoapObject->ToContact) {
         $objToReturn->ToContact = Contact::GetObjectFromSoapObject($objSoapObject->ToContact);
     }
     if (property_exists($objSoapObject, 'ToAddress') && $objSoapObject->ToAddress) {
         $objToReturn->ToAddress = Address::GetObjectFromSoapObject($objSoapObject->ToAddress);
     }
     if (property_exists($objSoapObject, 'ReceiptNumber')) {
         $objToReturn->strReceiptNumber = $objSoapObject->ReceiptNumber;
     }
     if (property_exists($objSoapObject, 'DueDate')) {
         $objToReturn->dttDueDate = new QDateTime($objSoapObject->DueDate);
     }
     if (property_exists($objSoapObject, 'ReceiptDate')) {
         $objToReturn->dttReceiptDate = new QDateTime($objSoapObject->ReceiptDate);
     }
     if (property_exists($objSoapObject, 'ReceivedFlag')) {
         $objToReturn->blnReceivedFlag = $objSoapObject->ReceivedFlag;
     }
     if (property_exists($objSoapObject, 'CreatedByObject') && $objSoapObject->CreatedByObject) {
         $objToReturn->CreatedByObject = UserAccount::GetObjectFromSoapObject($objSoapObject->CreatedByObject);
     }
     if (property_exists($objSoapObject, 'CreationDate')) {
         $objToReturn->dttCreationDate = new QDateTime($objSoapObject->CreationDate);
     }
     if (property_exists($objSoapObject, 'ModifiedByObject') && $objSoapObject->ModifiedByObject) {
         $objToReturn->ModifiedByObject = UserAccount::GetObjectFromSoapObject($objSoapObject->ModifiedByObject);
     }
     if (property_exists($objSoapObject, 'ModifiedDate')) {
         $objToReturn->strModifiedDate = $objSoapObject->ModifiedDate;
     }
     if (property_exists($objSoapObject, '__blnRestored')) {
         $objToReturn->__blnRestored = $objSoapObject->__blnRestored;
     }
     return $objToReturn;
 }
示例#3
0
 public static function GetArrayFromSoapArray($objSoapArray)
 {
     $objArrayToReturn = array();
     foreach ($objSoapArray as $objSoapObject) {
         array_push($objArrayToReturn, Company::GetObjectFromSoapObject($objSoapObject));
     }
     return $objArrayToReturn;
 }
示例#4
0
 public static function GetObjectFromSoapObject($objSoapObject)
 {
     $objToReturn = new Address();
     if (property_exists($objSoapObject, 'AddressId')) {
         $objToReturn->intAddressId = $objSoapObject->AddressId;
     }
     if (property_exists($objSoapObject, 'Company') && $objSoapObject->Company) {
         $objToReturn->Company = Company::GetObjectFromSoapObject($objSoapObject->Company);
     }
     if (property_exists($objSoapObject, 'ShortDescription')) {
         $objToReturn->strShortDescription = $objSoapObject->ShortDescription;
     }
     if (property_exists($objSoapObject, 'Country') && $objSoapObject->Country) {
         $objToReturn->Country = Country::GetObjectFromSoapObject($objSoapObject->Country);
     }
     if (property_exists($objSoapObject, 'Address1')) {
         $objToReturn->strAddress1 = $objSoapObject->Address1;
     }
     if (property_exists($objSoapObject, 'Address2')) {
         $objToReturn->strAddress2 = $objSoapObject->Address2;
     }
     if (property_exists($objSoapObject, 'City')) {
         $objToReturn->strCity = $objSoapObject->City;
     }
     if (property_exists($objSoapObject, 'StateProvince') && $objSoapObject->StateProvince) {
         $objToReturn->StateProvince = StateProvince::GetObjectFromSoapObject($objSoapObject->StateProvince);
     }
     if (property_exists($objSoapObject, 'PostalCode')) {
         $objToReturn->strPostalCode = $objSoapObject->PostalCode;
     }
     if (property_exists($objSoapObject, 'CreatedByObject') && $objSoapObject->CreatedByObject) {
         $objToReturn->CreatedByObject = UserAccount::GetObjectFromSoapObject($objSoapObject->CreatedByObject);
     }
     if (property_exists($objSoapObject, 'CreationDate')) {
         $objToReturn->dttCreationDate = new QDateTime($objSoapObject->CreationDate);
     }
     if (property_exists($objSoapObject, 'ModifiedByObject') && $objSoapObject->ModifiedByObject) {
         $objToReturn->ModifiedByObject = UserAccount::GetObjectFromSoapObject($objSoapObject->ModifiedByObject);
     }
     if (property_exists($objSoapObject, 'ModifiedDate')) {
         $objToReturn->strModifiedDate = $objSoapObject->ModifiedDate;
     }
     if (property_exists($objSoapObject, '__blnRestored')) {
         $objToReturn->__blnRestored = $objSoapObject->__blnRestored;
     }
     return $objToReturn;
 }
示例#5
0
 public static function GetObjectFromSoapObject($objSoapObject)
 {
     $objToReturn = new Contact();
     if (property_exists($objSoapObject, 'ContactId')) {
         $objToReturn->intContactId = $objSoapObject->ContactId;
     }
     if (property_exists($objSoapObject, 'Company') && $objSoapObject->Company) {
         $objToReturn->Company = Company::GetObjectFromSoapObject($objSoapObject->Company);
     }
     if (property_exists($objSoapObject, 'Address') && $objSoapObject->Address) {
         $objToReturn->Address = Address::GetObjectFromSoapObject($objSoapObject->Address);
     }
     if (property_exists($objSoapObject, 'FirstName')) {
         $objToReturn->strFirstName = $objSoapObject->FirstName;
     }
     if (property_exists($objSoapObject, 'LastName')) {
         $objToReturn->strLastName = $objSoapObject->LastName;
     }
     if (property_exists($objSoapObject, 'Title')) {
         $objToReturn->strTitle = $objSoapObject->Title;
     }
     if (property_exists($objSoapObject, 'Email')) {
         $objToReturn->strEmail = $objSoapObject->Email;
     }
     if (property_exists($objSoapObject, 'PhoneOffice')) {
         $objToReturn->strPhoneOffice = $objSoapObject->PhoneOffice;
     }
     if (property_exists($objSoapObject, 'PhoneHome')) {
         $objToReturn->strPhoneHome = $objSoapObject->PhoneHome;
     }
     if (property_exists($objSoapObject, 'PhoneMobile')) {
         $objToReturn->strPhoneMobile = $objSoapObject->PhoneMobile;
     }
     if (property_exists($objSoapObject, 'Fax')) {
         $objToReturn->strFax = $objSoapObject->Fax;
     }
     if (property_exists($objSoapObject, 'Description')) {
         $objToReturn->strDescription = $objSoapObject->Description;
     }
     if (property_exists($objSoapObject, 'CreatedByObject') && $objSoapObject->CreatedByObject) {
         $objToReturn->CreatedByObject = UserAccount::GetObjectFromSoapObject($objSoapObject->CreatedByObject);
     }
     if (property_exists($objSoapObject, 'CreationDate')) {
         $objToReturn->dttCreationDate = new QDateTime($objSoapObject->CreationDate);
     }
     if (property_exists($objSoapObject, 'ModifiedByObject') && $objSoapObject->ModifiedByObject) {
         $objToReturn->ModifiedByObject = UserAccount::GetObjectFromSoapObject($objSoapObject->ModifiedByObject);
     }
     if (property_exists($objSoapObject, 'ModifiedDate')) {
         $objToReturn->strModifiedDate = $objSoapObject->ModifiedDate;
     }
     if (property_exists($objSoapObject, '__blnRestored')) {
         $objToReturn->__blnRestored = $objSoapObject->__blnRestored;
     }
     return $objToReturn;
 }
 public static function GetObjectFromSoapObject($objSoapObject)
 {
     $objToReturn = new CompanyCustomFieldHelper();
     if (property_exists($objSoapObject, 'Company') && $objSoapObject->Company) {
         $objToReturn->Company = Company::GetObjectFromSoapObject($objSoapObject->Company);
     }
     if (property_exists($objSoapObject, '__blnRestored')) {
         $objToReturn->__blnRestored = $objSoapObject->__blnRestored;
     }
     return $objToReturn;
 }