영카트 [YC5] $(달러) 쇼핑몰로 전환하기 .. (( 작업중 ))
페이지 정보
본문
수정한 파일목록
1. / adm / shop_admin / itemform.php
2. / adm / shop_admin / itemoption.php
3. / js / shop.js
4. / lib / shop.lib.php
5. / shop / itemoption.php
6. / skin / shop / basic / item.form.skin.php
Ⅰ. phpMyAdmin 등에서 테이블의 필드속성 변경
1. g5_shop_item
it_cust_price : int(11) → float
it_price : int(11) → float
it_point : tinyint(4) → float
it_supply_point : int(11) → float
it_sc_price : int(11) → float
it_sc_minimum : int(11) → float
2. g5_shop_item_option
io_price : int(11) → float
Ⅱ. 판매가격 단위 변경
1. / adm / shop_admin / itemform.php
판매가격(530줄) / 시중가격(543줄) / 기본배송비(1149줄) 원 → $ 로 변경
2. / adm / shop_admin / itemoption.php
80줄
$opt_price = (int)$row['io_price'];
↓↓↓↓
$opt_price = $row['io_price']; // 원 → 달러(USD) 변경
3. / js / shop.js
356줄
opt_prc = "(+"+number_format(String(price))+"원)";
↓↓↓↓
opt_prc = "(+$"+String(price)+")"; // 원 → 달러(USD) 변경
358줄
opt_prc = "("+number_format(String(price))+"원)";
↓↓↓↓
opt_prc = "($"+String(price)+")"; // 원 → 달러(USD) 변경
424줄
var it_price = parseInt($("input#it_price").val());
↓↓↓↓
var it_price = parseFloat($("input#it_price").val()); // 원 → 달러(USD) 변경
435줄
price = parseInt($(this).val());
↓↓↓↓
price = parseFloat($(this).val()); // 원 -> 달러(USD) 변경
446줄
$("#sit_tot_price").empty().html("총 금액 : "+number_format(String(total))+"원");
↓↓↓↓
$("#sit_tot_price").empty().html("총 금액 : $"+String(total.toFixed(2))+""); // 원 → 달러(USD) 변경
4. / lib / shop.lib.php
592줄
$price = number_format($price, 0).'원';
↓↓↓↓
$price = '$'.number_format($price, 2); // 원 → 달러(USD) 변경
608줄
return (int)$price;
↓↓↓↓
return $price; // 원 -> 달러(USD) 변경
615줄
return number_format($point, 0).'점';
↓↓↓↓
return number_format($point, 2).'점'; // 원 → 달러(USD) 변경
622줄
return (int)($amount * $point / 100);
↓↓↓↓
return ($amount * $point / 100); // 원 → 달러(USD) 변경
985줄
$price = ' + '.number_format($row['io_price']).'원';
↓↓↓↓
$price = ' + $'.number_format($row['io_price'],2); // 원 → 달러(USD) 변경
987줄
$price = ' '.number_format($row['io_price']).'원';
↓↓↓↓
$price = ' $'.number_format($row['io_price'],2); // 원 → 달러(USD) 변경
1034줄
$price = ' + '.number_format($row['io_price']).'원';
↓↓↓↓
$price = ' + $'.number_format($row['io_price'],2); // 원 → 달러(USD) 변경
1037줄
$price = ' '.number_format($row['io_price']).'원';
↓↓↓↓
$price = ' $'.number_format($row['io_price'],2); // 원 → 달러(USD) 변경
1555줄
$dc = floor(($tot_od_price * ($cp['cp_price'] / 100)) / $cp['cp_trunc']) * $cp['cp_trunc'];
↓↓↓↓
$dc = (floor((($tot_od_price * ($cp['cp_price'] / 100)) / $cp['cp_trunc'])*100)/100) * $cp['cp_trunc']; // 원 → 달러(USD) 변경
1583줄
$dc = floor(($send_cost * ($cp['cp_price'] / 100)) / $cp['cp_trunc']) * $cp['cp_trunc'];
↓↓↓↓
$dc = (floor((($send_cost * ($cp['cp_price'] / 100)) / $cp['cp_trunc'])*100)/100) * $cp['cp_trunc']; // 원 → 달러(USD)러 변경
1675줄
$it_point = floor(($it_price * ($it['it_point'] / 100) / $trunc)) * $trunc;
↓↓↓↓
$it_point = (floor((($it_price * ($it['it_point'] / 100) / $trunc))*100)/100) * $trunc; // 원 → 달러(USD) 변경
1768줄
$sendcost = (int)$ct['it_sc_price'] * $q;
↓↓↓↓
$sendcost = $ct['it_sc_price'] * $q; // 원 → 달러(USD) 변경
1826줄
$sendcost = (int)$it['it_sc_price'] * $q;
↓↓↓↓
$sendcost = $it['it_sc_price'] * $q; // 원 → 달러(USD) 변경
5. / shop / itemoption.php
43줄
$price = ' + '.number_format($row['io_price']).'원';
↓↓↓↓
$price = ' + $'.number_format($row['io_price'],2); // 원 → 달러(USD) 변경
45줄
$price = ' '.number_format($row['io_price']).'원';
↓↓↓↓
$price = ' $'.number_format($row['io_price'],2); // 원 → 달러(USD) 변경
6. / skin / shop / basic / item.form.skin.php
157줄
echo number_format($it_point).'점';
↓↓↓↓
echo number_format($it_point,2).'점'; // 원 → 달러(USD) 변경
264줄
<span class="sit_opt_prc">(+0원)</span>
↓↓↓↓
<span class="sit_opt_prc">(+$0)</span><!-- 원 → 달러(USD) 변경 -->
1. / adm / shop_admin / itemform.php
2. / adm / shop_admin / itemoption.php
3. / js / shop.js
4. / lib / shop.lib.php
5. / shop / itemoption.php
6. / skin / shop / basic / item.form.skin.php
Ⅰ. phpMyAdmin 등에서 테이블의 필드속성 변경
1. g5_shop_item
it_cust_price : int(11) → float
it_price : int(11) → float
it_point : tinyint(4) → float
it_supply_point : int(11) → float
it_sc_price : int(11) → float
it_sc_minimum : int(11) → float
2. g5_shop_item_option
io_price : int(11) → float
Ⅱ. 판매가격 단위 변경
1. / adm / shop_admin / itemform.php
판매가격(530줄) / 시중가격(543줄) / 기본배송비(1149줄) 원 → $ 로 변경
2. / adm / shop_admin / itemoption.php
80줄
$opt_price = (int)$row['io_price'];
↓↓↓↓
$opt_price = $row['io_price']; // 원 → 달러(USD) 변경
3. / js / shop.js
356줄
opt_prc = "(+"+number_format(String(price))+"원)";
↓↓↓↓
opt_prc = "(+$"+String(price)+")"; // 원 → 달러(USD) 변경
358줄
opt_prc = "("+number_format(String(price))+"원)";
↓↓↓↓
opt_prc = "($"+String(price)+")"; // 원 → 달러(USD) 변경
424줄
var it_price = parseInt($("input#it_price").val());
↓↓↓↓
var it_price = parseFloat($("input#it_price").val()); // 원 → 달러(USD) 변경
435줄
price = parseInt($(this).val());
↓↓↓↓
price = parseFloat($(this).val()); // 원 -> 달러(USD) 변경
446줄
$("#sit_tot_price").empty().html("총 금액 : "+number_format(String(total))+"원");
↓↓↓↓
$("#sit_tot_price").empty().html("총 금액 : $"+String(total.toFixed(2))+""); // 원 → 달러(USD) 변경
4. / lib / shop.lib.php
592줄
$price = number_format($price, 0).'원';
↓↓↓↓
$price = '$'.number_format($price, 2); // 원 → 달러(USD) 변경
608줄
return (int)$price;
↓↓↓↓
return $price; // 원 -> 달러(USD) 변경
615줄
return number_format($point, 0).'점';
↓↓↓↓
return number_format($point, 2).'점'; // 원 → 달러(USD) 변경
622줄
return (int)($amount * $point / 100);
↓↓↓↓
return ($amount * $point / 100); // 원 → 달러(USD) 변경
985줄
$price = ' + '.number_format($row['io_price']).'원';
↓↓↓↓
$price = ' + $'.number_format($row['io_price'],2); // 원 → 달러(USD) 변경
987줄
$price = ' '.number_format($row['io_price']).'원';
↓↓↓↓
$price = ' $'.number_format($row['io_price'],2); // 원 → 달러(USD) 변경
1034줄
$price = ' + '.number_format($row['io_price']).'원';
↓↓↓↓
$price = ' + $'.number_format($row['io_price'],2); // 원 → 달러(USD) 변경
1037줄
$price = ' '.number_format($row['io_price']).'원';
↓↓↓↓
$price = ' $'.number_format($row['io_price'],2); // 원 → 달러(USD) 변경
1555줄
$dc = floor(($tot_od_price * ($cp['cp_price'] / 100)) / $cp['cp_trunc']) * $cp['cp_trunc'];
↓↓↓↓
$dc = (floor((($tot_od_price * ($cp['cp_price'] / 100)) / $cp['cp_trunc'])*100)/100) * $cp['cp_trunc']; // 원 → 달러(USD) 변경
1583줄
$dc = floor(($send_cost * ($cp['cp_price'] / 100)) / $cp['cp_trunc']) * $cp['cp_trunc'];
↓↓↓↓
$dc = (floor((($send_cost * ($cp['cp_price'] / 100)) / $cp['cp_trunc'])*100)/100) * $cp['cp_trunc']; // 원 → 달러(USD)러 변경
1675줄
$it_point = floor(($it_price * ($it['it_point'] / 100) / $trunc)) * $trunc;
↓↓↓↓
$it_point = (floor((($it_price * ($it['it_point'] / 100) / $trunc))*100)/100) * $trunc; // 원 → 달러(USD) 변경
1768줄
$sendcost = (int)$ct['it_sc_price'] * $q;
↓↓↓↓
$sendcost = $ct['it_sc_price'] * $q; // 원 → 달러(USD) 변경
1826줄
$sendcost = (int)$it['it_sc_price'] * $q;
↓↓↓↓
$sendcost = $it['it_sc_price'] * $q; // 원 → 달러(USD) 변경
5. / shop / itemoption.php
43줄
$price = ' + '.number_format($row['io_price']).'원';
↓↓↓↓
$price = ' + $'.number_format($row['io_price'],2); // 원 → 달러(USD) 변경
45줄
$price = ' '.number_format($row['io_price']).'원';
↓↓↓↓
$price = ' $'.number_format($row['io_price'],2); // 원 → 달러(USD) 변경
6. / skin / shop / basic / item.form.skin.php
157줄
echo number_format($it_point).'점';
↓↓↓↓
echo number_format($it_point,2).'점'; // 원 → 달러(USD) 변경
264줄
<span class="sit_opt_prc">(+0원)</span>
↓↓↓↓
<span class="sit_opt_prc">(+$0)</span><!-- 원 → 달러(USD) 변경 -->