• Welcome to KonaKart Community Forum. Please login or sign up.
 
June 01, 2024, 02:56:26 am

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.

Topics - rkonakart

1
Installation of KonaKart / Mobile version
October 07, 2013, 12:14:56 pm
Dears,

From where can I download the mobile version? I downloaded now version 7.1 but can i know how can I run the mobile version or get the changes in the jsps?

Also You will provide version 7.1 with struts 1 or not?
2
Dears,

Now I am upgrading from version 6.2 to version 6.5 using struts 1 as I cannot change the framework and there is no need in that.

But unfortunately I found that there are some classes and methods that they are totally removed from the new jars example:

1-  com.konakart.al.CartItem (deleted)

2-  Creating new instance from "KKAppEng" has been changed and I must add something to the constructor which is not logic as we needed to use it without setting the session or engineconfigif ;      

3- kkAppEng.getCustomerMgr().emptyZonesForRegistration();  (deleted)

4- com.konakart.al.Constants.  (deleted)

And much more? What shall I do while I a using these classes, I don't know why you remove classes ?
Please help
3
Dears,

I need to integrate with Facebook in the login? Is it possible?

Required scenario: When I login to Facebook then try to access my EShop, found myself already logged. (SSO)
4
Dears,

When I created new "Manufacturer" with this name "Test manufacturer" I got it as "Test ma...acturer".

Could you please help me in that?
5
Dears,

I want to know while the admin sends mail to customers, what did he choose? Did he choose to "Email to all customers" or "Newsletter" or "Product Notifications"?

As i want to add some logic in "sendTemplateEmailToCustomers1WithOptions" in each case.

Appreciate your quick response :)
6
Dears,

I want to know which method is called while retrieving the orders in the admin.

I know that the first time we pressed on "Orders" panel, the "getOrdersLite" is called but when we navigate through the admin then back to "Orders" panel, which method is called?

Appreciate your quick response
7
Dears,

I want to set option price dynamically. I am trying to set it by this way but it is not working:

In AddToCartSubmitAction:

OptionIf[] opts = null;
            if (acf.getNumOptions() > 0)
            {
                OptionIf[] localOpts = new OptionIf[acf.getNumOptions()];
                for (int i = 0; i < acf.getNumOptions(); i++)
                {
                    OptionIf o = new Option();
                    o.setId(acf.getOptionId(i));
                    o.setValueId(acf.getValueId(i));

                    o.setPrice0(new BigDecimal(acf.getSelectedRatePlanPrice()));
                    o.setPriceExTax(new BigDecimal(acf.getSelectedRatePlanPrice()));
                    o.setPriceIncTax(new BigDecimal(acf.getSelectedRatePlanPrice()));
                    localOpts = o;
                }
                opts = localOpts;
            }

any help plssss
8
Dears,

I need to get logged in user and language in admin through web application used in custom panels.

To be more clear: I will use the admin custom panels to show some features for admin depending on logged in user also depending on selected admin language.

Appreciate your help
9
Dears,

while I am trying to register using code generated from"make kkeclipse" project, I got the following exception:

org.apache.commons.beanutils.ConversionException: No value specified for 'Calendar'

Any help pls
10
Dears,

I added new language "Arabic" to the admin and when I try to make an order, the order total now shown and I found that it is not in the returned model.

Please help.

Appreciate your quick response.
11
Dears,

We are facing a big issue in download invoice on ORACLE application server. The file size always 0bytes. It is an urgent case.

Appreciate your quick helppppppppp

12
Dear All,

I have mulit-store environment with shared products & customers. I need to change the storeId before saving the order into the database.

I know that I have to change in "OrderIntegrationMgr" but when I checked the place where the storeId is set in the kkEng, I found that kkEng take StoreInfo(which includes storeId) in its constructor.

I also tried to create new EngineConfig and set storeId in it but I want to set this EngineConfig in the kkEng without creating new engine &  before saving the order, I don't know how???

After searching I found some replies that I have to save the order with initial storeId then update the order tables with the required ID, is it the only solution for this??????? If so please mention exactly the required tables to update in it.

Appreciate your quick response as it is really urgent case for us.