[ http://jira.undersunconsulting.com/browse/OFBIZ-700?page=comments#action_13931 ] Marco Risaliti commented on OFBIZ-700: --------------------------------------
can I move to the new jira issue server ? Thanks Marco > Order manager order entry still looking at tracking code in cookie > ------------------------------------------------------------------ > > Key: OFBIZ-700 > URL: http://jira.undersunconsulting.com/browse/OFBIZ-700 > Project: [OFBiz] Open For Business > Type: Bug > Components: marketing, order > Versions: SVN > Reporter: Si Chen > Assignee: Jira Administrator > Priority: Minor > Fix For: SVN > > > If you visit the ecommerce store with a tracking code > (?atc=${trackingCodeId}) and then visit the order manager and create an > order, the order manager's order will also be attached to the tracking code. > This is because in CheckoutEvents.java there is this block of code in > createOrder: > //get the TrackingCodeOrder List > List trackingCodeOrders = > TrackingCodeEvents.makeTrackingCodeOrders(request); > String distributorId = (String) > session.getAttribute("_DISTRIBUTOR_ID_"); > String affiliateId = (String) session.getAttribute("_AFFILIATE_ID_"); > String visitId = VisitHandler.getVisitId(session); > String webSiteId = CatalogWorker.getWebSiteId(request) > callResult = checkOutHelper.createOrder(userLogin, distributorId, > affiliateId, trackingCodeOrders, areOrderItemsExploded, visitId, webSiteId); > We need to find some way to let the checkout code know that the order is > coming from the order manager and hence disable it from figuring out the > tracking code. > One possible solution is to set a parameter in web.xml for disable tracking > code, so if it is turned on, then we skip this block of code. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.undersunconsulting.com/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira
