• Welcome to KonaKart Community Forum. Please login or sign up.
 
April 05, 2025, 05:12:44 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 - virtueed

1
Hi Ryan,
I've found a way to use only 1 action and 1 form bean to receive a submit from any of the forms in jsp. Form in the jsp can all have the same name and the same action. When a form is submitted the form bean associated with the action is populated correctly with the values inside the form. Than the trick is just to get the productId from the form bean and not from the engine:

Quoteb.setProductId(kkAppEng.getProductMgr().getSelectedProduct().getId());


to

Quoteb.setProductId(new Integer(acf.getProductId()).intValue());


In this way no matter what is the selected product you insert in the basket the product that has been submitted by the form.

Ciao,
Mirko.
2
Hi Ryan,
I was actually searching for a more efficient way to solve the problem but actually I've done as you suggested and it works. The only problem that I had was in the AddToCartSubmitAction.java where the productId is taken from the selectedProduct, like this:

Quoteb.setProductId(kkAppEng.getProductMgr().getSelectedProduct().getId());


I changed it, because I don't have a specific selected product, to:

Quoteb.setProductId(new Integer(acf.getProductId()).intValue());


where acf is:
Quote
AddToCartForm1 acf = (AddToCartForm1) form;
or
AddToCartForm2 acf = (AddToCartForm2) form;
or
...


based on the AddToCartForm submitted.

Thank you.

Ciao,
Mirko.



3
Hi,
I would like to have multiple AddToCartForm on the same page to let the customer add products to the cart from special offers pages. I've tried with the standard AddToCartForm but it messes up all the options value, I think because every form has the same name. Do you have any suggestion on the best way to do this. Just for information the number of products in those pages will be dynamic.

Thank you and best regards,
Mirko.
4
It works.

Thanks a lot.

Ciao,
Mirko.
5
Hi,
I'm getting a problem while trying to get the Manufacturer object of a product. Here is the code that I'm using:
Quote
KKEngIf engine = kkEng.getEng();
prod = engine.getProduct(kkEng.getSessionId(), prodId1, kkEng.getLangId());
ManufacturerIf manu1 = prod.getManufacturer();


Manu1 is null (no matter which is the product)!!! But if I use this code:

Quote
int manuId1 = prod.getManufacturerId();

I get a regular id value, corresponding to the right manufacturer.

The code is inserted in a jsp (is not an action). Can you please help me? I'm sure I'm doing something stupid but I cannot get rid of this problem myself.

thank you and best regards,
Mirko.
6
Installation of KonaKart / Re: OS X?
November 07, 2007, 07:05:54 am
I'm actually developing on OS X using MySQL and the 2.2.0.7 zipped version. It works fine without any problem. Just remember to unzip using BOMArchiveHelper and not Stuffit. JAVA_HOME is setted automatically and startkonakart.sh works perfectly. Remember to modify manually the properties files of konakart and konakartadmin.

Ciao,
Mirko.
7
Programming of KonaKart / Re: kkimport problem
November 06, 2007, 09:01:46 pm
Hi Brian,
thank you for your quick reply.

Unfortunately I've already deleted the other three languages and Italian has id=4. I will try to change the id value directly in the db.

Ciao,
Mirko.
8
Programming of KonaKart / kkimport problem
November 06, 2007, 05:44:14 pm
Hi,
first of all let me say that konakart is really Great! I'm using it for a new eshop in Italy (not yet online) and it is working perfectly.

I've just started to do some test to import product using kkimporter but I get this error:
QuoteERROR (?:doImport:?) The attribute v_products_name_1 must have a minimum length of 1. The value we have found = null. The offending line is :


Now, the error is clear but actually I don't have the v_products_name_1 field because I've added Italian as the 4th language and I've disabled the other 3 languages (en, de, es).
The file that I'm using to import product has been generated form the kkexport engine, in which after the field "v_products_image4" I have directly "v_products_name_4". Here is an example form the header row:
Quotev_products_image v_products_image2 v_products_image3 v_products_image4 v_products_name_4 v_products_description_4


Should I insert in the header row v_products_name_1 and v_products_name_2 and v_products_name_3 and insert fake values? Is there any configuration parameter to work on to solve the problem?

Thank you for you answers.

Regards.