duanguanye4124 2014-06-21 09:22
浏览 40
已采纳

如何从自定义字段Opencart数据库中获取价值?

I developed the OpenCart module. I intend to add the receipt number on each product to add field "nota" in "oc_product" table. The plan when users place an order, then any goods ordered will get a receipt number when you are on the "View Cart"

I've been following the rules of how to add custom fields in OpenCart and get the value of the field "nota" extension such as this:

http://www.opencart.com/index.php?route=extension/extension/info&extension_id=2838

but it appears an error in index.php?route=checkout/cart

Notice: Undefined index: nota in D:\DATA PENTING\Project\Proyek\htdocs\toko\catalog\controller\checkout\cart.php on line 276

This error only when in the "View Cart", if the other page like index.php?route=product/product&product_id=* no error occurs and showing receipt number.

and if i follow error i found this codes and then add codes to get "nota" value, but still error occurs.

$this->data['products'][] = array(
                    'key'                 => $product['key'],
                    'thumb'               => $image,
                    'name'                => $product['name'],
                    'model'               => $product['model'],
                    'nota'                => $product['nota'],
                    'option'              => $option_data,
                    'quantity'            => $product['quantity'],
                    'stock'               => $product['stock'] ? true : !(!$this->config->get('config_stock_checkout') || $this->config->get('config_stock_warning')),
                    'reward'              => ($product['reward'] ? sprintf($this->language->get('text_points'), $product['reward']) : ''),
                    'price'               => $price,
                    'total'               => $total,
                    'href'                => $this->url->link('product/product', 'product_id=' . $product['product_id']),
                    'remove'              => $this->url->link('checkout/cart', 'remove=' . $product['key']),
                    'recurring'           => $product['recurring'],
                    'profile_name'        => $product['profile_name'],
                    'profile_description' => $profile_description,
                );
            }

Anyone can help this error?

  • 写回答

1条回答 默认 最新

  • dsykx64220 2014-06-22 10:06
    关注

    please edit system/library/cart.php

    after this line :

    'name' => $product_query->row['name'],

    add:

    'nota' => $product_query->row['nota'],

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 深度学习根据CNN网络模型,搭建BP模型并训练MNIST数据集
  • ¥15 lammps拉伸应力应变曲线分析
  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛
  • ¥15 请问Lammps做复合材料拉伸模拟,应力应变曲线问题
  • ¥30 python代码,帮调试,帮帮忙吧
  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建