• Welcome to KonaKart Community Forum. Please login or sign up.
 
April 28, 2024, 01:53:50 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 - Iruñea

31
Programming of KonaKart / control dependent products
December 10, 2008, 03:40:10 pm
     Hello,

     Ive two products A and B. If the customer buys the A product, I want to obligate him always to buy  also B. I edit the B product in konakartadmin and add the A product like a "dependent product".

Once this is made, does automatically konakart add the B product when a client buys an A product ??
In my case is not working and I want to know if this is something I have to program myself? or it should be working and then Ive q problem in my konakart application?

Thank you
32
Quote from: Iruñea on December 08, 2008, 02:40:00 pm
Thank you for the answer, I think Im gonna try the following:
Give the customer the possibility to add the paper product once he is in the digital product description. I want to show a checkbox.

Do you know which JSPs should I change to show this checkbox? And wich ActionClass in order to add the paper product to the cart? (if he has checked the checkbox:)

Thanks again !
33
Thank you for the answer, I think Im gonna try the following:
Give the customer the possibility to add the paper product once he is in the digital product description. I want to show a checkbox.

Do you know which JSPs should I change to show this checkbox? And wich ActionClass in order to add the paper product to the cart?

Thanks again !
34
Hello Konakarts,

Im dealing with Digital Downloads. Im trying to achieve the following:

The shop shells downloadable documents. So, all are set as 'digital download's.
When a client selects the product, he has to be able to select whether or not he wants to buy ALSO the paper version. If he don´t, no problem. editcartsubmit.do will look something like:
---------------------------------------------
Products                    Tax           Total
1 x   document1     10.00%   24.66 €

Sub-Total:                                   24.66 €
Tax Rate for Digital Downloads:   2.47 €
Total:                                   27.13 €
----------------------------------------------


BUT! if he do select the printed version, editcartsubmit.do has to look like:
---------------------------------------------
Products                         Tax        Total
1 x   document1         10.00%       24.66 €
      Printed document1       5.00%      10.00 €

Sub-Total:                                   34.66 €
Tax Rate for Digital Downloads:   2.47 €
Tax Rate for printed document1:   0.50 €
Total:                                   37.63 €
----------------------------------------------

(Its important to show the 2 taxes separately)

So the problem is how to implement this.
- First idea I had is to create a bundle product, but, this way, the user cant choose whether he wants or not the printed document so I dont see like a possible solution

- Second idea is to add to the product 2 options: Dig. Download only(+0Eur) and DigitalDownloadPlusPrintedVersion(+10Euro). The problem is that I can´t add a tax to the option, can I ?? Its important to show to in the invoice this 2 taxes.(I can´t put directly +10.5 Eur, to the "DigitalDownloadPlusPrintedVersion" option in the example above)

I beleave I should follow the second idea and try to add the tax for the "printed document" price manually, programming it. Is this correct ?


Thanks!

Iruñea