Quantcast
Channel: Magento – Marcel Schmidt Wiki / Neuigkeiten
Viewing all articles
Browse latest Browse all 10

Magento individuelle Versandkosten / Speditionskosten bei Überlänge (Option)

$
0
0

Folgend möchte ich zeigen, wie Sie bei Produkten mit individuellen Produkt-Optionen die Versandkosten dynamisch anpassen. Je nachdem, welche Versandkostenart Sie wählen, muss die entsprechende „Carrier“ PHP angepasst werden. Im Beispiel zeige ich das anhand der Tabelrates.

Schritt 1: Datei kopieren

/app/code/core/Mage/Shipping/Model/Carrier/Tablerate.php
nach
/app/code/local/Mage/Shipping/Model/Carrier/Tablerate.php

Schritt 2: Function erweitern

Achtung, das ist nur ein Beispiel, in meinem Fall enthält das erste Optionsfeld die größe, welche in Abhängigkeit zu den Versandkosten steht. Hinzugefügt wurden nur die Teile, bei denen „Hinzugefügt“ steht.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
    public function collectRates(Mage_Shipping_Model_Rate_Request $request)
    {
        if (!$this->getConfigFlag('active')) {
            return false;
        }
 
        // exclude Virtual products price from Package value if pre-configured
        if (!$this->getConfigFlag('include_virtual_price') && $request->getAllItems()) {
            foreach ($request->getAllItems() as $item) {
                if ($item->getParentItem()) {
                    continue;
                }
                if ($item->getHasChildren() && $item->isShipSeparately()) {
                    foreach ($item->getChildren() as $child) {
                        if ($child->getProduct()->isVirtual()) {
                            $request->setPackageValue($request->getPackageValue() - $child->getBaseRowTotal());
                        }
                    }
                } elseif ($item->getProduct()->isVirtual()) {
                    $request->setPackageValue($request->getPackageValue() - $item->getBaseRowTotal());
                }
            }
        }
 
        ######################################### HINZUGEFÜGT #####################################
        // spezial products for free 
        $setShippingFree = false;
        foreach ($request->getAllItems() as $item) {
            $p = Mage::getModel('catalog/product')->load(  $item->getProduct()->getId()  );
            if ($p->getIsShippingFree()) $setShippingFree = true;
            else {
                $setShippingFree = false;
                break;
            }
        }
 
        ######################################### HINZUGEFÜGT #####################################        
        // spezial price by oversize
        $price = 0;
        if ($request->getAllItems()) {
            foreach ($request->getAllItems() as $item) {
                if ($item->getProduct()->isVirtual() || $item->getParentItem()) {
                    continue;
                }
 
                $value = $item->getOptionByCode('info_buyRequest')->getValue();
                $params = unserialize($value);
                if (isset($params['options'])) {
                    if (!empty($params['options'])) {
                        $counter = 0;
                        foreach($params['options'] as $optionId => $value) {
                            if (!is_numeric($value)) continue;
                            if ($counter>0) continue;
                            $option = $item->getProduct()->getOptionById($optionId);
                            $title = $option->getTitle();
                            if (strpos($title,'cm')!==false) {
                                if ($value>=400 && $price<35) $price = 35;
                                elseif ($value>=320 && $price<25) $price = 25;
                                elseif ($value>=200 && $price<15) $price = 15;
                            } elseif (strpos($title,'mm')!==false) {
                                if ($value>=4000 && $price<35) $price = 35;
                                elseif ($value>=3200 && $price<25) $price = 25;
                                elseif ($value>=2000 && $price<15) $price = 15;
                            }
                            $counter++;
                        }
                    }
                }
            }
        }
 
        if ($price>0) {
            $result = Mage::getModel('shipping/rate_result');
            $method = Mage::getModel('shipping/rate_result_method');
 
            $method->setCarrier('tablerate');
            $method->setCarrierTitle($this->getConfigData('title'));
 
            $method->setMethod('bestway');
            $method->setMethodTitle('Speditionsaufschlag');
 
            $method->setPrice($price);
            $method->setCost($price);
 
            $result->append($method);
            return $result;
        }
 
        // Free shipping by qty
        $freeQty = 0;
        if ($request->getAllItems()) {
            foreach ($request->getAllItems() as $item) {
                if ($item->getProduct()->isVirtual() || $item->getParentItem()) {
                    continue;
                }
 
                if ($item->getHasChildren() && $item->isShipSeparately()) {
                    foreach ($item->getChildren() as $child) {
                        if ($child->getFreeShipping() && !$child->getProduct()->isVirtual()) {
                            $freeQty += $item->getQty() * ($child->getQty() - (is_numeric($child->getFreeShipping()) ? $child->getFreeShipping() : 0));
                        }
                    }
                } elseif ($item->getFreeShipping()) {
                    $freeQty += ($item->getQty() - (is_numeric($item->getFreeShipping()) ? $item->getFreeShipping() : 0));
                }
            }
        }
 
        if (!$request->getConditionName()) {
            $request->setConditionName($this->getConfigData('condition_name') ? $this->getConfigData('condition_name') : $this->_default_condition_name);
        }
 
         // Package weight and qty free shipping
        $oldWeight = $request->getPackageWeight();
        $oldQty = $request->getPackageQty();
 
        $request->setPackageWeight($request->getFreeMethodWeight());
        $request->setPackageQty($oldQty - $freeQty);
 
        $result = Mage::getModel('shipping/rate_result');
        $rate = $this->getRate($request);
 
        $request->setPackageWeight($oldWeight);
        $request->setPackageQty($oldQty);
 
        if (!empty($rate) && $rate['price'] >= 0) {
            $method = Mage::getModel('shipping/rate_result_method');
 
            $method->setCarrier('tablerate');
            $method->setCarrierTitle($this->getConfigData('title'));
 
            $method->setMethod('bestway');
            $method->setMethodTitle($this->getConfigData('name'));
 
            if ($request->getFreeShipping() === true || ($request->getPackageQty() == $freeQty) || $setShippingFree) {
                $shippingPrice = 0;
            } else {
                $shippingPrice = $this->getFinalPriceWithHandlingFee($rate['price']);
            }
 
            $method->setPrice($shippingPrice);
            $method->setCost($rate['cost']);
 
            $result->append($method);
        }
 
        return $result;
    }

Viewing all articles
Browse latest Browse all 10