Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在荷兰,增值税将从 19% 变为 21%。
现在我的网上商店有 4000 种产品,我想同时更改所有价格。
价格存储在 sql 数据库中。我的问题是:是否可以选择我的价格并额外增加 2% 的价格?
这不是 2%。您可以通过除以旧汇率并乘以新汇率来转换它:
update PriceTable set Price = Price / 1.19 * 1.21
加起来增加了 1.68%。
您使用的是 ubercart 还是 commerce 模块?如果是这种情况,使用税/增值税配置很容易。