Follow us on Twitter X-Cart on Facebook Wiki
Shopping cart software Solutions for online shops and malls

X-Cart 4.7.5 released: Amazon Feeds, Gross Profit, Convenient search tools

 
Reply
   X-Cart forums > News and Announcements
 
Thread Tools
  #21  
Old 04-06-2016, 11:56 PM
 
aim aim is offline
Advanced Staff Users
 

X-Cart team
  
Join Date: Dec 2008
Posts: 928
 

Default Re: X-Cart 4.7.5 released: Amazon Feeds, Gross Profit, Convenient search tools

Quote:
Originally Posted by herber@wirehub.nl

What are the condintions for the field to be shown like in the screenshot?
I have added costs prices for all items in 1 order for example, then searched for that order & it still does not show, while both products in that order have costs entered.

Could you check again ?

1)add cost price for a product
2)buy the product
3)place the order
4)process the order
5)check the gross profit field on the search order page.

The condition is simple. The module is active and the $gross_costs_total is not empty.

Code:
{if $active_modules.Cost_Pricing and $gross_costs_total} {include file="modules/Cost_Pricing/admin_orders_list.tpl" gross_profit=$total-$gross_costs_total} {/if}

Thank you.
__________________
Sincerely yours,
Ildar Amankulov
Head of Maintenance group
Reply With Quote

The following user thanks aim for this useful post:
herber@wirehub.nl (04-07-2016)
  #22  
Old 04-07-2016, 12:37 AM
 
herber@wirehub.nl herber@wirehub.nl is offline
 

eXpert
  
Join Date: Nov 2002
Posts: 305
 

Default Re: X-Cart 4.7.5 released: Amazon Feeds, Gross Profit, Convenient search tools

Quote:
Originally Posted by aim
Could you check again ?

1)add cost price for a product
2)buy the product
3)place the order
4)process the order
5)check the gross profit field on the search order page.

The condition is simple. The module is active and the $gross_costs_total is not empty.

Code:
{if $active_modules.Cost_Pricing and $gross_costs_total} {include file="modules/Cost_Pricing/admin_orders_list.tpl" gross_profit=$total-$gross_costs_total} {/if}

Thank you.
Ah alright then there is no need to check, if the condition only becomes active if the cost price has been added to items before they have been purchased as I've added all the cost prices after these orders.
__________________
X-Cart 4.7.12
Reply With Quote

The following user thanks herber@wirehub.nl for this useful post:
aim (04-07-2016)
  #23  
Old 04-07-2016, 12:41 AM
 
aim aim is offline
Advanced Staff Users
 

X-Cart team
  
Join Date: Dec 2008
Posts: 928
 

Default Re: X-Cart 4.7.5 released: Amazon Feeds, Gross Profit, Convenient search tools

Thank you, Michel!
__________________
Sincerely yours,
Ildar Amankulov
Head of Maintenance group
Reply With Quote
  #24  
Old 04-07-2016, 03:07 AM
 
herber@wirehub.nl herber@wirehub.nl is offline
 

eXpert
  
Join Date: Nov 2002
Posts: 305
 

Default Re: X-Cart 4.7.5 released: Amazon Feeds, Gross Profit, Convenient search tools

For 4.7.6: may I suggest cost pricing update in the Update Inventory page?
So, importing CSV files with SKU;costprice for example, just like how you can alter the normal price & product quantity.
__________________
X-Cart 4.7.12
Reply With Quote
  #25  
Old 04-07-2016, 11:12 PM
 
aim aim is offline
Advanced Staff Users
 

X-Cart team
  
Join Date: Dec 2008
Posts: 928
 

Default Re: X-Cart 4.7.5 released: Amazon Feeds, Gross Profit, Convenient search tools

Quote:
Originally Posted by herber@wirehub.nl
For 4.7.6: may I suggest cost pricing update in the Update Inventory page?
So, importing CSV files with SKU;costprice for example, just like how you can alter the normal price & product quantity.

You can use the standard import for that.

The format is like

Code:
[PRODUCTS] !PRODUCTID;!COST_PRICE 17521;"11.11" 17526;"22.22" 17533;"33.33"

or

Code:
[PRODUCTS] !PRODUCTCODE;!COST_PRICE "SKU17521";"11.11" "SKU17526";"22.22" "SKU17533";"33.33"

Thank you.
__________________
Sincerely yours,
Ildar Amankulov
Head of Maintenance group
Reply With Quote

The following user thanks aim for this useful post:
herber@wirehub.nl (04-08-2016)
  #26  
Old 04-14-2016, 09:02 AM
  cflsystems's Avatar 
cflsystems cflsystems is offline
 

Veteran
  
Join Date: Apr 2007
Posts: 14,190
 

Default Re: X-Cart 4.7.5 released: Amazon Feeds, Gross Profit, Convenient search tools

I was working on 4.4.5 version to find out why AOM does not work properly. As it turns out this is a bug in XC present even in the newest version. So I assume it is on all XC versions.

If you try to modify an order which used Special Offers offer this info will be lost when you save the new changes. It took a while to find out what is happening with the order and why but I tracked it down to this

modules/Advanced_Order_Management/func.edit.php has following code

PHP Code:
if (!empty($active_modules['Special_Offers'])) {
        
$saved_state true;
        unset(
$active_modules['Special_Offers']);
    } 

This is inside a function that rebuilts the whole cart on any AOM page run and uses it after that for the duration of the session.
Now who think of that and why there is a need to turn off the Special Offers module I have no idea. It makes no sense at all.

To fix comment out the "unset" line. It will make the Special Offers run on the rebuilt process and properly apply to the new temporary cart so you won't lose the info with the order modification.

Bug report: https://bt.x-cart.com/view.php?id=45948
__________________
Steve Stoyanov
CFLSystems.com
Web Development
Reply With Quote

The following user thanks cflsystems for this useful post:
elmirage001 (04-14-2016)
  #27  
Old 04-17-2016, 12:15 PM
 
red_and_white red_and_white is offline
 

Advanced Member
  
Join Date: Jan 2006
Location: Italy
Posts: 72
 

Default Re: X-Cart 4.7.5 released: Amazon Feeds, Gross Profit, Convenient search tools

Hello,
are you Xcart team planning to update ALL modules to 4.7.5 version? Actually I can't find mine. they are 4.7.4 version. Thank You
__________________
X-cart 4.5.5
Reply With Quote
  #28  
Old 04-18-2016, 08:40 AM
  cflsystems's Avatar 
cflsystems cflsystems is offline
 

Veteran
  
Join Date: Apr 2007
Posts: 14,190
 

Default Re: X-Cart 4.7.5 released: Amazon Feeds, Gross Profit, Convenient search tools

I have updated the bug report posted in the #26 above after a response from XC support.

Also after more testing it turns out if you use the solution posted and modify orders with variants it will screw up the products ordered by combining variants into one product.

XC does not think this is a bug. To me this is a bug. There are 2 modules - AOM and Special Offers - which do not work together. So the solution - there is no solution. Do not use Special Offers module. Period.
__________________
Steve Stoyanov
CFLSystems.com
Web Development
Reply With Quote
  #29  
Old 04-18-2016, 09:20 AM
 
red_and_white red_and_white is offline
 

Advanced Member
  
Join Date: Jan 2006
Location: Italy
Posts: 72
 

Default Re: X-Cart 4.7.5 released: Amazon Feeds, Gross Profit, Convenient search tools

Quote:
Originally Posted by cflsystems
I have updated the bug report posted in the #26 above after a response from XC support.

Also after more testing it turns out if you use the solution posted and modify orders with variants it will screw up the products ordered by combining variants into one product.

XC does not think this is a bug. To me this is a bug. There are 2 modules - AOM and Special Offers - which do not work together. So the solution - there is no solution. Do not use Special Offers module. Period.


Hello Steve,
did You try to modify skin/common files/admin/menu_box.tpl?
In example to delete that horrible orane menu called goodies.
I tried but with no success.....

It's not a cache problem. I cleaned up anything.
__________________
X-cart 4.5.5
Reply With Quote
  #30  
Old 04-18-2016, 10:48 AM
 
Lloyds Lloyds is offline
 

Advanced Member
  
Join Date: Apr 2013
Posts: 72
 

Default Re: X-Cart 4.7.5 released: Amazon Feeds, Gross Profit, Convenient search tools

Where is the "How to setup Amazon Feeds" page located? I can't find anything.

Where can I find my "Merchant ID" at Amazon seller?

Can I use the same info as my AWS CDN information, or is it separate for sellers?

Thanks in advance for any help.
__________________
4.7.5 - lloydsofindiana.com

5.3.2.7 - Customprintproducts.com

Lloyds of Indiana
Binding Machines, Binding Supplies, Laminators, UV Coating
Reply With Quote

The following user thanks Lloyds for this useful post:
cherie (04-18-2016)
Reply
   X-Cart forums > News and Announcements


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -8. The time now is 06:07 AM.

   

 
X-Cart forums © 2001-2020