모바일 상품상세페이지에서 판매가격 노출되지 않던 오류 수정

This commit is contained in:
chicpro
2013-05-16 11:01:51 +09:00
parent ae51f1b939
commit 30156ffeb4

View File

@ -629,8 +629,8 @@ else
if (typeof(f.it_price) != 'undefined')
f.it_price.value = amount;
if (typeof(f.disp_sell_amount) != 'undefined')
f.disp_sell_amount.value = number_format(String(amount * ct_qty));
if (typeof(f.disp_sell_price) != 'undefined')
f.disp_sell_price.value = number_format(String(amount * ct_qty));
if (typeof(f.disp_cust_price) != 'undefined')
f.disp_cust_price.value = number_format(String(cust_amount * ct_qty));