• Welcome to KonaKart Community Forum. Please login or sign up.
 
October 18, 2024, 07:08:50 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.

Messages - manue

1
hello friends!!!

I'm trying to show more information in editcartbody.jsp. In my test,  I have a trigger to insert values in the customers_basket table, for example in custom1.
The point is that item.getCustom1() returns always null.

item is a com.konakart.al.CartItem object.


Can you help me?

best regards.
2
Programming of KonaKart / update review
February 05, 2010, 12:58:45 pm
Hello friends!!

   I'm trying to update an existing review setting values to its custom fields.

   I have created a new action similar to com.konakart.actions.WriteReviewSubmitAction to do:
            * write a new review and get its ID:
int reviewId = kkAppEng.getReviewMgr().writeReview(wrf.getReviewText(), wrf.getRating(), custId);

            * with the ID we want to obtain a ReviewIf object
ReviewIf review = kkAppEng.getEng().getReview(reviewId);

            * to set a new value on a custom field
review.setCustom1("1");

            * AND SAVE THE CHANGES   (????????????)

How can I do it?.


That's my actually code:

            WriteReviewForm wrf = (WriteReviewForm) form;

            int reviewId = kkAppEng.getReviewMgr().writeReview(wrf.getReviewText(), wrf.getRating(), custId);
            ReviewIf review = kkAppEng.getEng().getReview(reviewId);

            review.setCustom1("1");

           
            kkAppEng.nav.set(getCatMessage(request, "header.reviews"), request);
            return mapping.findForward("WriteReviewSubmit");


             

Best regards.






3
hello friends!
I'm using a konakart api for recover the reviews of customers:

descriptor = new AdminDataDescriptor();
AdminReviews  adminReviews;
descriptor.setOrderBy(AdminDataDescriptor.ORDER_BY_DATE_ADDED_ASCENDING);
adminReviews = apiKonakart.getAllReviews(sessionId, descriptor);

but I get the same result when I use ORDER_BY_DATE_ADDED_ASCENDING or DESCENDING, any idea??

thanks!
4
hello friends!!!

I want to display in cart body and in Order Confirmation pages the next information,when i display a product's attributes, the value of this attributes. for example :

In my product detail body I have:

name                                     price with iva
description

Available Options:
attributes (color, canon, etc)    list of attributes values

And in cart body i have :

check remove or not          product data               product name                   quantity      price total with iva
                                                                      - attribute1 name
                                                                      - attribute2 name

I want to show the value next to the attribute name of this in cart body and in order confirmation. How can i do it?

thanks a lot!
5
RESOLVED  ;D
6
hello friends!!!

Do you know how I can display  promotions in the pages of users? For example, I want to show them if they have an active promotion
Is there any way to send users an email when a promotion is first turned on?

thanks!!!
7
Hello friends!!

I have problems using coupons and promotions. I try define coupons and assign to promotions, but when users enter the coupon code in Coupon Entry Field and then click update, the page is the same and total price haven't discount. I try to define one promotions without coupon and the result is the same.

In table orders promotion_ids and coupon_ids is null.

Any ideas?
8
For products I can associate list os merchandising (up sell products, cross sell products,etc ) but , can I associate types of merchandising for categories??

And, What´s order of list of up sell products?? Is the same that best sellers??

thanks!!
9
Configuration of KonaKart / dependent products list
December 10, 2009, 12:45:20 pm
Can you show me one example of use case of dependent product list?

Thanks!
10
Programming of KonaKart / Re: problem edit order
December 04, 2009, 11:25:55 am
the UPDATE sentence is : UPDATE orders SET orders_status = 3 WHERE orders_id = 2;
and orders_id = 2 exists
11
Configuration of KonaKart / Re: 5th price for a product
December 04, 2009, 11:20:58 am
how can i do it?
12
Programming of KonaKart / problem edit order
December 04, 2009, 10:28:31 am
Hello! I have a problem when I try to change the orders_status from pending to delivered. the message is

There has been a problem....   
java.sql.SQLException: No data - zero rows fetched, selected, or processed

I try to change the status from mysql console with a UPDATE sentence, but the message is the same.

Can you help me?

Thanks!!