Zen Cart Logo
Forums / Built-in Shipping and Payment Modules / Can somoene help with an authorize.net question

Can somoene help with an authorize.net question

Locked

Views: 1,734

Results 1 to 9 of 9
This thread is locked. New replies are disabled.
05 Dec 2009, 05:49
#1
pnkgirl25 avatar

pnkgirl25

New Zenner

Join Date:
Oct 2009
Posts:
20
Plugin Contributions:
0

Can somoene help with an authorize.net question

Hello,

I own an online rentals company. When a customer places an order I charge 50% of their total as a deposit. The balance is then billed once their order ships (usually 3 days prior to their event). How would I set this up in zencart if I use authorize.net?

Am I able to do this?

Thanks

07 Dec 2009, 20:57
#2
pnkgirl25 avatar

pnkgirl25

New Zenner

Join Date:
Oct 2009
Posts:
20
Plugin Contributions:
0

Re: Can somoene help with an authorize.net question

Hello,

I own a linen rental website. At checkout I need to only collect 50% of the balance form the customer. Is there a way to subtract 50% from the total without having to having the customer have to apply a coupon?

I would LOVE it if someone could show me how to do it like this:

Subtotal $100.00
Tax $50.00
Shipping $50.00

Total Deposit Amount Required: $100.00

Is this possible?

07 Dec 2009, 21:22
#3
niccol avatar

niccol

Totally Zenned

Join Date:
Apr 2009
Posts:
2,138
Plugin Contributions:
1

Re: Can somoene help with an authorize.net question

Here's a couple of ideas. Not sure whether they will suit you...

  1. use group pricing with a 50% group discount and add all your customers to that group. Hmmmm...

  2. Use the 'Sale' feature of Zen Cart. have a permanent 'sale of 50% for the whole store. Change all the wording of 'sale' to 'deposit' so that full price is displayed and 'deposit' is displayed ( instead of full price and sale price ). Then put in a big clear message on the shopping cart that what is being charged is just the deposit. This might work.

Just ideas...

07 Dec 2009, 21:32
#4
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Location:
Upstate NY
Posts:
21,876
Plugin Contributions:
8

Re: Can somoene help with an authorize.net question

Idea #2 sounds like a good approach which would cover the bases for you.
You could always use CSS to hide some of the "deposit" price/text if you don't want to show it everywhere (like product listings).

07 Dec 2009, 21:54
#5
pnkgirl25 avatar

pnkgirl25

New Zenner

Join Date:
Oct 2009
Posts:
20
Plugin Contributions:
0

Re: Can somoene help with an authorize.net question

PERFECT!!! Idea number 2 works great for me,

Thanks

07 Dec 2009, 23:47
#6
pnkgirl25 avatar

pnkgirl25

New Zenner

Join Date:
Oct 2009
Posts:
20
Plugin Contributions:
0

Re: Can somoene help with an authorize.net question

okay, one last question. I added this code ```php
$group_query = $db->Execute("select customers_group_pricing from " . TABLE_CUSTOMERS . " where customers_id = '" . (int)$_SESSION['customer_id'] . "'");
$group_discount = $db->Execute("select group_name from " . TABLE_GROUP_PRICING . " where group_id = '" . (int)$group_query->fields['customers_group_pricing'] . "'");

		$this->output[] = array('title' => $this->title . ' - ' . $group_discount->fields['group_name'] . ':',
		'text' => '-' . $currencies->format($od_amount['total'], true, $order->info['currency'], $order->info['currency_value']), 'value' => $od_amount['total']);
08 Dec 2009, 08:58
#7
niccol avatar

niccol

Totally Zenned

Join Date:
Apr 2009
Posts:
2,138
Plugin Contributions:
1

Re: Can somoene help with an authorize.net question

Right. Well, a bit more context would help. Like where you have added that code :-)

But I suspect that if you delete the bits in red it might work for you:

            $this->output[] = array('title' => $this->title . ' - ' . $group_discount->fields['group_name'] . ':',
            'text' => '-' . $currencies->format($od_amount['total'], true, $order->info['currency'], $order->info['currency_value']), 'value' => $od_amount['total']);  
15 Dec 2009, 14:44
#8
pnkgirl25 avatar

pnkgirl25

New Zenner

Join Date:
Oct 2009
Posts:
20
Plugin Contributions:
0

Re: Can somoene help with an authorize.net question

I use authorize.net. I'm still in the testing stages on my zencart store but I have a question regarding authorize and capture.

I own a rental company. Customer will use our zencart site to place orders for rental items. I would like to authorize their card for the full amount however only capture 50% of the money.

The flip side is I don't want to keep the authorization on their card for too long since most of our orders are for large amounts and the actual capture won't be done for 2-3 months later.

Am I able to authorize the full amount but then go in and only capture 50% then before the order ships capture the other 50%?

Any help on this at al would be GREAT!

09 Jan 2010, 22:57
#9
divavocals avatar

divavocals

Totally Zenned

Join Date:
Jan 2007
Location:
Los Angeles, California, United States
Posts:
10,011
Plugin Contributions:
3

Re: Can somoene help with an authorize.net question

Pnkgirl25:

I use authorize.net. I'm still in the testing stages on my zencart store but I have a question regarding authorize and capture.

I own a rental company. Customer will use our zencart site to place orders for rental items. I would like to authorize their card for the full amount however only capture 50% of the money.

The flip side is I don't want to keep the authorization on their card for too long since most of our orders are for large amounts and the actual capture won't be done for 2-3 months later.

Am I able to authorize the full amount but then go in and only capture 50% then before the order ships capture the other 50%?

Any help on this at al would be GREAT!Some variation of this might be the answer:
https://www.zen-cart.com/tutorials/index.php?article=164