Can you insert
echo '</pre>'; print_r($boxesToShip); echo '</pre>';in between
$boxesToShip = $this->packProducts($productsArray);and
// Quote for the number of boxessomewhere around line 198?
Posted 29 December 2004, 19:49
echo '</pre>'; print_r($boxesToShip); echo '</pre>';in between
$boxesToShip = $this->packProducts($productsArray);and
// Quote for the number of boxessomewhere around line 198?
Posted 30 December 2004, 00:02
Array ( [0] => Array ( [id] => 34 [name] => Plenty Hungry Combo [model] => [image] => [price] => 149.5000 [quantity] => 3 [weight] => 25.00 [length] => 16.00 [width] => 9.00 [height] => 14.00 [ready_to_ship] => 1 [final_price] => 149.5 [tax_class_id] => 0 [attributes] => ) [1] => Array ( [id] => 34 [name] => Plenty Hungry Combo [model] => [image] => [price] => 149.5000 [quantity] => 3 [weight] => 25.00 [length] => 16.00 [width] => 9.00 [height] => 14.00 [ready_to_ship] => 1 [final_price] => 149.5 [tax_class_id] => 0 [attributes] => ) [2] => Array ( [id] => 34 [name] => Plenty Hungry Combo [model] => [image] => [price] => 149.5000 [quantity] => 3 [weight] => 25.00 [length] => 16.00 [width] => 9.00 [height] => 14.00 [ready_to_ship] => 1 [final_price] => 149.5 [tax_class_id] => 0 [attributes] => ) ) Array ( [0] => Array ( [length] => 16.00 [width] => 9.00 [height] => 14.00 [current_weight] => 25.00 ) [1] => Array ( [length] => 16.00 [width] => 9.00 [height] => 14.00 [current_weight] => 25.00 ) )
Edited by txcrew, 30 December 2004, 00:04.
Posted 30 December 2004, 00:09
Array ( [0] => Array ( [id] => 34 [name] => Plenty Hungry Combo [model] => [image] => [price] => 149.5000 [quantity] => 1 [weight] => 25.00 [length] => 16.00 [width] => 9.00 [height] => 14.00 [ready_to_ship] => 1 [final_price] => 149.5 [tax_class_id] => 0 [attributes] => ) ) Array ( )
Posted 30 December 2004, 01:00
Posted 30 December 2004, 09:23
Quote