Opencart中的市场合作伙伴错误



当我点击市场>合作伙伴时,将显示一个错误:

注意:错误:无法加载模型/home/payangmy/public_html/payang/admin/model/sale/customer_group.php!在里面/home/payangmy/public_html/payang/system/storage/modification/system/engine/loader.php在线63

如何解决?

在opencart\admin\controller\customerpartner\partner.php 中

更换以下线路:

$this->load->model('sale/customer_group');
$this->data['customer_groups'] = $this->model_sale_customer_group->getCustomerGroups();

$this->load->model('customer/customer_group');
$this->data['customer_groups'] = $this->model_customer_customer_group->getCustomerGroups();

最新更新