Follow us on Twitter X-Cart on Facebook Wiki
Shopping cart software Solutions for online shops and malls
 

Endicia/Dazzle Export Function for Printing Labels

 
Reply
   X-Cart forums > X-Cart 4 > Third Party Add-Ons for X-Cart 4
 
Thread Tools
  #11  
Old 07-29-2009, 05:40 AM
 
GEMaffair.com GEMaffair.com is offline
 

Advanced Member
  
Join Date: May 2009
Posts: 61
 

Default Re: Endicia/Dazzle Export Function for Printing Labels

I would be interested in a copy of the connector for xcart >>>> dazzke>>>>endica. We love endicia and want to continue to use them.

Michael
__________________
Mike
4.2 Gold
Feed Manager Pro
Marketing Manger Pro
eBay Auction Manager
Order History for Admin
Xcart Sitemap (customer map)
Customer Review Bundle
Product Meta Tags Plus
Phone Ordering/POS Module
MAP Pricing Module
Quote Request Module
Back in Stock Module
EZ upsell
Remember Anonymous Carts
One Page Checkout
Altered Cart Smart Search
Social Bookmarking
Tabbed Product Menu
Many custom mods from Qualiteam
Reply With Quote
  #12  
Old 07-29-2009, 05:49 AM
  rubberneck's Avatar 
rubberneck rubberneck is offline
 

Senior Member
  
Join Date: Feb 2003
Posts: 161
 

Default Re: Endicia/Dazzle Export Function for Printing Labels

I'm going to post my coding as I've finally recouped my cost of having it created, and I want to share it. It works well in several of my carts, but certainly would like to hear feedback or improvements the community can make.

The code is below. It basically adds a few button to your orders search results page. You select some orders, click the export button and download an xml file. Then you use the print from file option in Dazzle to import the xml file. It'll print the labels and create an output xml file. You return to the cart and select the import option. Then select the output xml file and upload. It'll import tracking numbers and change the status to complete. We use it for thousands of orders going priority/first class daily.

The version I'm uploading should work for 4.1 forward. I do have one for pre 4.1 as well, but assuming no one will need it. There are basic instructions in the file.

XCart 4.1.zip

-JM
__________________
--
Version 4.0.17 Gold
Version 4.1 Gold
Version 4.4 Gold
Reply With Quote

The following user thanks rubberneck for this useful post:
carpeperdiem (07-29-2009)
  #13  
Old 07-29-2009, 01:03 PM
  theclip's Avatar 
theclip theclip is offline
 

Newbie
  
Join Date: Jul 2008
Posts: 8
 

Default Re: Endicia/Dazzle Export Function for Printing Labels

We simply download our days wort of one .CSV file and then simply use the 'IMPORT' feature in Dazzle. Once you map the fields, it makes for a very fast import of all the shipping info and automatically creates the e-mail for delivery confirmation.
__________________
THECLIP.COM, Inc.
Device Portability Experts - Since 1996
91766 Overseas Hwy
Tavernier, FL 33070



XCMZ-EGCU-MXZE-EFAD
Reply With Quote
  #14  
Old 08-18-2009, 04:40 PM
  Keys's Avatar 
Keys Keys is offline
 

Member
  
Join Date: Feb 2007
Location: Annapolis, LA & Amsterdam
Posts: 19
 

Default Re: Endicia/Dazzle Export Function for Printing Labels

I use Workingman and it works well for me. I need to ship more via UPS. I would like to use Endicia Platinum that adds UPS to the services. I am wondering if your mod will permit use of UPS through Endicia?

Thanks

Bob
__________________
Chemical-Free Skin & Pet Care
4.1.9gold and 4.4.3 gold
Altered Cart One Page; Buy Together
Uncounted QT Mods
Reply With Quote
  #15  
Old 08-28-2009, 03:17 PM
 
chopperstyle chopperstyle is offline
 

Newbie
  
Join Date: Aug 2009
Posts: 5
 

Default Re: Endicia/Dazzle Export Function for Printing Labels

I have used rubbernecks software and it works like a charm. It basically allows you to click two buttons and you have printed postage ready to go. Its much easier to install than than the working man software and the best part is hes giving it away free. Thanks, its the best mod I have ever installed.(paid or free)
__________________
Keith
Reply With Quote
  #16  
Old 08-29-2009, 05:31 PM
 
chopperstyle chopperstyle is offline
 

Newbie
  
Join Date: Aug 2009
Posts: 5
 

Default Re: Endicia/Dazzle Export Function for Printing Labels

First I would like to say thank Ruberneck for your Dazzle script. It saves me countless hours of work. It works flawlessly except for one problem I discovered today. I logged into my store as a customer and went to their orders management page and I saw the dazzle buttons there. They have a print dazzle stamps and import tracking number button. How do I remove it from there but leave it in the admin area?

Thanks in advance.

Haven't heard from Ruberneck yet can anyone else help me with this. I have xcart
4.1.12
__________________
Keith
Reply With Quote
  #17  
Old 08-29-2009, 05:51 PM
 
carpeperdiem carpeperdiem is offline
 

X-Guru
  
Join Date: Jul 2006
Location: New York City, USA
Posts: 5,399
 

Default Re: Endicia/Dazzle Export Function for Printing Labels

Quote:
Originally Posted by chopperstyle
First I would like to say thank Ruberneck for your Dazzle script. It saves me countless hours of work. It works flawlessly except for one problem I discovered today. I logged into my store as a customer and went to their orders management page and I saw the dazzle buttons there. They have a print dazzle stamps and import tracking number button. How do I remove it from there but leave it in the admin area?

Thanks in advance.

Haven't heard from Ruberneck yet can anyone else help me with this. I have xcart
4.1.12

Wrap the button display inside this:

Code:
{if $usertype eq "A"} button code {/if}

That will only display the button code to admin users.
__________________
xcart 4.5.4 gold+ w/x-payments 1.0.6; xcart gold 4.4.4
Reply With Quote
  #18  
Old 08-29-2009, 05:58 PM
  rubberneck's Avatar 
rubberneck rubberneck is offline
 

Senior Member
  
Join Date: Feb 2003
Posts: 161
 

Default Re: Endicia/Dazzle Export Function for Printing Labels

Here's the fix that you need. Good catch.

In the coding in /skin1/main/orders_list.tpl, you need to change to match below:

New:
Code:
<br /> <br /> {if $usertype eq "A" or ($usertype eq "P")} <input type="button" value="Print Dazzle Stamps" onclick="ShowPrintForm()" /> &nbsp;&nbsp;&nbsp;&nbsp; <input type="button" value="Dazzle Tracking Numbers Import" onclick="ShowImportForm()" /> {/if} &nbsp;&nbsp;&nbsp;&nbsp; <!-- dazzle code -->


Original:
Code:
<br /> <br /> <input type="button" value="Print Dazzle Stamps" onclick="ShowPrintForm()" /> &nbsp;&nbsp;&nbsp;&nbsp; <input type="button" value="Dazzle Tracking Numbers Import" onclick="ShowImportForm()" /> &nbsp;&nbsp;&nbsp;&nbsp; <!-- dazzle code -->

Just adding an 'if' to check if it's an admin or provider.

-Jeff
__________________
--
Version 4.0.17 Gold
Version 4.1 Gold
Version 4.4 Gold
Reply With Quote
  #19  
Old 08-29-2009, 07:01 PM
 
chopperstyle chopperstyle is offline
 

Newbie
  
Join Date: Aug 2009
Posts: 5
 

Default Re: Endicia/Dazzle Export Function for Printing Labels

Worked perfectly! You guys are pure genius. Not only did you solve my problem but you gave me the answer in a way that a none programmer could understand it. Rubberneck its not much but PM me your PayPal email and I will send you $20 by PayPal just to say thanks. The working man script is the only other dazzle script I know of thats affordable ($99) and his video says it will take at least a few hours to install. I installed your script in less than 10 minutes and its free. Great job!
__________________
Keith
Reply With Quote
  #20  
Old 11-03-2009, 06:07 AM
 
dluciew dluciew is offline
 

Newbie
  
Join Date: Sep 2009
Posts: 6
 

Default Re: Endicia/Dazzle Export Function for Printing Labels

Can anyone help me with this? We've loaded the changes to our X-cart. I now see the 2 buttons "Print Dazzle Stamps" and "Dazzle Tracking Number Import". Now, in order to get the orders into Dazzle, I should select the order and what should I select for the "file format for export"? The options I have is standard, 4.0 compatable cvs tab-delimited, 4.0 compatable csv semicolon delimited, 4.0 compatable csv comma delimited? Am I missing something?

Thanks for your help,
Donna
__________________
4.2.2
Reply With Quote
Reply
   X-Cart forums > X-Cart 4 > Third Party Add-Ons for X-Cart 4



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -8. The time now is 11:10 AM.

   

 
X-Cart forums © 2001-2020