Hi,
In admin I have coded the option to print 'Packingslips' for the orders I have selected. Similar to Print multiple Invoices but the Packingslip is customised to have extra columns such as 'barcode', 'picked' etc. Staff then use these in the storeroom to pick goods and then mark sheet off as they put in the customer boxes ready for dispatch. They then file the packingslip for later reference if needed.
Taking the above further I would love to provide a Picklist that sums/collates totalsof each unique products from the selected orders into one list. Staff member then uses this to pick the goods from the shelves. Then we would use the individual Packing List for each order to take goods from the trolley of goods that were picked using the PickList.
Basically I'm wanting a single list of products with total qty combined from the selected orders. Has anyone done this yet or capable of doing?
thanks for any future help or comments...
Dave
Update to above.
I am now at the stage where I have stripped the package bare and have a header row then have a new row appearing for every product appearing on the selected orders.
Q: Can I combine each product and sum qty on the view/order/picklist.tpl page or does the groupinging need to be done back in admin/model/order ?
<?php foreach ($orders as $order) { ?>
<?php foreach ($order['product'] as $product) { ?>
<tr>
<td><?php echo $product['upc']; ?></td>
<td><?php echo $product['sku']; ?></td>
<td><?php echo $product['model']; ?></td>
<td><?php echo $product['name']; ?>
<?php foreach ($product['option'] as $option) { ?>
<br />
<small> - <?php echo $option['name']; ?>: <?php echo $option['value']; ?></small>
<?php } ?></td>
<td align="right"><?php echo $product['quantity']; ?></td>
<td align="right"><?php echo $product['price']; ?></td>
</tr>
<?php } ?>
<?php } ?>
I am now at the stage where I have stripped the package bare and have a header row then have a new row appearing for every product appearing on the selected orders.
Q: Can I combine each product and sum qty on the view/order/picklist.tpl page or does the groupinging need to be done back in admin/model/order ?
<?php foreach ($orders as $order) { ?>
<?php foreach ($order['product'] as $product) { ?>
<tr>
<td><?php echo $product['upc']; ?></td>
<td><?php echo $product['sku']; ?></td>
<td><?php echo $product['model']; ?></td>
<td><?php echo $product['name']; ?>
<?php foreach ($product['option'] as $option) { ?>
<br />
<small> - <?php echo $option['name']; ?>: <?php echo $option['value']; ?></small>
<?php } ?></td>
<td align="right"><?php echo $product['quantity']; ?></td>
<td align="right"><?php echo $product['price']; ?></td>
</tr>
<?php } ?>
<?php } ?>
Have solved issue.
Now have the ability to select multiple orders then either print invoices, packing slips (with extra fields like UPC,sku) or alternatively print a 'picklist' which collates and combines all the products and their respective qtys together to provide a clean list of one line relating to each unique product + the total summed qty to be picked for that item.
Now have the ability to select multiple orders then either print invoices, packing slips (with extra fields like UPC,sku) or alternatively print a 'picklist' which collates and combines all the products and their respective qtys together to provide a clean list of one line relating to each unique product + the total summed qty to be picked for that item.
Who is online
Users browsing this forum: No registered users and 10 guests