|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/** |
|
4
|
|
|
* @package silvershop-shipping |
|
5
|
|
|
*/ |
|
6
|
|
|
class OrderShippingExtension extends DataExtension |
|
7
|
|
|
{ |
|
8
|
|
|
private static $db = array( |
|
9
|
|
|
'ShippingTotal' => 'Currency' |
|
10
|
|
|
); |
|
11
|
|
|
private static $has_one = array( |
|
12
|
|
|
'ShippingMethod' => 'ShippingMethod' |
|
13
|
|
|
); |
|
14
|
|
|
|
|
15
|
|
|
public function createShippingPackage() |
|
16
|
|
|
{ |
|
17
|
|
|
//create package, with total weight, dimensions, value, etc |
|
18
|
|
|
$weight = $width = $height = $depth = $value = $quantity = 0; |
|
|
|
|
|
|
19
|
|
|
|
|
20
|
|
|
$items = $this->owner->Items(); |
|
21
|
|
|
if (!$items->exists()) { |
|
22
|
|
|
return new ShippingPackage(); |
|
23
|
|
|
} |
|
24
|
|
|
|
|
25
|
|
|
$weight = $items->Sum('Weight', true); //Sum is found on OrdItemList (Component Extension) |
|
26
|
|
|
$width = $items->Sum('Width', true); |
|
27
|
|
|
$height = $items->Sum('Height', true); |
|
28
|
|
|
$depth = $items->Sum('Depth', true); |
|
29
|
|
|
|
|
30
|
|
|
$value = $this->owner->SubTotal(); |
|
31
|
|
|
$quantity = $items->Quantity(); |
|
32
|
|
|
|
|
33
|
|
|
$package = new ShippingPackage($weight, |
|
34
|
|
|
array($height,$width,$depth), |
|
35
|
|
|
array( |
|
36
|
|
|
'value' => $value, |
|
37
|
|
|
'quantity' => $quantity |
|
38
|
|
|
) |
|
39
|
|
|
); |
|
40
|
|
|
return $package; |
|
41
|
|
|
} |
|
42
|
|
|
|
|
43
|
|
|
/** |
|
44
|
|
|
* Get shipping estimates |
|
45
|
|
|
* @return DataList |
|
46
|
|
|
*/ |
|
47
|
|
|
public function getShippingEstimates() |
|
48
|
|
|
{ |
|
49
|
|
|
//$package = $this->order->createShippingPackage(); |
|
50
|
|
|
$address = $this->owner->getShippingAddress(); |
|
51
|
|
|
$estimator = new ShippingEstimator($this->owner, $address); |
|
52
|
|
|
$estimates = $estimator->getEstimates(); |
|
53
|
|
|
return $estimates; |
|
54
|
|
|
} |
|
55
|
|
|
|
|
56
|
|
|
/* |
|
57
|
|
|
* Set shipping method and shipping cost |
|
58
|
|
|
* @param $option - shipping option to set, and calculate shipping from |
|
59
|
|
|
* @return boolean sucess/failure of setting |
|
60
|
|
|
*/ |
|
61
|
|
|
public function setShippingMethod(ShippingMethod $option) |
|
62
|
|
|
{ |
|
63
|
|
|
$package = $this->owner->createShippingPackage(); |
|
64
|
|
|
if (!$package) { |
|
65
|
|
|
throw new Exception(_t("OrderShippingExtension.NoPackage", "Shipping package information not available")); |
|
66
|
|
|
} |
|
67
|
|
|
$address = $this->owner->getShippingAddress(); |
|
68
|
|
|
if (!$address || !$address->exists() && $option->requiresAddress()) { |
|
69
|
|
|
throw new Exception(_t("OrderShippingExtension.NoAddress", "No address has been set")); |
|
70
|
|
|
} |
|
71
|
|
|
$this->owner->ShippingTotal = $option->calculateRate($package, $address); |
|
|
|
|
|
|
72
|
|
|
$this->owner->ShippingMethodID = $option->ID; |
|
73
|
|
|
$this->owner->write(); |
|
74
|
|
|
return true; |
|
75
|
|
|
} |
|
76
|
|
|
} |
|
77
|
|
|
|
This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.
Both the
$myVarassignment in line 1 and the$higherassignment in line 2 are dead. The first because$myVaris never used and the second because$higheris always overwritten for every possible time line.