Commerce V7 - 有没有办法分开地址?

时间:2017-05-05 06:24:53

标签: e-commerce websphere-commerce wcs

我一直在研究AuroraStorefrontAssetStore中的'SharedShippingBillingPage'功能,但我没有太多,IBM的信息中心对它很安静。

在这方面是否有任何链接可用?

我在db中检查过默认启用了此功能,但我不想使用它,我想禁用它。我们的要求是在我们的应用程序中使用单独的帐单和送货地址。

怎么做? IBM是否提供了从用户那里获取单独的计费和送货地址并保存的方法?

1 个答案:

答案 0 :(得分:0)

查看商店管理工具,看看是否可以使用此功能进行切换 - 这可能取决于您的安装FP版本。

如果不是(并非所有功能都公开),那么请查看数据库级别。请参阅此related tutorial,其中解释了所涉及的表格。

快速检查一下,看看这会给你带来什么:

select * from dmemspotdef d inner join emspot e on e.emspot_id=d.emspot_id where e.emspot_id in (select emspot_id from emspot where name like 'SharedShippingBillingPage');

禁用(适用于所有商店):

update dmemspotdef set content = 'false' where emspot_id IN (select emspot_id from emspot where name = 'SharedShippingBillingPage');
相关问题