Portal Engine Questions on portal engine and web parts.
Version 6.x > Portal Engine > Booking System Payment View modes: 
User avatar
Member
Member
Aashish khandelwal - 4/20/2012 8:22:55 AM
   
Booking System Payment
We are building system where users can register an event and pay its fee via credit/debit card.

Scenerio : User will view forthcoming events and clicks on register. On register button click, he must be redirected to gateway where amount will be debited from his account.

Please suggest how it is possible. Is there any webpart that can achieve this functionality?

Regards
Aashish Khandelwal
http://technoscatter.blogspot.com

User avatar
Kentico Support
Kentico Support
kentico_radekm2 - 4/22/2012 4:27:36 PM
   
RE:Booking System Payment
Hello.

Kentico CMS 6.0 provides several kinds of products, which is significant improvement compared to previous releases.

Now, you can choose from:

Standard product
Membership
E-product
Donation
Bundle


Could you please consult particular types and see, which of them would be suitable for you? Thank you.

Best Regards,
Radek Macalik

User avatar
Member
Member
Aashish khandelwal - 4/23/2012 1:18:18 AM
   
RE:Booking System Payment
We want to sell Events. These events will be generated by Kentico Booking System (Events).

Regards
Aashish Khandelwal
http://technoscatter.blogspot.com

User avatar
Kentico Support
Kentico Support
kentico_jurajo - 4/23/2012 1:22:43 AM
   
RE:Booking System Payment
Hi,

Please see this KB article.

Best regards,
Juraj Ondrus

User avatar
Member
Member
Aashish khandelwal - 4/23/2012 6:34:11 AM
   
RE:Booking System Payment
Well Thanks Jurajo!!!

Now, what i need is :

1) I don't want system to ask Delivery and Shipping Address. How to configure this?


Regards
Aashish Khandelwal

User avatar
Kentico Support
Kentico Support
kentico_jurajo - 4/25/2012 1:21:00 AM
   
RE:Booking System Payment
Hi,

You need to customize the checkout process and removethat step. However, these information are required, so you need to supply at least some fake shipping information in the code behind in the previous or next step.

Best regards,
Juraj Ondrus

User avatar
Member
Member
Aashish khandelwal - 4/23/2012 6:51:12 AM
   
RE:Booking System Payment
As per the Article 'Copy content of the WebProject folder to your web project folder.'

The copied files and folders needs to be paste in application root ?? Please confirm

User avatar
Kentico Support
Kentico Support
kentico_jurajo - 4/25/2012 1:22:00 AM
   
RE:Booking System Payment
Hi,

I do not know where your web project is - whether it is the web site root or in some subfolder. Just copy the file to the web project (root of the Kentico site).

Best regards,
Juraj Ondrus

User avatar
Member
Member
Aashish khandelwal - 4/23/2012 7:11:21 AM
   
RE:Booking System Payment
One more thing i noticed is that : I have set capacity to 5 but more that 5 users are able to add event to cart. How to restrict them from exceeding the event attendees limit?

Is it possible to add an event on clicking the register button instead of Add to Cart button?

User avatar
Kentico Support
Kentico Support
kentico_jurajo - 4/25/2012 1:22:54 AM
   
RE:Booking System Payment
Hi,

Yes, it is possible and it is up to you. You will need to add the logic to the button click which will check the capacity and do appropriate action.

Best regards,
Juraj Ondrus

User avatar
Member
Member
Aashish khandelwal - 4/23/2012 8:45:28 AM
   
RE:Booking System Payment
I have used the following transformation :

<%@ register src="~/CMSModules/Ecommerce/Controls/ProductOptions/ShoppingCartItemSelector.ascx"
tagname="CartItemSelector" tagprefix="uc1" %>
<h1>
<%# Eval("EventName") %></h1>
<table width="100%">
<tr valign="top">
<td>
<%# Eval("EventDetails") %>
</td>
</tr>
<tr>
<td>
<table>
<tr valign="top">
<td width="150">
<strong>Event capacity:</strong>
</td>
<td>
<%# IfEmpty(Eval("EventCapacity"),"N/A",Eval("EventCapacity")) %>
</td>
</tr>
<tr valign="top">
<td width="150">
<strong>Event location:</strong>
</td>
<td>
<%# Eval("EventLocation") %>
</td>
</tr>
<tr valign="top">
<td>
<strong>Event date:</strong>
</td>
<td>
<%# GetDateTimeString(Eval("EventDate"), true) %>
</td>
</tr>
</table>
</td>
</tr>
</table>
<div class="addToCart contentBox">
<uc1:cartitemselector id="cartItemSelector" runat="server" skuid='<%# ValidationHelper.GetInteger(Eval("SKUID"), 0) %>'
skuenabled='<%# ValidationHelper.GetBoolean(Eval("SKUEnabled"), false) %> ' addtocartimagebutton="addtocart.gif"
addtocartlinktext="Add to shopping cart" showproductoptions="true" showdonationproperties="true"
showunitstextbox="true" />
<div class="addToWishlist">
<%# EcommerceFunctions.GetAddToWishListLink(Eval("NodeSKUID"), "~/App_Themes/CorporateSite/Images/addtowishlist.png") %>
</div>
</div>


but on clicking 'Add to Cart' link on this page http://www.takeachallenge.org/Events/RelayGB.aspx in IE, it is redirecting to http://www.takeachallenge.org/Events/. In FF and Chrome, it is working fne.


Please help !!!!!!

User avatar
Kentico Support
Kentico Support
kentico_jurajo - 4/25/2012 1:24:54 AM
   
RE:Booking System Payment
Hi,

It is working fine on my end in all browsers. Have you changed anything? Have you tried it also on other computers?

Best regards,
Juraj Ondrus

User avatar
Member
Member
Aashish khandelwal - 4/25/2012 1:48:28 AM
   
RE:Booking System Payment
In IE7,8,9, on clicking 'Add to shopping Cart' Button, it is redirecting user to 'http://www.takeachallenge.org/Events/' whereas in FF and chrome, it is not redirecting user anywhere and simply adding a product to a cart.


Regards
Aashish Khandelwal

User avatar
Member
Member
Aashish khandelwal - 4/25/2012 1:56:46 AM
   
RE:Booking System Payment
Hi

Many thanks. I missed configuring Shopping Cart URL. Now, its working fine.

Regards
Aashish Khandelwal
http://technoscatter.blogspot.com

User avatar
Member
Member
Aashish khandelwal - 4/24/2012 3:38:11 AM
   
RE:Booking System Payment
Hi

When i can expect the reply against my queries?

Regards
Aashish Khandelwal

User avatar
Kentico Support
Kentico Support
kentico_jurajo - 4/25/2012 1:27:16 AM
   
RE:Booking System Payment
Hi,

As you can see at the very top of each thread, we do not guarantee any response time. We are checking the forums as often as possible anyway. However, if you want to have a timely response, please use our e-mail/phone support.

Best regards,
Juraj Ondrus