• Welcome to KonaKart Community Forum. Please login or sign up.
 

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - Expert Review

1
I mean Multi-Vendor Functionality available in community version.
2
need vendor panel in community version.

is it available in community ?
3
You have used Rest Service in Konakart if its helpful
4
First Of  All You Have learn Struts2.X
Very Helpful In konakart


5
Programming of KonaKart / Re: DB table for addresses
April 12, 2014, 02:47:05 pm
U have access Custom table

<%@page import="com.konakart.db.KKBasePeer"%>
List<Record> result= KKBasePeer.executeQuery("Select * from customtable");
for (Record rs: result) {
   int x= rs.getValue("colName1").asInt();
   String y= rs.getValue("colName2").asString();
                  
}
6
But what type changes,U read All docs step by step
http://www.konakart.com/docs/EngineCustomization.html
7
 When I Have To add New Customer at that time  Billing And Shipping Address Unique  both have Unigue Id
Have any option Konakart ?
8
How to Manage Billing And Shipping Address And Customer Address Separete ?
9
I am trying to integrate Custom Payment Fee with my konakart store.  I have so far created two classee:

com.konakartadmin.modules.ordertotal.payment.Payment
com.konakart.bl.modules.ordertotal.payment.Payment


I have also modified the konakartadmin.properties to include Payment  like this:
konakart.modules.ordertotal=BuyXGetYFree GiftCertificate ProductDiscount RewardPoints RedeemPoints ShippingDiscount Shipping SubTotal Tax TaxCloud Total TotalDiscount FreeProduct Payment


I created the jars and put them inside both konakart and konakartadmin web apps, I restarted Tomcat and I was able to view and initialize the OrderTotal module in the konakart admin application.
But when I call the methods:


I'm receiving this error in console:


com.konakart.bl.modules.ordertotal.ot_payment.Ot_payment
     [exec] java.lang.ClassNotFoundException: com.konakart.bl.modules.ordertotal.ot_payment.Ot_payment
     [exec] at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1387)
     [exec] at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1233)
     [exec] at java.lang.ClassLoader.loadClassInternal(Unknown Source)
     [exec] at java.lang.Class.forName0(Native Method)
     [exec] at java.lang.Class.forName(Unknown Source)
     [exec] at com.konakart.bl.modules.ordertotal.OrderTotalMgr.getOrderTotalModuleForName(Unknown Source)


It seems that konakart is looking for a class called Ot_payment, but inside my code there is no class with this name.