osCommerce 中没有货号?

问题描述

我最近安装了 osCommerce。我现在想迁移文章,但在 products 表中找不到与文章编号匹配的任何列:

CREATE TABLE `products` (
  `products_id` int(11) NOT NULL,`products_quantity` int(4) NOT NULL,`products_model` varchar(12) COLLATE utf8_unicode_ci DEFAULT NULL,`products_image` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,`products_price` decimal(15,4) NOT NULL,`products_date_added` datetime NOT NULL,`products_last_modified` datetime DEFAULT NULL,`products_date_available` datetime DEFAULT NULL,`products_weight` decimal(5,2) NOT NULL,`products_status` tinyint(1) NOT NULL,`products_tax_class_id` int(11) NOT NULL,`manufacturers_id` int(11) DEFAULT NULL,`products_ordered` int(11) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

在 orCommerce 中真的不应该支持文章编号,还是我遗漏了什么?当然,这不是真正的问题,而是添加文章编号的写作任务,但如果我只是忽略某些东西,我不想重新发明轮子。

我正在运行 osCommerce 2.3.4。

解决方法

products_model

advanced_search.php 显示型号应为文章编号,因为此列将被翻译为德语“Artikelnummer”(= 文章编号)。