4

不使用管理面板。我希望能够在产品页面上更改 OpenCart 中商品的价格。

基本上我有一个名为的选项Bespoke/Custom:,它是一个文本字段。如果客户在此处输入任何内容,我希望能够更改我已经通过 jQuery 执行的价格,然后我希望带有价格的新隐藏字段覆盖此客户订单的购物车价格

那可能吗?是否有一个扩展,我可以让客户输入他们自己的价格,然后我可以隐藏这个字段并通过 jQuery 等更新

这是对其他一些帖子的参考在 OpenCart 中使用备用价格字段以及关于此模型的链接http://forum.opencart.com/viewtopic.php?t=36052显示了主要的 oop 函数在哪里,但它非常广泛做他们的

4

2 回答 2

6

好的,为了给你指出正确的方向,我会这样做:

1.隐藏的输入渲染
您可能知道,在一个catalog/view/theme/default/template/product/product.php将产品添加到购物车的AJAX请求中:

$('#button-cart').bind('click', function() {
    $.ajax({
        url: 'index.php?route=checkout/cart/add',
        type: 'post',
        data: $('.product-info input[type=\'text\'], .product-info input[type=\'hidden\'], .product-info input[type=\'radio\']:checked, .product-info input[type=\'checkbox\']:checked, .product-info select, .product-info textarea'),
        dataType: 'json',
                // ...
        });
});

如果您查看data参数,您会看到.product-infodiv 中存在的所有输入、选择、文本区域等都已填充并发布到 PHP。

因此,我将带有自定义价格值的隐藏输入呈现到该.product-infodiv 中,根本不必修改 AJAX 请求。假设该输入的名称为custom_price.

2.checkout/cart/add
打开catalog/controller/checkout/cart.php并搜索add方法。在这里,所有的魔法都应该完成。在这部分代码之后:

            if (isset($this->request->post['option'])) {
                $option = array_filter($this->request->post['option']);
            } else {
                $option = array();  
            }

我会添加这个:

            if(isset($this->request->post['custom_price']) && $this->isCustomPriceValid($this->request->post['custom_price'])) {
                $custom_price = $this->request->post['custom_price'];
            } else {
                $custom_price = false;
            }

实施isCustomPriceValid()满足您要求的方法...并在此处进行最后一次编辑 - 更改此行:

$this->cart->add($this->request->post['product_id'], $quantity, $option);

到:

$this->cart->add($this->request->post['product_id'], $quantity, $option, $custom_price);

3. 购物车
现在打开这个文件:system/library/cart.php然后再次搜索add方法。您必须将方法的定义更改为此:

public function add($product_id, $qty = 1, $option = array(), $custom_price = false) {

在此方法中的最后一行代码之前,添加另一个:(
由于OP的注释,此代码被编辑)

    // ...

    if($custom_price) {
        if(!isset($this->session->data['cart']['custom_price'])) {
            $this->session->data['cart']['custom_price'] = array();
        }

        $this->session->data['cart']['custom_price'][$key] = $custom_price;
    }

    $this->data = array(); // <- last line
}

最后一次编辑应该在该方法getProducts()中,因为这是从数据库加载所有数据并将它们转发到其他控制器以进行显示。

现在我不知道您的自定义价格是应该覆盖价格+期权价格还是只覆盖价格,因此期权价格将被添加到其中,所以我会坚持第二选择,因为它更具描述性,而第一选择可以很容易从我的例子中得出。

搜索线路

$price = $product_query->row['price'];

并在添加之后

if(isset($this->session->data['cart']['custom_price'][$key])) {
    $price = $this->session->data['cart']['custom_price'][$key];
}

现在应该用自定义价格覆盖价格。进一步检查产品的价格后来设置为:

$this->data[$key] = array(
    // ...
    'price'           => ($price + $option_price),
    // ...              
);

因此,如果您想用自定义价格覆盖整个价格,请在该数组之后添加该条件(而不是 after $price = ...;):

if(isset($this->session->data['cart']['custom_price'][$key])) {
    $this->data[$key]['price'] = $this->session->data['cart']['custom_price'][$key];
}

这应该是它。我没有测试代码,它可能会或可能不会稍作修改。我正在使用 OC 1.5.5.1。这应该只会将您指向正确的方向(同时相信终点并不远)。

享受!

于 2013-08-16T09:29:34.490 回答
2

-“这应该只将你指向正确的方向(虽然相信终点并不远)。通过@shadyyx”

谢谢@shadyyx - 展示了正确的方法......我设法让它工作,这就是如何:

if(isset($this->session->data['cart']['custom_price'][$key])) {
    $this->data[$key]['price'] = $this->session->data['cart']['custom_price'][$key];
} 

应该 :

if(isset($this->session->data['custom_price'][$key])) {
    $this->data[$key]['price'] = $this->session->data['custom_price'][$key];
}

再次感谢您,我希望有人觉得这很有用。

于 2013-09-26T08:46:18.473 回答