Hello, my name is Brennan and I am looking to migrate a client off another shopping cart to AbleCommerce. I have tried the online demo and love it. My only concern is how the kit assemblies are displayed on the invoice and packing slips. Does anyone know if the components of a kit product are populated in ac_OrderItems table in column ParentItemId? The packing slip lists the components from the kit assemblies as separate line items. My client would require the products be grouped together on a single line item. I would need to modify the following files to display the product correctly for my client:
PackSlips.aspx and Invoices.aspx.
Previously, has anyone modified these pages? Also, is there a place for documentation on the order items data structures(OrderItemCollection)?
Secondly, has anyone used the migration utility? Is there any documentation available for the migration utility?
Any insight would greatly be appreciated.
Thanks,
Brennan
Kit Assemblies & Migration Utility
-
- Ensign (ENS)
- Posts: 2
- Joined: Wed May 28, 2008 5:59 pm
- m_plugables
- Commander (CMDR)
- Posts: 149
- Joined: Tue Mar 11, 2008 12:44 am
- Contact:
Re: Kit Assemblies & Migration Utility
These links could be helpful
http://help.ablecommerce.com/mergedProj ... _store.htm
http://wiki.ablecommerce.com/index.php/Main_Page
http://help.ablecommerce.com/mergedProj ... _store.htm
http://wiki.ablecommerce.com/index.php/Main_Page

Visit the links below to Download Plugins for your AC7 Store
http://www.plugables.com
http://blog.plugables.com
-
- Ensign (ENS)
- Posts: 2
- Joined: Wed May 28, 2008 5:59 pm
- Logan Rhodehamel
- Developer
- Posts: 4116
- Joined: Wed Dec 10, 2003 5:26 pm
Re: Kit Assemblies & Migration Utility
Let's start with Invoices.aspx.... this might be simple and appears to be a bug in the file. We have the items sorting by name, but actually they need to be sorted according to other rules that factor in relationships between items (e.g. kit items).brennan1313 wrote:I would need to modify the following files to display the product correctly for my client:
PackSlips.aspx and Invoices.aspx.
On Line 81 of Admin/Odrres/Print/Invoice.aspx is this code:
Code: Select all
products.Sort("Name");
Code: Select all
products.Sort(new OrderItemComparer());
This change won't make the items group onto a single line item though. Is the change above sufficient or are you looking for something more like what the customer sees when they view their own invoice? On the customer invoice, the kit is not broken out by each item but rather the items are shown in a bulleted list.
Cheers,
Logan
.com
If I do not respond to an unsolicited private message, it's not because I'm ignoring you. It's because the answer to your question is valuable to others. Try the new topic button.
Logan

If I do not respond to an unsolicited private message, it's not because I'm ignoring you. It's because the answer to your question is valuable to others. Try the new topic button.
- compunerdy
- Admiral (ADM)
- Posts: 1283
- Joined: Sun Nov 18, 2007 3:55 pm
Re: Kit Assemblies & Migration Utility
It should display on the admin the side the same way it does on the customer side in my opinion.