• Welcome to KonaKart Community Forum. Please login or sign up.
 
May 03, 2024, 08:08:03 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 - ada_v

1
A part of the code from CatalogCheckoutDeliveryBody:

<%= orderMgr.getShippingQuotes() %>
<logic:notEmpty name="orderMgr"  property="shippingQuotes">
      <logic:iterate id="quote" name="orderMgr"  property="shippingQuotes" type="com.konakart.appif.ShippingQuoteIf">
            ...............
      </logic:iterate>                                 
</logic:notEmpty>      


- but the orderMgr.getShippingQuotes() is always 0.

I don' understand why!
2
Programming of KonaKart / KonaKart Shipping Modules
June 25, 2009, 10:42:42 am
Hi,

I have another problem :

- any shipping module that I installed not appers in the client-side application.
- I need to install the Table Rate Module but when I confirm the order, below the text please select the shipping method nothing appears.
- I tried also to install different modules and the behavior is the same

Thanks
Ada
3
I fixed this. I deleted the URL to not be shown on the status page.

Thanks a lot.
4
I also tried to modify the Status Page Report URL but it doesn't work. But if I try to run the report it woeks perfect.

Anyway, how can I disable the reports from the status page?
5
Yes, I try to run the reports from Report Section and it works. Only at status page appers me that error.
6
I have to question:

- when I start KonaKartAdmin application, at the bottom of the page I receive this error

HTTP Status 404 - /birt-viewer/run
type Status report
message /birt-viewer/run
description The requested resource (/birt-viewer/run) is not available.
Apache Tomcat/6.0.18


Everything else work fine.

- the second question: how can I modify the KonaKartAdmin application? I mean there is also somewhere some JSP pages? or how can I do this? Because I didn't necessay need that chart and I want to disable it form the application.

Thanks in advance.
Ada
7
Programming of KonaKart / Re: classes diagram
May 20, 2009, 02:05:03 pm
Is for my diploma...my theme is "the migration from an online shop based on php (OsCommerce) to Java (Konakart)

and I have to follow a predefined structure for the documentation.

Anyway thanks.

Ada
8
Programming of KonaKart / Re: classes diagram
May 20, 2009, 01:39:35 pm
yes, I konw, but I would need classes diagram for the documentation of my project.

9
Programming of KonaKart / classes diagram
May 20, 2009, 12:08:07 pm
Hello,

I need the classes diagram from KonKart (at a high level, not very detailed). This diagram exists somewhere?


Could anyone help me with this?

Thanks a lot.

10
To be more explicit:

- I'm working at the translation of an online shob based on OsCommerce to Konakart
- because I was running that script to make the translation, to my table of products_description has apeared some extra fields (for example product_autor)
- i don.t know how to use it, how to acces in the client to print this extra fields
 
11
Hi,

I need to do something and i'm not so sure how to do this:
  - in my application I need to add some extra fields to the table products_description (products_type, products_autor, ...)
  - I was thinking to add this some extra fields to table products_description, but I don't know how to do this
  - I added the columns but now my problem is that I need to acces this columns as same as I get prod.getDescription() from class ProductIf

How can I do this? Can anyone help me?
How can I use the fields Custom1-5? Where and how can I set them?

Thank a lot,
Ada
12
Hi,

From KonaKart Admin Application (customer details) I disable the state option.
But my problem is that when I want to edit an address to change the country that have not states (for example Romania) to a country with states (Germany) I received this error:
        Error: Please select a state from the States pull down menu.   

There is no pull down menu, because evidently I disabled the option, but despite of all this the error apear.

If I want to change the country from Romania to Peru it works. (Peru has also no zones)

Can tell me somebody if this problem appears only at me, or there is a general problem???

Thanks a lot,
Ada
13
Hy,

I need some help:
   - I need to display the name of the person who is logged in in the page Header, or if there is not already log in then to display nothing
   - I need also to display near the cart the number of items.

Probably there are function in API in KKAppEng but I haven't found yet.
Sorry for this simple question.

Thanks a lot, and thanks in advance.

Ada
14
Hi,

Probably it is a very simple question, but because I'm new in KonaKart I meet lready with a problem :-)

- how can I list all the categories and subcategories in CategoriesTile
- I tried to do something like this:

<logic:iterate id="cat" name="catList" type="com.konakart.appif.CategoryIf">   
   <html:link page="/SelectCat.do" paramId="catId" paramName="cat" paramProperty="id">
      <%for (int i = 0; i < cat.getLevel(); i++){%>
         <%="&nbsp;"%>
      <% }%>
           <%=cat.getName()%>
   </html:link>
       
      <logic:iterate id="cat" name="subCatArray" type="com.konakart.appif.CategoryIf">
         <html:link page="/SelectCat.do" paramId="catId" paramName="cat" paramProperty="id">
         <%=cat.getName()%>
         </html:link>
   </logic:iterate>     

</logic:iterate>


Can anyone say me how it is wrong or how could I do this?

Thank in advance.