New Function #143
closed[QA] 20231102
Description
1.Spec
- refer to attach ppt
Files
Updated by Deca Park over 1 year ago
- File 1107 코레일유통 요청사항_en.pptx 1107 코레일유통 요청사항_en.pptx added
Updated by Toby Pham over 1 year ago
- Status changed from In Progress to Resolved
- Assignee changed from Toby Pham to Deca Park
Updated by Deca Park over 1 year ago
[Test Issues]
1.대시보드 (p1) - refer to dev server URL: http://210.123.124.139:8084/main
1) 최근 6개월 가입 현황
a) graph area
- decrease height a lot
b) summary area
- display on the right side of the graph area
2) TOP 10 graph
- display graph under title (above TOP 10 list)
- give small span between graph area and TOP 10 list
3) 포인트 적립 TOP 10
- currenlty, if row label is long, 연/월/일 button is shown next to TOP 10 list
(give fixd width into row label)
Updated by Deca Park over 1 year ago
- Status changed from Resolved to Feedback
- Assignee changed from Deca Park to Toby Pham
Updated by Toby Pham over 1 year ago
- Status changed from Feedback to Resolved
- Assignee changed from Toby Pham to Deca Park
Updated by Deca Park over 1 year ago
- Status changed from Resolved to Feedback
- Assignee changed from Deca Park to Toby Pham
[Test Issues]
1.TOP10 list logic
1) 월 (month)
- get data with this month (yyyy-mm)
- currently, get wrong data because it checks just month
2) 일 (day)
- get data with today (yyyy-mm-dd)
- currently, get wrong data because it checks just day
[current SQL]
<when test="period == 'month'">
AND DATE_FORMAT(A.reg_date, '%m') = DATE_FORMAT(NOW(), '%m')
</when>
<when test="period == 'day'">
AND DATE_FORMAT(A.reg_date, '%d') = DATE_FORMAT(NOW(), '%d')
</when>
Updated by Toby Pham over 1 year ago
- Status changed from Feedback to Resolved
- Assignee changed from Toby Pham to Deca Park