[YC5] $(달러) 쇼핑몰로 전환하기 .. (( 작업중 )) > 기술자료 | 해피정닷컴

[YC5] $(달러) 쇼핑몰로 전환하기 .. (( 작업중 )) > 기술자료

본문 바로가기

사이트 내 전체검색

[YC5] $(달러) 쇼핑몰로 전환하기 .. (( 작업중 )) > 기술자료

영카트 [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) 변경 -->

댓글목록

profile_image

hiohawaii님의 댓글

no_profile hiohawaii 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 작성일

원>달러 표기 업데이트 된 영카트 파일 어디서 찾을수있나요?
(아미나 보드  사용중입니다.)

profile_image

관리자1님의 댓글의 댓글

관리자1 쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 작성일

본문의 안내에 따라서 하나씩 직접 수정해야 합니다
별도 첨부파일은 제공하지 않습니다


Total 123건 3 페이지
  • RSS
기술자료 목록
83
영카트   11996  2016-01-16 13:55  
82
영카트   12349  2015-10-31 07:19 ~ 2017-12-12 11:24  
81
영카트   11890  2015-03-05 17:08  
80
영카트   12299  2015-03-05 16:53 ~ 2018-11-29 18:27  
79
영카트   14653  2014-12-10 01:05 ~ 2014-12-17 00:00  
78
영카트   18836  2014-11-27 18:33 ~ 2017-06-01 00:00  
77
영카트   16284  2014-10-31 22:39  
76
영카트   15812  2014-10-31 13:28  
75
영카트   14695  2014-10-28 14:29 ~ 2014-10-28 00:00  
74
영카트   11680  2014-10-21 15:12  
73
영카트   24184  2014-09-30 01:32 ~ 2015-02-23 00:00  
72
영카트   12762  2014-09-29 18:25  
71
영카트   14483  2014-09-29 17:32 ~ 2014-10-28 00:00  
70
영카트   13034  2014-09-16 10:23  
69
영카트   15422  2014-09-05 22:06 ~ 2015-05-08 00:00  
68
영카트   17770  2014-09-05 18:18  
67
영카트   372751  2014-08-30 00:07  
66
영카트   14990  2014-08-09 16:45  
열람
영카트   24201  2014-08-08 01:14 ~ 2021-08-26 15:47  
64
영카트   13873  2014-08-06 23:20  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2025 해피정닷컴. All Rights Reserved.