marketing info 업데이트 API

- pid가 빈칸이면 등록하지 않도록 수정
This commit is contained in:
Klaus 2025-03-05 00:49:50 +09:00
parent a17a6a41da
commit 2dd75ae7e8
1 changed files with 1 additions and 1 deletions

View File

@ -656,7 +656,7 @@ class MemberService(
member.adid = adid
}
if (pid != member.activePid) {
if (pid != member.activePid && pid.isNotBlank()) {
member.activePid = pid
member.partnerExpirationDatetime = LocalDateTime.now().plusYears(1)
}