카테고리 할인 쿠폰, 하위 분류에도 적용하기
영카트에서 쿠폰 발행시 '카테고리 할인', 분류를 '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 팁자료실
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 371 |
이로홀딩스
|
2년 전 | 1556 | |
| 370 |
페이투페이
|
2년 전 | 1557 | |
| 369 | 2년 전 | 1306 | ||
| 368 | 2년 전 | 1720 | ||
| 367 | 2년 전 | 2063 | ||
| 366 | 2년 전 | 2277 | ||
| 365 | 2년 전 | 2081 | ||
| 364 | 2년 전 | 1609 | ||
| 363 | 3년 전 | 1350 | ||
| 362 | 3년 전 | 3121 | ||
| 361 | 3년 전 | 1924 | ||
| 360 |
|
3년 전 | 2675 | |
| 359 | 3년 전 | 2431 | ||
| 358 | 3년 전 | 1593 | ||
| 357 |
welcome
|
3년 전 | 1321 | |
| 356 | 3년 전 | 1634 | ||
| 355 | 3년 전 | 1898 | ||
| 354 | 3년 전 | 1564 | ||
| 353 | 3년 전 | 1272 | ||
| 352 | 3년 전 | 1323 | ||
| 351 | 3년 전 | 1431 | ||
| 350 | 3년 전 | 2520 | ||
| 349 | 3년 전 | 1677 | ||
| 348 | 3년 전 | 3277 | ||
| 347 | 4년 전 | 4074 | ||
| 346 | 4년 전 | 2826 | ||
| 345 | 4년 전 | 4495 | ||
| 344 |
별지기천사
|
4년 전 | 3990 | |
| 343 | 4년 전 | 3413 | ||
| 342 | 4년 전 | 2029 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기