Page 4 of 8 FirstFirst ... 23456 ... LastLast
Results 31 to 40 of 79
  1. #31
    Join Date
    Mar 2007
    Posts
    251
    Plugin Contributions
    6

    Default Re: Sage Line 50 Zen export module

    Can't confirm, however if you have 2008 version please pm me and I can most likely make changes for you.

    kind regards

    James

  2. #32
    Join Date
    Oct 2007
    Location
    Edinburgh, Scotland
    Posts
    243
    Plugin Contributions
    1

    Default Re: Sage Line 50 Zen export module

    Hey James,

    OK great thanks. I'm waiting on the disc so will PM you if i get any troubles.

    Thanks,
    Fergus

  3. #33
    Join Date
    Oct 2006
    Location
    Suffolk UK
    Posts
    55
    Plugin Contributions
    1

    Default Re: Sage Line 50 Zen export module

    Hi James :) nice mod by the way...

    I have installed the mod and get exports ok:)

    I am interested, and have emailed you, reference the bespoke app for upload and download etc ...


    I also have an issue:-

    When looking at sales.csv file

    I get codes 1250 as i have setup in config - this is correct for Paypal / credit cards

    I get 999 instead of 1200 for cheque / money order - this is not correct and does not agree with my config, which is set as 1200 (this i wil need to change as this nominal code is for bank account in my sage)

    Can you advise on this please.?

    Also i would like to be able to assign new codes for different payment methods... is this something you can advise on or point me in the right direction with files / code etc ???

    Kind regards and thanks in advance,

    Jamie 2K

  4. #34
    Join Date
    Oct 2006
    Location
    Suffolk UK
    Posts
    55
    Plugin Contributions
    1

    Default Re: Sage Line 50 Zen export module

    just a little addition to my last post...

    Can you explain the import process you use, as the file i have is not importing correctly when run against a customer record import.

    regards

    Jamie 2K

  5. #35
    Join Date
    Mar 2007
    Posts
    251
    Plugin Contributions
    6

    Default Re: Sage Line 50 Zen export module

    Quote Originally Posted by jamie2k View Post
    Hi James :) nice mod by the way...

    I have installed the mod and get exports ok:)

    I am interested, and have emailed you, reference the bespoke app for upload and download etc ...


    I also have an issue:-

    When looking at sales.csv file

    I get codes 1250 as i have setup in config - this is correct for Paypal / credit cards

    I get 999 instead of 1200 for cheque / money order - this is not correct and does not agree with my config, which is set as 1200 (this i wil need to change as this nominal code is for bank account in my sage)

    Can you advise on this please.?

    Also i would like to be able to assign new codes for different payment methods... is this something you can advise on or point me in the right direction with files / code etc ???

    Kind regards and thanks in advance,

    Jamie 2K

    Hi Jamie,

    Haven't got your email, perhaps send again? Software makes life much easier and can be used directly from your desktop, so no need for accounts people to have to go onto your site.

    999 means that a code hasn't been specified for that particular transaction type, check your settings again, if still probs i can have a look further.

    Yep you can add new codes for different payament types, look in the sage.php file around line 290, should have the following code

    Code:
    ############################################### identify payment type
    
    $paytype=$orders->fields['payment_method'];
    
    switch ($paytype) {
    case "Paypal IPN":
        $purchacc = SAGE_PAYPAL;
        break;
    case "Paypal":
        $purchacc = SAGE_PAYPAL;
        break;
    case "Credit Card":
      $purchacc = SAGE_PAYPAL;
        break;
    case "Credit Card / Paypal":
      $purchacc = SAGE_PAYPAL;
        break;
    case "Credit Card/ Paypal":
      $purchacc = SAGE_PAYPAL;
        break;
    case "Cheque/Money Order":
      $purchacc = SAGE_CHEQ;
        break;
    default: 
    $purchacc = 999;
    }
    Each of the case types above in the speech marks is case and character sensitive, so be care to include it EXACTLY how it is on your setup, spaces and all!

    To add more case statements for each of your types.
    i.e if you have a payment type "apples", and code in sage is 1205 then add

    Code:
     case "apples":
       $purchacc = 1205;
         break;
    before the line

    Code:
     default: 
     $purchacc = 999;
    Hope that helps.


    Quote Originally Posted by jamie2k View Post
    just a little addition to my last post...

    Can you explain the import process you use, as the file i have is not importing correctly when run against a customer record import.

    regards

    Jamie 2K
    If you're just doing sales, then import as "audit trail transaction" file in sage
    If doing stock then it is "stock transactions"

    Kind regards

    James

  6. #36
    Join Date
    Feb 2008
    Posts
    13
    Plugin Contributions
    0

    Default Re: Sage Line 50 Zen export module

    Hi James

    Thanks for creating this, I have one problem tho - after I have installed the two mods - the configuration files are blank?

    I can see the heading and a table with Title, Value & Action, but nothing underneath? Any ideas why this would be happening?

    I have tried uninstalling and reinstalling, but no luck.

    Thanks

    Claire

  7. #37
    Join Date
    May 2007
    Posts
    42
    Plugin Contributions
    0

    Default Re: Sage Line 50 Zen export module

    Hi there,

    Just a quick question before i install this, does it update stock levels ?

    Thanks

    Shane

  8. #38
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,569
    Plugin Contributions
    25

    Default Re: Sage Line 50 Zen export module

    It's an export, so it doesn't update anything. Rather it creates a file that you can import into Sage.
    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

  9. #39
    Join Date
    May 2007
    Posts
    42
    Plugin Contributions
    0

    Default Re: Sage Line 50 Zen export module

    I understand that, what im asking is if it exports stock levels, ie stock qty from zen cart. So on import it updates the stock levels in sage ?

    Thanks

    Shane

  10. #40
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,569
    Plugin Contributions
    25

    Default Re: Sage Line 50 Zen export module

    If you use "Sage Line 50 Integration - Stock" then yes, it exports stock levels, with the intention of replacing whatever values you have in your Sage Line 50 database.
    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

 

 
Page 4 of 8 FirstFirst ... 23456 ... LastLast

Similar Threads

  1. Interlink /Geopost Ship@Ease Export Module for Zen
    By Calljj in forum Addon Shipping Modules
    Replies: 21
    Last Post: 15 Apr 2016, 03:29 PM
  2. Sage Line 50
    By Nick1973 in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 22 Aug 2011, 10:23 AM
  3. Replies: 0
    Last Post: 29 May 2010, 08:42 PM
  4. Candapost Desktop EST Export module - does not export
    By oxxyfx in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 6 Sep 2009, 02:11 PM
  5. Sage Export
    By Thieving_Gypsy in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 18 Jan 2007, 11:49 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg