Skip to content

Commit f85a304

Browse files
authored
Merge pull request #300 from ASSU-dev/fix/#299-partnership-case-fix
[REFACTOR/#299] 식사 시 -> 방문 시 로 수정
2 parents 3ce2946 + da8994a commit f85a304

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/com/assu/server/domain/partnership/dto/PaperContentResponseDTO.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,18 +73,18 @@ private static String buildPaperContentText(PaperContent content, List<String> g
7373
if (content.getCriterionType() == CriterionType.HEADCOUNT &&
7474
content.getOptionType() == OptionType.SERVICE &&
7575
isGoodsMultiple) {
76-
result = peopleValue + "명 이상 식사 시 " + content.getCategory() + " 제공";
76+
result = peopleValue + "명 이상 방문 시 " + content.getCategory() + " 제공";
7777
}
7878
// 2. HEADCOUNT + SERVICE + 단일 goods
7979
else if (content.getCriterionType() == CriterionType.HEADCOUNT &&
8080
content.getOptionType() == OptionType.SERVICE &&
8181
isGoodsSingle) {
82-
result = peopleValue + "명 이상 식사 시 " + goodsList.get(0) + " 제공";
82+
result = peopleValue + "명 이상 방문 시 " + goodsList.get(0) + " 제공";
8383
}
8484
// 3. HEADCOUNT + DISCOUNT
8585
else if (content.getCriterionType() == CriterionType.HEADCOUNT &&
8686
content.getOptionType() == OptionType.DISCOUNT) {
87-
result = peopleValue + "명 이상 식사 시 " + content.getDiscount() + "% 할인";
87+
result = peopleValue + "명 이상 방문 시 " + content.getDiscount() + "% 할인";
8888
}
8989
// 4. PRICE + SERVICE + 여러 개 goods
9090
else if (content.getCriterionType() == CriterionType.PRICE &&

0 commit comments

Comments
 (0)