有没有办法在 magento 中调整重量的小数点?
Is there a way to adjust decimal points on weight in magento?
默认小数点是 4 位“1.0000”,有没有办法在前端调整它,只显示 2 位小数点?像:“1.00”
谢谢!
你可以使用 php 函数
<?php echo number_format($weight,2); ?>
在数据库中,权重属性 backend_type 设置为十进制。
要更改 backend_type 设置为小数的属性的小数精度,
您必须更改此 table 中值的类型:
catalog_product_entity_decimal
如果你还没有改变,你应该看到:
decimal(12,4)
在你的情况下,你必须替换为
decimal(12,2)
默认小数点是 4 位“1.0000”,有没有办法在前端调整它,只显示 2 位小数点?像:“1.00”
谢谢!
你可以使用 php 函数
<?php echo number_format($weight,2); ?>
在数据库中,权重属性 backend_type 设置为十进制。
要更改 backend_type 设置为小数的属性的小数精度,
您必须更改此 table 中值的类型:
catalog_product_entity_decimal
如果你还没有改变,你应该看到:
decimal(12,4)
在你的情况下,你必须替换为
decimal(12,2)