• Welcome to KonaKart Community Forum. Please login or sign up.
 
May 07, 2024, 11:16:40 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 - lrkwz

46
Programming of KonaKart / Re: Call Invoice url
November 23, 2009, 03:14:46 pm
I can call Velocity Engine, save the merge'd html to a file a then dochtml it
47
 ::) Thank you ...   shame on me
48
Programming of KonaKart / Call Invoice url
November 23, 2009, 02:02:25 pm
Is there a way to call the invoice url for a given order from withing the OrderMgr?
I need to automatically send a pdf  from the invoice.

Thank you.
49
I've got the same problem ... any solution yet?

Thank you
50
Configuration of KonaKart / Exclude a produc from sells
November 19, 2009, 09:08:39 am
Hello,
   is there a way to exclude a product from the catalogue for a single country/language?
I have a product I cannot show in my catalogue in Italy but can for other countries 'cause some legal stuff: excluding the visualization of the product for the Italian locale would be enough but how can I achieve it?

Thank you.
51
Hello,
   I'll like to copy some order info to a custom table when the order state changes to "payment received". I though the right places are:
   

package com.konakartadmin.bl;

public class AdminMyOrderIntegrationMgr extends AdminOrderIntegrationMgr {

   public void changeOrderStatus(int orderId, int currentStatus, int newStatus){
       AdminOrder o = getAdminEng().getOrderForOrderId( ??????, orderId);
...
}

to catch the order when the state has been changed by an administrator

and


package com.konakart.bl;

public class ArceseOrderIntegrationMgr extends OrderIntegrationMgr {
   
   public void changeOrderStatus(int orderId, int currentStatus, int newStatus){
OrderIf o = getEng().getOrder(??????, orderId, 1);
...
}


to catch the order when the state has been changed by a payment gateway callback .

BUT how do I get an Order having only it's ID? KKEngIf.getOrder() needs the session id of the logged user how do I find it?

Is there a better technique?

Thank you
52
Ok no replies I'll start myself.

I've decided to implement two custon shipping modules based on the weight one:
* first one will handle the express shipping
* the other one will handle the ground shipping requests

basicall both the transports will be handled the same way (transferring  a batch to the logistics) but the use will choose beteen the two and eill be exposed a different price.
53
Is there a way to configure existing shipping modules in order to have a quotation based on:

  • order weigth

  • service level choosen by the customer (i.e. ground, express, ...)

  • zone



Thank you.
54
Configuration of KonaKart / Minimum cart value/quantity
November 11, 2009, 09:57:26 am
Is there a way to configure a "minimum order value" or quantity ... let's say somothing like "You must spend more than 10€ to continue checkout" ?

If not what type of module should I develop?

Thank you