카테고리 할인 쿠폰, 하위 분류에도 적용하기
영카트에서 쿠폰 발행시 '카테고리 할인', 분류를 '10' 으로 적용시..
하위분류인 '1020' 의 상품에는 적용이 되지 않습니다.
그래서 쿠폰관리에서 적용한 분류가, 하위분류의 상품에도 적용할 수 있도록 하는 방법입니다.
1) /extend/user.config.php 에 다음의 함수 추가
[code]
function get_cp_target($ca_id, $ca_id2, $ca_id3) {
$arr = array();
$len = strlen($ca_id);
for ($i = 2; $i <= $len; $i += 2) {
$arr[] = "'" . substr($ca_id, 0, $i) . "'";
}
$len = strlen($ca_id2);
for ($i = 2; $i <= $len; $i += 2) {
$arr[] = "'" . substr($ca_id2, 0, $i) . "'";
}
$len = strlen($ca_id3);
for ($i = 2; $i <= $len; $i += 2) {
$arr[] = "'" . substr($ca_id3, 0, $i) . "'";
}
$arr = array_unique($arr);
$str = implode(',', $arr);
return $str;
}
[/code]
2) /shop/orderform.sub.php 수정
[code]
$sql = " select cp_id
from {$g5['g5_shop_coupon_table']}
where mb_id IN ( '{$member['mb_id']}', '전체회원' )
and cp_start <= '".G5_TIME_YMD."'
and cp_end >= '".G5_TIME_YMD."'
and cp_minimum <= '$sell_price'
and (
( cp_method = '0' and cp_target = '{$row['it_id']}' )
OR
( cp_method = '1' and ( cp_target IN ( '{$row['ca_id']}', '{$row['ca_id2']}', '{$row['ca_id3']}' ) ) )
) ";
[/code]
=>
[code]
$target_ca_id = get_cp_target($row['ca_id'], $row['ca_id2'], $row['ca_id3']);
$sql = " select cp_id
from {$g5['g5_shop_coupon_table']}
where mb_id IN ( '{$member['mb_id']}', '전체회원' )
and cp_start <= '".G5_TIME_YMD."'
and cp_end >= '".G5_TIME_YMD."'
and cp_minimum <= '$sell_price'
and (
( cp_method = '0' and cp_target = '{$row['it_id']}' )
OR
( cp_method = '1' and ( cp_target IN ( {$target_ca_id} ) ) )
) ";
[/code]
댓글 5개
게시판 목록
영카트5 팁자료실
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 341 | 4년 전 | 4073 | ||
| 340 | 4년 전 | 3379 | ||
| 339 | 4년 전 | 3210 | ||
| 338 | 4년 전 | 3772 | ||
| 337 | 4년 전 | 4131 | ||
| 336 | 4년 전 | 2811 | ||
| 335 |
|
4년 전 | 2700 | |
| 334 | 4년 전 | 2254 | ||
| 333 |
|
4년 전 | 2316 | |
| 332 |
|
4년 전 | 3154 | |
| 331 |
|
4년 전 | 3799 | |
| 330 | 4년 전 | 2210 | ||
| 329 | 4년 전 | 3703 | ||
| 328 | 4년 전 | 2167 | ||
| 327 | 4년 전 | 2730 | ||
| 326 | 4년 전 | 2590 | ||
| 325 | 4년 전 | 5033 | ||
| 324 | 4년 전 | 2198 | ||
| 323 |
파이브스톤즈
|
5년 전 | 3024 | |
| 322 | 5년 전 | 2525 | ||
| 321 | 5년 전 | 2557 | ||
| 320 | 5년 전 | 1889 | ||
| 319 | 5년 전 | 2569 | ||
| 318 | 5년 전 | 4110 | ||
| 317 | 5년 전 | 4109 | ||
| 316 | 5년 전 | 2654 | ||
| 315 | 5년 전 | 3835 | ||
| 314 | 5년 전 | 3647 | ||
| 313 |
|
5년 전 | 1647 | |
| 312 | 5년 전 | 4155 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기