AppleScript and Extracting orders GS7 Is this a Bug?

Hello,

I am writing a simple script that will automatically export my new ebay orders to an XML file and upload them to another database. I am having some confusion with the “shipping name” and the “shipping street” properties in the ebay order Applescript container.

The “shipping name” property seems to hold the “shipping street” data and the “shipping street” property doesn’t seem to exist. Running the following code shows the issue (i removed my customer data):

tell application “GarageSale”

get properties of first ebay order

end tell

response

{
id:“05E7AF8F-EA1F-473D-A710-63623FF8DE98”,
created time:date “Thursday, September 8, 2016 at 7:30:11 PM”,
paid time:date “Thursday, September 8, 2016 at 7:30:11 PM”,
shipped time:date “Friday, September 9, 2016 at 3:26:59 PM”,
order id:“0000000000-0000000000”,
class:ebay order,
shipping province:“NY”,
shipping name:“231 Address Road”,
shipping country:“United States”,
shipping city:“SOME CITY”,
shipping postal code:“12345”,
buyer id:“buyerusername”,
seller id:“sellerusername”,
buyer email:missing value
}

The AppleScript Library Documentation clealy states the folowing fields are available in the ebay order container:

shipping street (text, r/o) : Street of the shipping address.
shipping name (text, r/o) : Name of the buyer (on the shipping address).

Is this a bug in GS7.0.4 or am I missing something?

Thank You

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.