Page 1 of 2 12 LastLast
Results 1 to 10 of 17
  1. #1
    Join Date
    Jan 2008
    Location
    Chevreuse, France
    Posts
    273
    Plugin Contributions
    0

    Default Receive partial payment upon order

    Hi,

    The title says it all. I sell relatively expensive products which cannot be delivered until about two months after the order. So, I can only receive a deposit of, say, 30% of the total when the order is placed and receive the rest when the goods are despatched. Can this be done with Paypal ?

    Cheers

    Pete

  2. #2
    Join Date
    Jun 2004
    Posts
    613
    Plugin Contributions
    0

    Default Re: Can Paypal split a payment into three ?

    paypal can do recurring payments but I'm not sure how you would do it through zen unless the newer paypal modules can cope with it

  3. #3
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default Re: Can Paypal split a payment into three ?

    You could set up a product...price it by attributes
    i.e.
    Deposit 1
    Deposit 2
    Deposit 3
    ZenCart does not currently have paypal recurring
    payment option though there is a mod that enables part payment
    for credit cards
    http://www.zen-cart.com/index.php?ma...roducts_id=588
    HTH

  4. #4
    Join Date
    Jan 2008
    Location
    Chevreuse, France
    Posts
    273
    Plugin Contributions
    0

    Default Re: Can Paypal split a payment into three ?

    Quote Originally Posted by misty View Post
    You could set up a product...price it by attributes
    i.e.
    Deposit 1
    Deposit 2
    Deposit 3
    ZenCart does not currently have paypal recurring
    payment option though there is a mod that enables part payment
    for credit cards
    http://www.zen-cart.com/index.php?ma...roducts_id=588
    HTH
    Yes, this could be the answer. I am thinking of using the basic Business account + IPN + payments by email. This would allow me to *grab* 30% when the goods are ordered and then ask the customer to settle the rest when the goods are ready. At the moment, on my (not Zen Cart) site, I use the French banks system which allows me to debit my clients although I don't see their credit card details. This is ok in that I can initiate the debit myself but its a (major) pain to set up.

    Cheers

    Pete

  5. #5
    Join Date
    Jan 2008
    Location
    Chevreuse, France
    Posts
    273
    Plugin Contributions
    0

    Default Receive partial payment upon order

    Hi,

    I've looked eveywhere for this and there doesn't appear to be a simple solution. I'm currently looking at Paypal as the payment method. It appears to work well. However, I only want to send to Paypal 30% of the amount of the order when the total amount of the order exceeds €200. This is what I have on my existing - Interakt - site and this was achieved by modifying the PHP code in the checkout payment method page. The code was/is :

    echo ' <input type="hidden" name="amount" value="';
    if($row_rs[$kartProps['Korders']['orders']['amount']] > 200) {
    echo str_replace('.', '', number_format(transformPrice($row_rs[$kartProps['Korders']['orders']['amount']
    ]*0.30, etc, etc.

    Surely this can be done in Zen Cart ?

    Cheers

    Pete

  6. #6
    Join Date
    Jan 2008
    Location
    Chevreuse, France
    Posts
    273
    Plugin Contributions
    0

    Default Deposit on order

    Hi,

    I've looked everywhere for this and apparently it doesn't exist in Zen Cart : all I want is to be able to bill clients who order on my site 30% of the order total. So Paypal receives a debit for 30% and the remaining 70% I ask the customer to pay by email within Paypal's site. I cannot by law bill my clients 100% of the amount due. This appears to be so simple I wonder why it doesn't already exist !

    Pete

  7. #7
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,513
    Plugin Contributions
    126

    Default Re: Deposit on order

    One solution: use the invoice contribution, then send them a paypal invoice for 30% when you get an order.
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  8. #8
    Join Date
    Jan 2004
    Posts
    66,444
    Plugin Contributions
    279

    Default Re: Receive partial payment upon order

    If *ALL* you want to do to Zen Cart is have it collect *ONLY* 30% of the order total, you can make a similar code-edit in your PayPal module as you did in your other module.

    That will cause Zen Cart to only ask PayPal for the single 30% payment.

    It will not ever collect the remaining 70%.
    It will likely throw your order details off kilter though.
    And will prevent IPNs from working properly, since the transaction amount will never match the order amount.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  9. #9
    Join Date
    Jan 2004
    Posts
    66,444
    Plugin Contributions
    279

    Default Re: Receive partial payment upon order

    You could instead hire someone to write a discount order-total module that discounts 70% off the order amount, and describes the discount as "To Be Paid Later", and then sends the remaining amount to be paid immediately via PayPal.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  10. #10
    Join Date
    Jan 2008
    Location
    Chevreuse, France
    Posts
    273
    Plugin Contributions
    0

    Default Re: Receive partial payment upon order

    I'll have a look at the invoice module and see whether that could de the trick. I'll have to have another look at the Paypal module to see where I can limit the initial payment to 30%. I couldn't see it when I first looked (and I'm not at the office today). Zen Cart Admin doesn't have to manage the rest of the payments - my existing site doesn't either - and, unless I've not understood, I can use Paypal's email payment facility to ask the customer to pay the remaining 70% when the goods are ready to be despatched.

    Cheers

    Pete

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v150 Partial Payment
    By hash in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 20 Jul 2012, 08:28 PM
  2. Order status after receive payment
    By kathyk in forum PayPal Website Payments Pro support
    Replies: 1
    Last Post: 4 Jun 2010, 03:06 AM
  3. Paypal issue, receive payment but no order, curltest fine but ipncheck fails
    By spillaro in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 8 Apr 2008, 04:32 PM

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