Ejemplo n.º 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;
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 3
0
 public static function GetArrayFromSoapArray($objSoapArray)
 {
     $objArrayToReturn = array();
     foreach ($objSoapArray as $objSoapObject) {
         array_push($objArrayToReturn, Transaction::GetObjectFromSoapObject($objSoapObject));
     }
     return $objArrayToReturn;
 }
 public static function GetObjectFromSoapObject($objSoapObject)
 {
     $objToReturn = new AssetTransaction();
     if (property_exists($objSoapObject, 'AssetTransactionId')) {
         $objToReturn->intAssetTransactionId = $objSoapObject->AssetTransactionId;
     }
     if (property_exists($objSoapObject, 'Asset') && $objSoapObject->Asset) {
         $objToReturn->Asset = Asset::GetObjectFromSoapObject($objSoapObject->Asset);
     }
     if (property_exists($objSoapObject, 'Transaction') && $objSoapObject->Transaction) {
         $objToReturn->Transaction = Transaction::GetObjectFromSoapObject($objSoapObject->Transaction);
     }
     if (property_exists($objSoapObject, 'ParentAssetTransaction') && $objSoapObject->ParentAssetTransaction) {
         $objToReturn->ParentAssetTransaction = AssetTransaction::GetObjectFromSoapObject($objSoapObject->ParentAssetTransaction);
     }
     if (property_exists($objSoapObject, 'SourceLocation') && $objSoapObject->SourceLocation) {
         $objToReturn->SourceLocation = Location::GetObjectFromSoapObject($objSoapObject->SourceLocation);
     }
     if (property_exists($objSoapObject, 'DestinationLocation') && $objSoapObject->DestinationLocation) {
         $objToReturn->DestinationLocation = Location::GetObjectFromSoapObject($objSoapObject->DestinationLocation);
     }
     if (property_exists($objSoapObject, 'NewAssetFlag')) {
         $objToReturn->blnNewAssetFlag = $objSoapObject->NewAssetFlag;
     }
     if (property_exists($objSoapObject, 'NewAsset') && $objSoapObject->NewAsset) {
         $objToReturn->NewAsset = Asset::GetObjectFromSoapObject($objSoapObject->NewAsset);
     }
     if (property_exists($objSoapObject, 'ScheduleReceiptFlag')) {
         $objToReturn->blnScheduleReceiptFlag = $objSoapObject->ScheduleReceiptFlag;
     }
     if (property_exists($objSoapObject, 'ScheduleReceiptDueDate')) {
         $objToReturn->dttScheduleReceiptDueDate = new QDateTime($objSoapObject->ScheduleReceiptDueDate);
     }
     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 InventoryTransaction();
     if (property_exists($objSoapObject, 'InventoryTransactionId')) {
         $objToReturn->intInventoryTransactionId = $objSoapObject->InventoryTransactionId;
     }
     if (property_exists($objSoapObject, 'InventoryLocation') && $objSoapObject->InventoryLocation) {
         $objToReturn->InventoryLocation = InventoryLocation::GetObjectFromSoapObject($objSoapObject->InventoryLocation);
     }
     if (property_exists($objSoapObject, 'Transaction') && $objSoapObject->Transaction) {
         $objToReturn->Transaction = Transaction::GetObjectFromSoapObject($objSoapObject->Transaction);
     }
     if (property_exists($objSoapObject, 'Quantity')) {
         $objToReturn->intQuantity = $objSoapObject->Quantity;
     }
     if (property_exists($objSoapObject, 'SourceLocation') && $objSoapObject->SourceLocation) {
         $objToReturn->SourceLocation = Location::GetObjectFromSoapObject($objSoapObject->SourceLocation);
     }
     if (property_exists($objSoapObject, 'DestinationLocation') && $objSoapObject->DestinationLocation) {
         $objToReturn->DestinationLocation = Location::GetObjectFromSoapObject($objSoapObject->DestinationLocation);
     }
     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;
 }