ik zoek een gratis "modulle" om te kunnen verzenden op gewicht

mvg,ericosman
Norman in 't Veldt
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
[How to] BTW + Verzend + betaal setup.
Norman in 't Veldt
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
[How to] BTW + Verzend + betaal setup.
Nee dat kan niet. Zover ik weet.ericosman wrote:Oke het is me nu gelukt maar nu zit ik met het volgende probleem :
Als het gewicht bove de 3kg komt ( tnt brieven post ) komen de koste op 0 euro kan dit veranderd worden dat hij als het boven de 3kg komt dat hij niet zichtbaar is en dat er dan aleen nog staat : TNT Basis Pakket ?
mvg,eric osman
For modelcars cars see my OC 3.0.2.0 shop: http://www.gbcars.nl/
For Wooden Toys see my 2.3.0.2 shop: https://www.dehoutentreinenwinkel.nl/
For modelcars cars see my OC 3.0.2.0 shop: http://www.gbcars.nl/
For Wooden Toys see my 2.3.0.2 shop: https://www.dehoutentreinenwinkel.nl/
For modelcars cars see my OC 3.0.2.0 shop: http://www.gbcars.nl/
For Wooden Toys see my 2.3.0.2 shop: https://www.dehoutentreinenwinkel.nl/
For modelcars cars see my OC 3.0.2.0 shop: http://www.gbcars.nl/
For Wooden Toys see my 2.3.0.2 shop: https://www.dehoutentreinenwinkel.nl/
vervang dan het volgendeUit 'verzendkosten' kan je dat niet opmaken. Helemaal niet als je ivm ordergroote gratis verzending krijgt.
Code: Select all
if ($query->num_rows) {
$status = TRUE;
} else {
$status = FALSE;
}
Code: Select all
if ($this->cart->getSubtotal() > $this->config->get('free_total')) {
$status = false;
}
Code: Select all
if ($query->num_rows) {
$status = TRUE;
} else {
$status = FALSE;
}
if ($this->cart->getSubtotal() > $this->config->get('free_total')) {
$status = false;
}
} else {
$status = FALSE;
}
if ($status) {
$cost = 0;
$weight = $this->cart->getWeight();
$rates = explode(',', $this->config->get('weight_' . $result['geo_zone_id'] . '_rate'));
foreach ($rates as $rate) {
$data = explode(':', $rate);
if ($data[0] >= $weight) {
if (isset($data[1])) {
$cost = $data[1];
}
break;
}
}
if ((string)$cost != '') {
$quote_data['weight_' . $result['geo_zone_id']] = array(
'id' => 'weight.weight_' . $result['geo_zone_id'],
'title' => $result['name'] . ' (' . $this->language->get('text_weight') . ' ' . $this->weight->format($weight, $this->config->get('config_weight_class')) . ')',
'cost' => $cost,
'tax_class_id' => $this->config->get('weight_tax_class_id'),
'text' => $this->currency->format($this->tax->calculate($cost, $this->config->get('weight_tax_class_id'), $this->config->get('config_tax')))
);
}
}
}
}
Users browsing this forum: No registered users and 4 guests