价格格式化

【格式】

  1. {func price_format $price $currency_id [$show_currency_id]}
  2. {func price_format_val $price $currency_id [$show_currency_id]}

【说明】

此代码用于格式化显示价格,

$price:数据库中保存的价格数值(四位小数点)

$currency_id:数据库这条价格数值对应的货币ID

$show_currency_id:当前站点使用的货币ID(此项可以为空,为空时使用站点的默认货币ID)

price_format:这个用于显示值

price_format_val:用于计算(不带货币单位)

货币管理在后台:菜单→订单→货币及汇率

【示例】

1、详细页里显示价格:

  1. {func price_format $rs.price $rs.currency_id}

显示效果:

blob

2、列表页里显示价格:

  1. {func price_format $value.price $value.currency_id}

显示效果:

blob