• Welcome to KonaKart Community Forum. Please login or sign up.
 
June 29, 2025, 01:59:58 pm

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 - vetri

1
Hi,

I am trying to save creditcard information in Konakart-System using kkAppEng.getEng().setCreditCardDetailsOnOrder(kkAppEng.getSessionId(), order.getId(), cc); in PaymentAction.java , I see that in Konakart-System's db it is getting saved in E1,E2....E4 fields, It encrypts and gets saved.

My Question is How do i retrieve this card information for my later use. I see that in OrderMgrIf doesn't have Access to E1,E2,..... fields Even if retrieve them how do i decrypt them?

I need this Card information for later use.

Is there any way to store CreditCard Info in respective fields cc_cvv,cc_owner in Action Class. ( When I set order's cccvv, ccexpire,etc in order it doesn't update order with these values)

Update Order                   
                                             kkAppEng.getEng().updateOrder(kkAppEng.getSessionId(), order.getId(),
                                             com.konakart.bl.OrderMgr.PAYMENT_RECEIVED_STATUS, /* customerNotified */
                                             sendEmail, comment, updateOrder);
In this case it just updates order status.

Thanks in Advance,
Vetri.
2
I get it. Thanks Ming,
If there is an any exception from Tax Cloud or In authentication User should not be able to confirm his order without tax calculation. I am able to catch exception, How can i reflect the same in UI? like alert message saying custom message or default konakart error alert.
Structure
try{
throw Exception / kkAdminException/ kkException
}
catch (Exception e)
{
throw Exception
}

But In UI Tax module doesn't show up with any error msg i am able to get this in console.
How can I achieve this?

Thanks,
Vetri
3
Hi ,
I am getting this error which creating custom TaxCustomCloud by copying the dir from TaxCloud in custom/modules folder am i missing some thing here?
I am able to see this module in KonakartAdmin console even if it is enabled for the first time the sort order shows a red dot when i click on the module then it displays the sort number

(?:refreshConfigs:?) Could not instantiate the OrderTotal Module com.konakart.bl.modules.ordertotal.taxcustomcloud.TaxCustomCloud in order to refresh its configuration
com.konakart.app.KKException:
USPS could not verify the address: 560 Test Address
USPS could not verify the city: Tallahassee
USPS could not verify the state: FLORIDA
USPS could not verify the zip: 33139

   at com.konakart.bl.modules.ordertotal.taxcustomcloud.TaxCustomCloud.validateAddress(Unknown Source)
   at com.konakart.bl.modules.ordertotal..taxcustomcloud.TaxCustomCloud.setStaticVariables(Unknown Source)
   at com.konakart.bl.modules.ordertotal.OrderTotalMgr.refreshConfigs(Unknown Source)
   at com.konakart.app.KKEng.updateCachedConfigurations(Unknown Source)
   at com.konakart.bl.EngineConfigCacheUpdater.updateConfigs(Unknown Source)
   at com.konakart.bl.EngineConfigCacheUpdater.run(Unknown Source)
4
Thanks for the reply ming.
5
Hi All,
 
    I am new to konakart, and was exploring on customization of konakart.
    I am much more interested in Tax cloud module of Order Total. Is there a way to install any other module like Tax Could in Order Total. Is it the same way as adding Custom payment Gateway in payment module?

   Thanks in Advance.