0

在管理订单页面中,我想将订单更改为哪个客户组,它将允许除客户组页面之外的其他编辑。有谁知道如何解决这个问题?打开购物车 2.0.1.1

任何帮助,将不胜感激

谢谢

4

1 回答 1

0

我猜它或多或少与我刚刚发现这个错误的 Oscommerce 相同。删除按钮调用 cID 出错

管理员/customers_groups.php

在文档末尾,大约第 800 行:

寻找:

$contents[] = array(
 'align' => 'center',
 'text' => tep_draw_button(
    IMAGE_EDIT,
    'document',
    tep_href_link(
       FILENAME_CUSTOMERS_GROUPS,
       tep_get_all_get_params(
          array('cID', 'action')
       ) . 'cID=' . **$cInfo->categories_group_id** . '&action=edit')
    ) . tep_draw_button(
          IMAGE_DELETE,
          'trash',
          tep_href_link(
             FILENAME_CUSTOMERS_GROUPS,
             tep_get_all_get_params(
                array('cID', 'action')
             ) . 'cID=' . **$cInfo->categories_group_id** . '&action=confirm'
          )
    )
);

更改: $cInfo->categories_group_id

收件人: $cInfo->customers_group_id

看起来这是某些更新中的错字..

希望能帮助到你。

于 2015-05-24T23:10:13.840 回答