Log inUsernamePassword
Log me on automatically each visit    
Register
Register
Search
Search


Forum Index » Templates

Post new topic   Reply to topic
NEED AN EXPORT TEMPLATE Goto page 1, 2  Next
View previous topic :: View next topic  
Author Message
w2pac1234



Joined: 26 Jul 2005
Posts: 466

PostPosted: Tue Apr 11, 2006 11:18 am    Post subject: NEED AN EXPORT TEMPLATE Reply with quote

How do I create a template to export all the shiping infirmation including the email, phone #, full address, full name, and tokens for the quantity and auction title. I will be exporting these into DHL shipping program.
Back to top
View user's profile Visit poster's website
Wes
Site Admin


Joined: 07 Oct 2002
Posts: 7427

PostPosted: Tue Apr 11, 2006 1:10 pm    Post subject: Reply with quote

We have a customer export template available that will allow you to export your customer infromation into a CSV file. This may work for you without changes, or could serve as a starting point if you feel further customization is needed. You can download this template from the following URL.

http://www.interapptive.com/support/files/sw_templates/CustomerExport.zip

You will need to unzip the file and place its contents in C:\Program Files\ShipWorks\Application Data\Templates\Reports

To use the template, set your active template to Reports -> Customer Export. Select the desired orders, right click, and choose Save. Provide the file with a name, and click Save. The file will be exported and can be opened in Excel or imported into other applications.

Thanks,

Wes
Interapptive, Inc.
Back to top
View user's profile Visit poster's website
w2pac1234



Joined: 26 Jul 2005
Posts: 466

PostPosted: Tue Apr 11, 2006 1:48 pm    Post subject: Reply with quote

Wes,

Can you please call me at 818-581-5670 as I need to create a custom template to meet my needs to export into DHL. Plase call today if possible.

Basically, I need an exrta fiel to export a token for the quantity and auction title so dhl can import it into the reference field on the shipping label.

-Danny Rackow
D&R Wholesale
Back to top
View user's profile Visit poster's website
Wes
Site Admin


Joined: 07 Oct 2002
Posts: 7427

PostPosted: Tue Apr 11, 2006 3:23 pm    Post subject: Reply with quote

I tried calling you today but you were unavailable. I left a voice message. Please feel free to email me directly at wes[at]interapptive[dot]com or call 1-800-95-APPTIVE during normal business hours.

Thanks,

Wes
Interapptive, Inc.
Back to top
View user's profile Visit poster's website
w2pac1234



Joined: 26 Jul 2005
Posts: 466

PostPosted: Tue Apr 11, 2006 4:02 pm    Post subject: Reply with quote

Wes,

I just saw your call. Please call me tomorrow around noon so I can tell you what I need exactly.
Back to top
View user's profile Visit poster's website
w2pac1234



Joined: 26 Jul 2005
Posts: 466

PostPosted: Tue Apr 11, 2006 4:09 pm    Post subject: Reply with quote

Looking at again all I need is the template that you posted here plus another colum for the quantity and another column for the item title in the .csv file. Is that an easy fix?
Back to top
View user's profile Visit poster's website
Wes
Site Admin


Joined: 07 Oct 2002
Posts: 7427

PostPosted: Wed Apr 12, 2006 8:08 am    Post subject: Reply with quote

You could open the template in our Template Editor via Manage -> Manage Templates and make your modifications there. The two elements you mentioned could be accesing using code similar to <xsl:value-of select="//Order/Item/Name" /> and <xsl:value-of select="//Order/Item/Quantity" />.

Let us know if you need further assitance.

Thanks,

Wes
Interapptive, Inc.
Back to top
View user's profile Visit poster's website
w2pac1234



Joined: 26 Jul 2005
Posts: 466

PostPosted: Wed Apr 12, 2006 10:27 am    Post subject: Reply with quote

I delted the shipping section as I only need the billing address. Here is what I have. Where do I add the code for the quantity and the auction title??

<xsl:text>B_FIRST,B_LAST,B_COMPANY,B_ADDRESS1,B_ADDRESS2,B_ADDRESS3,B_CITY,B_STATECODE,B_STATE_NAME,B_POSTALCODE,B_COUNTRYCODE,B_COUNTRYNAME,B_PHONE,B_FAX,B_EMAIL,&nl;</xsl:text>

<xsl:for-each select="//Customer">



<xsl:variable name="address" select="Address" />


<!-- billing information -->
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/FirstName" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/LastName" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Company" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Line1" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Line2" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Line3" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/City" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/StateCode" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/StateName" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/PostalCode" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/CountryCode" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/CountryName" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Phone" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Fax" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Email" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Email" /><xsl:text>",</xsl:text>
Back to top
View user's profile Visit poster's website
Wes
Site Admin


Joined: 07 Oct 2002
Posts: 7427

PostPosted: Wed Apr 12, 2006 10:42 am    Post subject: Reply with quote

An order can have multiple items, how would you like the items displayed along with the address information, if an order would have more than one item?

Thanks,

Wes
Interapptive, Inc.
Back to top
View user's profile Visit poster's website
w2pac1234



Joined: 26 Jul 2005
Posts: 466

PostPosted: Wed Apr 12, 2006 10:54 am    Post subject: Reply with quote

I dont allow the buyer to combine their purchases, so each order has to be paid for seperatley. They only only purchase more than one if the auction has a quantity greater than 1 available which is why I need a column for the quantity before the auction title.
Back to top
View user's profile Visit poster's website
Wes
Site Admin


Joined: 07 Oct 2002
Posts: 7427

PostPosted: Wed Apr 12, 2006 11:07 am    Post subject: Reply with quote

The following code was modified to be per order (rather than per Customer record), and I added the QTY and NAME columns, along with their associated data.

Code:
<xsl:text>B_FIRST,B_LAST,B_COMPANY,B_ADDRESS1,B_ADDRESS2,B_ADDRESS3,B_CITY,B_STATECODE,B_STATE_NAME,B_POSTALCODE,B_COUNTRYCODE,B_COUNTRYNAME,B_PHONE,B_FAX,B_EMAIL,QTY,NAME&nl;</xsl:text>

<xsl:for-each select="//Order">



<xsl:variable name="address" select="Address" />


<!-- billing information -->
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/FirstName" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/LastName" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Company" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Line1" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Line2" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Line3" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/City" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/StateCode" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/StateName" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/PostalCode" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/CountryCode" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/CountryName" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Phone" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Fax" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Email" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Email" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="Item/Quantity" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="Item/Name" /><xsl:text>",</xsl:text>


Thanks,

Wes
Interapptive, Inc.
Back to top
View user's profile Visit poster's website
w2pac1234



Joined: 26 Jul 2005
Posts: 466

PostPosted: Wed Apr 12, 2006 11:20 am    Post subject: Reply with quote

I think that will work perfectly. One last question is their a way to somehow filter an order if the address has a PO box in it so I know not to export it into DHL?
Back to top
View user's profile Visit poster's website
w2pac1234



Joined: 26 Jul 2005
Posts: 466

PostPosted: Wed Apr 12, 2006 11:37 am    Post subject: Reply with quote

Sorry, one last question. Is there a way to also have this # show up in the phone # section. 818-555-5555
Back to top
View user's profile Visit poster's website
w2pac1234



Joined: 26 Jul 2005
Posts: 466

PostPosted: Wed Apr 12, 2006 11:45 am    Post subject: Reply with quote

There seems to be a problem with the template.

I exported 20 orders and instead of each order being on a seperate row all the orders are on row 2 in excel and cannot be imported as each order has to be on a seperate row to correspond with the column header.

Any way to fix this?
Back to top
View user's profile Visit poster's website
w2pac1234



Joined: 26 Jul 2005
Posts: 466

PostPosted: Wed Apr 12, 2006 11:49 am    Post subject: Reply with quote

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE xsl:stylesheet[ <!ENTITY nl "&#xd;&#xa;"> ]>

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:sw="http://www.interapptive.com/shipworks" extension-element-prefixes="sw">
<xsl:import href="System\Common" />

<xsl:output method="text" encoding="utf-8" />

<sw:settings>
<sw:preview>
<sw:type>Customers</sw:type>
<sw:count>14</sw:count>
<sw:zoom>108%</sw:zoom>
</sw:preview>
<sw:saving>
<sw:filename>CustomerExport</sw:filename>
<sw:multiPromptEach>True</sw:multiPromptEach>
<sw:filetype>csv</sw:filetype>
</sw:saving>
<sw:general>
<sw:type>report</sw:type>
</sw:general>
</sw:settings>

<!-- -->
<!-- Start of processing -->
<!-- -->
<xsl:template match="/">

<xsl:text>B_FIRST,B_LAST,B_COMPANY,B_ADDRESS1,B_ADDRESS2,B_ADDRESS3,B_CITY,B_STATECODE,B_STATE_NAME,B_POSTALCODE,B_COUNTRYCODE,B_COUNTRYNAME,B_PHONE,B_FAX,B_EMAIL,QTY,NAME&nl;</xsl:text>

<xsl:for-each select="//Order">



<xsl:variable name="address" select="Address" />


<!-- billing information -->
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/FirstName" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/LastName" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Company" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Line1" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Line2" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Line3" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/City" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/StateCode" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/StateName" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/PostalCode" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/CountryCode" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/CountryName" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Phone" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Email" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Email" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="Item/Quantity" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="Item/Name" /><xsl:text>",</xsl:text>
</xsl:for-each>

</xsl:template>

</xsl:stylesheet>
Back to top
View user's profile Visit poster's website
Wes
Site Admin


Joined: 07 Oct 2002
Posts: 7427

PostPosted: Wed Apr 12, 2006 11:50 am    Post subject: Reply with quote

The following code includes a new line break for each record:

Code:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE xsl:stylesheet[ <!ENTITY nl "&#xd;&#xa;"> ]>

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:sw="http://www.interapptive.com/shipworks" extension-element-prefixes="sw">
<xsl:import href="System\Common" />

<xsl:output method="text" encoding="utf-8" />

<sw:settings>
<sw:preview>
<sw:type>Customers</sw:type>
<sw:count>14</sw:count>
<sw:zoom>108%</sw:zoom>
</sw:preview>
<sw:saving>
<sw:filename>CustomerExport</sw:filename>
<sw:multiPromptEach>True</sw:multiPromptEach>
<sw:filetype>csv</sw:filetype>
</sw:saving>
<sw:general>
<sw:type>report</sw:type>
</sw:general>
</sw:settings>

<!-- -->
<!-- Start of processing -->
<!-- -->
<xsl:template match="/">

<xsl:text>B_FIRST,B_LAST,B_COMPANY,B_ADDRESS1,B_ADDRESS2,B_ADDRESS3,B_CITY,B_STATECODE,B_STATE_NAME,B_POSTALCODE,B_COUNTRYCODE,B_COUNTRYNAME,B_PHONE,B_FAX,B_EMAIL,QTY,NAME&nl;</xsl:text>

<xsl:for-each select="//Order">



<xsl:variable name="address" select="Address" />


<!-- billing information -->
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/FirstName" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/LastName" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Company" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Line1" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Line2" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Line3" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/City" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/StateCode" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/StateName" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/PostalCode" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/CountryCode" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/CountryName" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Phone" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Email" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Email" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="Item/Quantity" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="Item/Name" /><xsl:text>"</xsl:text>
<xsl:text>&nl;</xsl:text>
</xsl:for-each>

</xsl:template>

</xsl:stylesheet>
Back to top
View user's profile Visit poster's website
w2pac1234



Joined: 26 Jul 2005
Posts: 466

PostPosted: Wed Apr 12, 2006 11:55 am    Post subject: Reply with quote

Wes, Thanks for the phone support. I tried one more thing like we discussed and could not figure it out.

I need to edit this tag:

<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Phone" /><xsl:text>",</xsl:text>

I just want it to always put 818-555-5555 instead of trying to pull the phone # off of shipworks.
Back to top
View user's profile Visit poster's website
Wes
Site Admin


Joined: 07 Oct 2002
Posts: 7427

PostPosted: Wed Apr 12, 2006 12:05 pm    Post subject: Reply with quote

You could use the following:

Code:
<xsl:text>"818-555-5555",</xsl:text>


Thanks,

Wes
Interapptive, Inc.
Back to top
View user's profile Visit poster's website
w2pac1234



Joined: 26 Jul 2005
Posts: 466

PostPosted: Wed Apr 12, 2006 12:11 pm    Post subject: Reply with quote

That worked great.

Is there a way to combine the quantity and auction title column into 1 culmn so that it would read for example:

"1new in box cell phone.,..."

instead of:

"1"
"new in box cell phone..."
Back to top
View user's profile Visit poster's website
Wes
Site Admin


Joined: 07 Oct 2002
Posts: 7427

PostPosted: Thu Apr 13, 2006 7:51 am    Post subject: Reply with quote

The following code would combine the two columns as you requested:

Code:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE xsl:stylesheet[ <!ENTITY nl "&#xd;&#xa;"> ]>

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:sw="http://www.interapptive.com/shipworks" extension-element-prefixes="sw">
<xsl:import href="System\Common" />

<xsl:output method="text" encoding="utf-8" />

<sw:settings>
<sw:preview>
<sw:type>Customers</sw:type>
<sw:count>14</sw:count>
<sw:zoom>108%</sw:zoom>
</sw:preview>
<sw:saving>
<sw:filename>CustomerExport</sw:filename>
<sw:multiPromptEach>True</sw:multiPromptEach>
<sw:filetype>csv</sw:filetype>
</sw:saving>
<sw:general>
<sw:type>report</sw:type>
</sw:general>
</sw:settings>

<!-- -->
<!-- Start of processing -->
<!-- -->
<xsl:template match="/">

<xsl:text>B_FIRST,B_LAST,B_COMPANY,B_ADDRESS1,B_ADDRESS2,B_ADDRESS3,B_CITY,B_STATECODE,B_STATE_NAME,B_POSTALCODE,B_COUNTRYCODE,B_COUNTRYNAME,B_PHONE,B_FAX,B_EMAIL,QTY_NAME&nl;</xsl:text>

<xsl:for-each select="//Order">



<xsl:variable name="address" select="Address" />


<!-- billing information -->
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/FirstName" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/LastName" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Company" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Line1" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Line2" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Line3" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/City" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/StateCode" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/StateName" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/PostalCode" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/CountryCode" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/CountryName" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Phone" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Email" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="$address[@type='bill']/Email" /><xsl:text>",</xsl:text>
<xsl:text>"</xsl:text><xsl:value-of select="Item/Quantity" /><xsl:value-of select="Name" /><xsl:text>"</xsl:text>
<xsl:text>&nl;</xsl:text>
</xsl:for-each>

</xsl:template>

</xsl:stylesheet>


Thanks,

Wes
Interapptive, Inc.
Back to top
View user's profile Visit poster's website
w2pac1234



Joined: 26 Jul 2005
Posts: 466

PostPosted: Thu Apr 13, 2006 10:50 am    Post subject: Reply with quote

Wes,

The colmun header shows QTY_NAME, BUTTTT only displays the quantity in the rows below it for each order.
Back to top
View user's profile Visit poster's website
Wes
Site Admin


Joined: 07 Oct 2002
Posts: 7427

PostPosted: Thu Apr 13, 2006 11:26 am    Post subject: Reply with quote

Looks like I made a mistake when editing the code. You will simply need to add "Item/" in before "Name" (without quotes) to resolve the problem.

Thanks,

Wes
Interapptive, Inc.
Back to top
View user's profile Visit poster's website
w2pac1234



Joined: 26 Jul 2005
Posts: 466

PostPosted: Thu Apr 13, 2006 11:37 am    Post subject: Reply with quote

Everything works great. its exporting to DHL like a champ. Thank you very much for all your efforts. Best service by far.
Back to top
View user's profile Visit poster's website
Wes
Site Admin


Joined: 07 Oct 2002
Posts: 7427

PostPosted: Thu Apr 13, 2006 11:42 am    Post subject: Reply with quote

Glad to hear its working for you. However, wouldn't you need the shipping information to export, rather than the billing address? I know you mentioned that you modified the template to strip out the shipping section, so I was just curious, and I wanted to make sure that you are indeed outputting what you need/want.

Thanks,

Wes
Interapptive, Inc.
Back to top
View user's profile Visit poster's website
w2pac1234



Joined: 26 Jul 2005
Posts: 466

PostPosted: Thu Apr 13, 2006 11:48 am    Post subject: Reply with quote

I only ship to the billing address so I do not want to ship to the shipping address if it is different.
Back to top
View user's profile Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic     Forum Index » Templates All times are GMT - 7 Hours
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  

Powered by phpBB © 2001, 2002 phpBB Group