osCommerce 中没有商品编号?
No article number in osCommerce?
我最近安装了 osCommerce。我现在想迁移文章,但在 products
table 中找不到与文章编号匹配的任何列:
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”(=货品编号)。
我最近安装了 osCommerce。我现在想迁移文章,但在 products
table 中找不到与文章编号匹配的任何列:
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”(=货品编号)。