• Welcome to KonaKart Community Forum. Please login or sign up.
 
April 25, 2024, 05:51:46 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 - ramesh

1
Thanks for your reply

In back end, while editing order, we have status like canceled,  delivered, Order processing ans so on. In that I want to add New order status and For new Status order, I want to send different format email to customer.




Thanks.
2
Thanks for reply

I want new order status in vm file only.

Thanks.
3
Hi,

I want add one order status to existing order status. I do not known where to change the code for that.

Please help me in this regard.


Thanks in advance.
4
Thanks for Reply,

But I could not find multiple shipping module in Shipping Modules( Back end)


Thanks.
5

Hi,

Is there any option to provide multiple shipping prices to customers while check out and They can decide which shipping agency they would want their order to be delivered.

Currently we are using ZONES modules. Is there any way to add  multiple shipping agency details using other modules.

please help me.

Thanks in Advance.
6

Hi,

In vm template how values are display.......! means via. which sources file.....
Which classes, vm files is reffering to display the values.....!

Any help can be helpfully..................!
Ramesh
7
hi andy

Did u find any solutions for above query.............! because even iam also facing same issues.....
if u got any solutions please let me know......!


Thank in advance
Mahesh


8
Programming of KonaKart / CartItem
March 08, 2010, 10:59:41 am
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.

its urgent

help me...............!

Thanks in advance
9

hi,

   Even i am facing same problem.....! Have you got any solutions for the query you asked.....! please let us know........!
   
   Thanks in advance

Ramesh
 
10
Configuration of KonaKart / Shipping based on zone rates
December 03, 2009, 10:01:18 am
hi,

   Can any tell me how this shipping based on rates works..........?
   According to the konakart .. For Example
   "3:8.50,7:10.50,... Weights less than or equal to 3 cost 8.50 for destinations in this Zone. Weights greater than 3 but less than or equal to 7,
   cost  10.50 for destinations in this zone."

  if i give 1:4.50,3:8.50,7:10.50 in shipping module and if i change product weight to 1, @ time of check out shipping charges is still showing 8.50.
  it should show 4.50

  i am not getting it... please can any 1 help me

  Thank You.........!
11
Programming of KonaKart / Implementing Gift Card Support
November 09, 2009, 11:04:42 am
Hi,
we need to support gift cards in a konakart shop. We need support for 2 operations:

1) buy gift cards online using credit card
2) paying for a product using a gift card i.e redeem amount available in Gift Card

Are there any classes already available in Konakart which does this functionality, or should we write our own custom classes to achieve this?

How to differentiate between a normal product and Gift Card?

Kindly throw some light on this topic

Any help / suggestions are highly appreciated.

Thanks in advance  :)
12
Reporting / How to implement pagination in reports.
September 10, 2009, 07:56:07 am


Hi Friends,
 
Any body would tell me How to implement pagination  in reports?
13
Programming of KonaKart / OrderDetails_en .vm file
September 10, 2009, 06:18:16 am

hi,

  In KonakartAdmin orders when we click on edit button its displaying order details via "OrderDetails_en .vm" . All details displayed here is via orders table.
  my requirements i want display some more details. Like i am storing some messages in address_book table custom1 field, i want display this message in
"OrderDetails_en .vm". I thought of storing this messages in some custom1 fields of orders table but all custom fields are fully occupied.
 
  How can i display the messages stored in the address_book table custom1 field in "OrderDetails_en .vm"............?

Any help is much appreciable
Thank You
14
Programming of KonaKart / How to add Page Specific Title?
September 08, 2009, 02:30:23 pm

Hi friends,
 
Is it possible to add page specific title like title is different for different page.
How do I achieve this through property file. Please help me.


Thanks in advance.
   
15
Programming of KonaKart / Emails OrderConfirmation
September 03, 2009, 07:05:22 am
hi,
                                 
      iam trying to insert a product image name in order_products table custom1 field before sending orderconfirmation email and then in orderconfirmation
      email iam trying to send product image.
     
      In saveOrder below i boolean value i made it save false so  orderconfirmation email is not going
      but  image name is successfully inserted in the order_products table custom1 field .

      now how can i send only orderconfirmation email to the customer ....?
 
      there is code below....!


                                int orderId = kkAppEng.getOrderMgr().saveOrder(
                  /* sendEmail */false);
            System.out.println(" my orderId====" + orderId);
            checkoutOrder.setPaymentMethod("Cheque or Cash Deposit");
            checkoutOrder.setPaymentModuleCode("chequeorcash");
            
            
            
            System.out.println("********image insertion **************");
            int order_Id;
            OrderDetailsDao orderDetailsDao_custom = new OrderDetailsDao();
            List<OrderDetailsBean> orderDetailsList_custom = new ArrayList<OrderDetailsBean>();
            orderDetailsList_custom = orderDetailsDao_custom.getOrderDetails();
            ListIterator<OrderDetailsBean> lstitr_custom = orderDetailsList_custom.listIterator();
            
            while (lstitr_custom.hasNext()) {
               OrderDetailsBean orderDetailsBean_custom = new OrderDetailsBean();                  
               orderDetailsBean_custom = (OrderDetailsBean) lstitr_custom.next();
               order_Id = orderDetailsBean_custom.getOrders_id();               
               dao.updateProductImage(order_Id);
            }

   Any help is much appreciable
  Thank you