Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
service-campaign
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nguyen Ha
service-campaign
Commits
6893fb8c
Commit
6893fb8c
authored
Aug 28, 2019
by
Tu Bach
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tubn campaign execute interactive
parent
8890ea24
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
209 additions
and
152 deletions
+209
-152
src/main/java/com/viettel/campaign/repository/ccms_full/CampaignExecuteRepository.java
...paign/repository/ccms_full/CampaignExecuteRepository.java
+2
-2
src/main/java/com/viettel/campaign/repository/ccms_full/impl/CampaignExecuteRepositoryImp.java
...pository/ccms_full/impl/CampaignExecuteRepositoryImp.java
+183
-111
src/main/java/com/viettel/campaign/service/CampaignExecuteService.java
.../com/viettel/campaign/service/CampaignExecuteService.java
+2
-1
src/main/java/com/viettel/campaign/service/impl/CampaignExecuteServiceImp.java
...ttel/campaign/service/impl/CampaignExecuteServiceImp.java
+12
-3
src/main/java/com/viettel/campaign/web/dto/ContactCusResDTO.java
...n/java/com/viettel/campaign/web/dto/ContactCusResDTO.java
+0
-31
src/main/java/com/viettel/campaign/web/dto/ContactCustResultDTO.java
...va/com/viettel/campaign/web/dto/ContactCustResultDTO.java
+3
-1
src/main/java/com/viettel/campaign/web/rest/CampaignExecuteController.java
.../viettel/campaign/web/rest/CampaignExecuteController.java
+6
-2
src/main/resources/application.yml
src/main/resources/application.yml
+1
-1
No files found.
src/main/java/com/viettel/campaign/repository/ccms_full/CampaignExecuteRepository.java
View file @
6893fb8c
...
...
@@ -18,9 +18,9 @@ public interface CampaignExecuteRepository {
List
<
ApParamDTO
>
getComboCampaignType
(
String
companySiteId
);
ResultDTO
getInteractiveResult
(
CampaignRequestDTO
dto
);
List
<
ContactCustResultDTO
>
getInteractiveResult
(
CampaignRequestDTO
dto
,
Pageable
pageable
);
List
<
ContactCus
Res
DTO
>
getExcelInteractiveResult
(
CampaignRequestDTO
dto
);
List
<
ContactCus
tResult
DTO
>
getExcelInteractiveResult
(
CampaignRequestDTO
dto
);
List
<
ContactCustResultDTO
>
getContactCustById
(
CampaignRequestDTO
dto
);
//</editor-fold: hungtt>
...
...
src/main/java/com/viettel/campaign/repository/ccms_full/impl/CampaignExecuteRepositoryImp.java
View file @
6893fb8c
...
...
@@ -7,15 +7,18 @@ import com.viettel.campaign.repository.ccms_full.TimeZoneDialModeRepository;
import
com.viettel.campaign.utils.Constants
;
import
com.viettel.campaign.utils.DataUtil
;
import
com.viettel.campaign.utils.HibernateUtil
;
import
com.viettel.campaign.web.dto.*
;
import
com.viettel.campaign.web.dto.ApParamDTO
;
import
com.viettel.campaign.web.dto.CampaignDTO
;
import
com.viettel.campaign.web.dto.ContactCustResultDTO
;
import
com.viettel.campaign.web.dto.ResultDTO
;
import
com.viettel.campaign.web.dto.request_dto.CampaignRequestDTO
;
import
org.hibernate.SQLQuery
;
import
org.hibernate.Session
;
import
org.hibernate.SessionFactory
;
import
org.hibernate.transform.Transformers
;
import
org.hibernate.type.DateType
;
import
org.hibernate.type.IntegerType
;
import
org.hibernate.type.LongType
;
import
org.hibernate.type.ShortType
;
import
org.hibernate.type.StringType
;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
...
...
@@ -100,108 +103,156 @@ public class CampaignExecuteRepositoryImp implements CampaignExecuteRepository {
@Override
@Transactional
(
DataSourceQualify
.
CCMS_FULL
)
public
ResultDTO
getInteractiveResult
(
CampaignRequestDTO
dto
)
{
public
List
<
ContactCustResultDTO
>
getInteractiveResult
(
CampaignRequestDTO
dto
,
Pageable
pageable
)
{
ResultDTO
resultDTO
=
new
ResultDTO
();
List
<
ContactCus
Res
DTO
>
list
=
new
ArrayList
<>();
List
<
ContactCus
tResult
DTO
>
list
=
new
ArrayList
<>();
SessionFactory
sessionFactory
=
HibernateUtil
.
getSessionFactory
();
Session
session
=
sessionFactory
.
openSession
();
session
.
beginTransaction
();
try
{
StringBuilder
sql
=
new
StringBuilder
();
sql
.
append
(
"with campaign_type_list as ("
);
sql
.
append
(
" select trim (regexp_substr(:p_list_compaign_type, '[^,]+', 1, level)) campaign_type"
);
sql
.
append
(
" from dual"
);
sql
.
append
(
" connect by level <= regexp_count(:p_list_compaign_type, ',') +1"
);
sql
.
append
(
" ),"
);
sql
.
append
(
" contact_status_list as ("
);
sql
.
append
(
" select trim (regexp_substr(:p_list_contact_status, '[^,]+', 1, level)) contact_status"
);
sql
.
append
(
" from dual"
);
sql
.
append
(
" connect by level <= regexp_count(:p_list_contact_status, ',') +1"
);
sql
.
append
(
" ),"
);
sql
.
append
(
" survey_status_list as ("
);
sql
.
append
(
" select trim (regexp_substr(:p_list_survey_status, '[^,]+', 1, level)) survey_status"
);
sql
.
append
(
" from dual"
);
sql
.
append
(
" connect by level <= regexp_count(:p_list_survey_status, ',') +1"
);
sql
.
append
(
" ),"
);
sql
.
append
(
" record_status_list as ("
);
sql
.
append
(
" select trim (regexp_substr(:p_list_record_status, '[^,]+', 1, level)) record_status"
);
sql
.
append
(
" from dual"
);
sql
.
append
(
" connect by level <= regexp_count(:p_list_record_status, ',') +1"
);
sql
.
append
(
" ),"
);
sql
.
append
(
" campaign_code_list as ("
);
sql
.
append
(
" select trim (regexp_substr(:p_list_campaign_code, '[^,]+', 1, level)) campaign_code"
);
sql
.
append
(
" from dual"
);
sql
.
append
(
" connect by level <= regexp_count(:p_list_campaign_code, ',') +1"
);
sql
.
append
(
" ),"
);
sql
.
append
(
" data_temp as ("
);
sql
.
append
(
" select a.contact_cust_result_id contactCustResultId,"
);
sql
.
append
(
" a.create_time createTime,"
);
sql
.
append
(
" b.campaign_code campaignCode,"
);
sql
.
append
(
" b.campaign_name campaignName,"
);
sql
.
append
(
" c.user_name userName,"
);
sql
.
append
(
" a.phone_number phoneNumber,"
);
sql
.
append
(
" d.name customerName,"
);
sql
.
append
(
" a.start_call startCall,"
);
sql
.
append
(
" e.complete_name contactStatus,"
);
sql
.
append
(
" f.complete_name surveyStatus,"
);
sql
.
append
(
" g.status status,"
);
sql
.
append
(
" a.status recordStatus,"
);
sql
.
append
(
" nvl((a.end_time - a.start_call)*24*60, 0) callTime"
);
sql
.
append
(
" from contact_cust_result a"
);
sql
.
append
(
" left join campaign b on a.campaign_id = b.campaign_id"
);
sql
.
append
(
" left join vsa_users c on a.agent_id = c.user_id"
);
sql
.
append
(
" left join customer d on a.customer_id = d.customer_id"
);
sql
.
append
(
" left join campaign_complete_code e on a.contact_status = e.complete_value"
);
sql
.
append
(
" left join campaign_complete_code f on a.call_status = e.complete_value"
);
sql
.
append
(
" left join campaign g on a.campaign_id = g.campaign_id"
);
sql
.
append
(
" where a.status <> 0"
);
sql
.
append
(
" and a.company_site_id = :p_company_site_id"
);
sql
.
append
(
" and a.create_time >= to_date(:p_date_from, 'DD/MM/YYYY')"
);
sql
.
append
(
" and a.create_time <= to_date(:p_date_to, 'DD/MM/YYYY')"
);
sql
.
append
(
" and to_char(a.customer_id) like '%'||:p_customer_id||'%'"
);
sql
.
append
(
" and b.campaign_type in (select campaign_type from campaign_type_list)"
);
sql
.
append
(
" and to_char(a.contact_status) in (select contact_status from contact_status_list)"
);
sql
.
append
(
" and to_char(a.call_status) in (select survey_status from survey_status_list)"
);
sql
.
append
(
" and to_char(a.status) in (select record_status from record_status_list)"
);
sql
.
append
(
" and (:p_phone_number is null or to_char(a.phone_number) like '%'||:p_phone_number||'%')"
);
sql
.
append
(
" and (:p_list_campaign_code is null or b.campaign_code in (select campaign_code from campaign_code_list))"
);
sql
.
append
(
" and (:p_campaign_name is null or upper(b.campaign_name) like '%'||:p_campaign_name||'%')"
);
sql
.
append
(
" and (:p_user_name is null or upper(c.user_name) like '%'||:p_user_name||'%')"
);
sql
.
append
(
" ),"
);
sql
.
append
(
" data as ("
);
sql
.
append
(
" select a.*, rownum row_ from data_temp a"
);
sql
.
append
(
" where a.callTime >= :p_call_time_from"
);
sql
.
append
(
" and a.callTime <= :p_call_time_to"
);
sql
.
append
(
" order by a.createTime desc"
);
sql
.
append
(
" ),"
);
sql
.
append
(
" count_total as ("
);
sql
.
append
(
" select count(*) totalRow from data"
);
sql
.
append
(
" )"
);
sql
.
append
(
" select contactCustResultId, createTime, campaignCode, campaignName, userName, phoneNumber, customerName, startCall, contactStatus, surveyStatus, status, recordStatus, callTime, totalRow from data, count_total"
);
sql
.
append
(
" where :p_page_size = 0 or (row_ >= ((:p_page_number - 1) * :p_page_size + 1) and row_ < (:p_page_number * :p_page_size + 1))"
);
sql
.
append
(
"SELECT CCR.CONTACT_CUST_RESULT_ID AS contactCustResultId, "
);
sql
.
append
(
" CCR.CREATE_TIME AS createTime, "
);
sql
.
append
(
" C.CAMPAIGN_CODE AS campaignCode, "
);
sql
.
append
(
" C.CAMPAIGN_NAME AS campaignName, "
);
sql
.
append
(
" VU.USER_NAME AS userName, "
);
sql
.
append
(
" CCR.PHONE_NUMBER AS phoneNumber, "
);
sql
.
append
(
" CUS.NAME AS customerName, "
);
sql
.
append
(
" CCR.START_CALL AS startCall, "
);
sql
.
append
(
" CC1.COMPLETE_NAME AS contactStatus, "
);
sql
.
append
(
" CC2.COMPLETE_NAME AS surveyStatus, "
);
sql
.
append
(
" C.STATUS AS status, "
);
sql
.
append
(
" CCR.STATUS AS recordStatus, "
);
sql
.
append
(
" (( CCR.END_TIME - CCR.START_CALL ) * 24 * 60 * 60) AS callTime "
);
sql
.
append
(
"FROM CONTACT_CUST_RESULT CCR "
);
sql
.
append
(
" INNER JOIN CAMPAIGN C ON CCR.CAMPAIGN_ID = C.CAMPAIGN_ID "
);
sql
.
append
(
" INNER JOIN VSA_USERS VU ON CCR.AGENT_ID = VU.USER_ID "
);
sql
.
append
(
" INNER JOIN CUSTOMER CUS ON CCR.CUSTOMER_ID = CUS.CUSTOMER_ID "
);
sql
.
append
(
" INNER JOIN CAMPAIGN_COMPLETE_CODE CC1 ON CCR.CONTACT_STATUS = CC1.COMPLETE_VALUE "
);
sql
.
append
(
" LEFT JOIN CAMPAIGN_COMPLETE_CODE CC2 ON CCR.CALL_STATUS = CC2.COMPLETE_VALUE "
);
sql
.
append
(
"WHERE CCR.STATUS <> 0 "
);
sql
.
append
(
" AND CCR.COMPANY_SITE_ID = :p_company_site_id "
);
sql
.
append
(
" AND to_date(CCR.CREATE_TIME, 'DD/MM/RR') >= to_date(:p_date_from, 'DD/MM/RR') "
);
sql
.
append
(
" AND to_date(CCR.CREATE_TIME, 'DD/MM/RR') <= to_date(:p_date_to, 'DD/MM/RR') "
);
if
(!
DataUtil
.
isNullOrEmpty
(
dto
.
getCustomerId
()))
{
sql
.
append
(
" AND CCR.CUSTOMER_ID LIKE (:p_customer_id) "
);
}
if
(!
DataUtil
.
isNullOrEmpty
(
dto
.
getCampaignType
()))
{
sql
.
append
(
" AND C.CAMPAIGN_TYPE IN (:p_list_compaign_type) "
);
}
if
(!
DataUtil
.
isNullOrEmpty
(
dto
.
getContactStatus
()))
{
sql
.
append
(
" AND CCR.CONTACT_STATUS IN (:p_list_contact_status) "
);
}
if
(!
DataUtil
.
isNullOrEmpty
(
dto
.
getSurveyStatus
()))
{
sql
.
append
(
" AND CCR.CALL_STATUS IN (:p_list_survey_status) "
);
}
if
(!
DataUtil
.
isNullOrEmpty
(
dto
.
getRecordStatus
()))
{
sql
.
append
(
" AND CCR.STATUS IN (:p_list_record_status) "
);
}
if
(!
DataUtil
.
isNullOrEmpty
(
dto
.
getCampaignCode
()))
{
sql
.
append
(
" AND C.CAMPAIGN_CODE IN (:p_list_campaign_code) "
);
}
if
(!
DataUtil
.
isNullOrEmpty
(
dto
.
getPhoneNumber
()))
{
sql
.
append
(
" AND CCR.PHONE_NUMBER LIKE (:p_phone_number) "
);
}
if
(!
DataUtil
.
isNullOrEmpty
(
dto
.
getCampaignName
()))
{
sql
.
append
(
" AND UPPER(C.CAMPAIGN_NAME) LIKE (:p_campaign_name) "
);
}
if
(!
DataUtil
.
isNullOrEmpty
(
dto
.
getAgentId
()))
{
sql
.
append
(
" AND UPPER(VU.USER_NAME) LIKE (:p_user_name) "
);
}
if
(!
DataUtil
.
isNullOrEmpty
(
dto
.
getCallTimeFrom
()))
{
sql
.
append
(
" AND (( CCR.END_TIME - CCR.START_CALL ) * 24 * 60 * 60) >= (:p_call_time_from) "
);
}
if
(!
DataUtil
.
isNullOrEmpty
(
dto
.
getCallTimeTo
()))
{
sql
.
append
(
" AND (( CCR.END_TIME - CCR.START_CALL ) * 24 * 60 * 60) <= (:p_call_time_to) "
);
}
SQLQuery
query
=
session
.
createSQLQuery
(
sql
.
toString
());
query
.
setParameter
(
"p_company_site_id"
,
dto
.
getCompanySiteId
());
query
.
setParameter
(
"p_customer_id"
,
dto
.
getCustomerId
());
query
.
setParameter
(
"p_date_from"
,
dto
.
getFromDate
());
query
.
setParameter
(
"p_date_to"
,
dto
.
getToDate
());
query
.
setParameter
(
"p_list_compaign_type"
,
dto
.
getCampaignType
());
query
.
setParameter
(
"p_list_contact_status"
,
dto
.
getContactStatus
());
query
.
setParameter
(
"p_list_survey_status"
,
dto
.
getSurveyStatus
());
query
.
setParameter
(
"p_list_record_status"
,
dto
.
getRecordStatus
());
if
(!
DataUtil
.
isNullOrEmpty
(
dto
.
getCustomerId
()))
{
query
.
setParameter
(
"p_customer_id"
,
"%"
+
dto
.
getCustomerId
().
toUpperCase
()
.
replace
(
"\\"
,
"\\\\"
)
.
replaceAll
(
"%"
,
"\\\\%"
)
.
replaceAll
(
"_"
,
"\\\\_"
)
+
"%"
);
}
if
(!
DataUtil
.
isNullOrEmpty
(
dto
.
getCampaignType
()))
{
String
[]
lstCode
=
dto
.
getCampaignType
().
split
(
","
);
query
.
setParameterList
(
"p_list_compaign_type"
,
lstCode
);
}
if
(!
DataUtil
.
isNullOrEmpty
(
dto
.
getContactStatus
()))
{
String
[]
lstCode
=
dto
.
getContactStatus
().
split
(
","
);
query
.
setParameterList
(
"p_list_contact_status"
,
lstCode
);
}
if
(!
DataUtil
.
isNullOrEmpty
(
dto
.
getSurveyStatus
()))
{
String
[]
lstCode
=
dto
.
getSurveyStatus
().
split
(
","
);
query
.
setParameterList
(
"p_list_survey_status"
,
lstCode
);
}
if
(!
DataUtil
.
isNullOrEmpty
(
dto
.
getRecordStatus
()))
{
String
[]
lstCode
=
dto
.
getRecordStatus
().
split
(
","
);
query
.
setParameterList
(
"p_list_record_status"
,
lstCode
);
}
if
(!
DataUtil
.
isNullOrEmpty
(
dto
.
getCampaignCode
()))
{
String
[]
lstCode
=
dto
.
getCampaignCode
().
split
(
","
);
query
.
setParameterList
(
"p_list_campaign_code"
,
lstCode
);
}
if
(!
DataUtil
.
isNullOrEmpty
(
dto
.
getPhoneNumber
()))
{
query
.
setParameter
(
"p_phone_number"
,
"%"
+
dto
.
getPhoneNumber
().
toUpperCase
()
.
replace
(
"\\"
,
"\\\\"
)
.
replaceAll
(
"%"
,
"\\\\%"
)
.
replaceAll
(
"_"
,
"\\\\_"
)
+
"%"
);
}
if
(!
DataUtil
.
isNullOrEmpty
(
dto
.
getCampaignName
()))
{
query
.
setParameter
(
"p_campaign_name"
,
"%"
+
dto
.
getCampaignName
().
toUpperCase
()
.
replace
(
"\\"
,
"\\\\"
)
.
replaceAll
(
"%"
,
"\\\\%"
)
.
replaceAll
(
"_"
,
"\\\\_"
)
+
"%"
);
}
if
(!
DataUtil
.
isNullOrEmpty
(
dto
.
getAgentId
()))
{
query
.
setParameter
(
"p_user_name"
,
"%"
+
dto
.
getAgentId
().
toUpperCase
()
.
replace
(
"\\"
,
"\\\\"
)
.
replaceAll
(
"%"
,
"\\\\%"
)
.
replaceAll
(
"_"
,
"\\\\_"
)
+
"%"
);
}
query
.
setParameter
(
"p_call_time_from"
,
dto
.
getCallTimeFrom
());
query
.
setParameter
(
"p_call_time_to"
,
dto
.
getCallTimeTo
());
query
.
setParameter
(
"p_list_campaign_code"
,
dto
.
getCampaignCode
());
query
.
setParameter
(
"p_phone_number"
,
dto
.
getPhoneNumber
());
query
.
setParameter
(
"p_campaign_name"
,
DataUtil
.
isNullOrEmpty
(
dto
.
getCampaignName
())
?
null
:
dto
.
getCampaignName
().
trim
().
toUpperCase
());
query
.
setParameter
(
"p_user_name"
,
DataUtil
.
isNullOrEmpty
(
dto
.
getAgentId
())
?
null
:
dto
.
getAgentId
().
trim
().
toUpperCase
());
query
.
setParameter
(
"p_page_number"
,
dto
.
getPage
());
query
.
setParameter
(
"p_page_size"
,
dto
.
getPageSize
());
query
.
addScalar
(
"contactCustResultId"
,
new
LongType
());
// add data to parameter
/*query.addScalar("contactCustResultId", new LongType());
query.addScalar("createTime", new DateType());
query.addScalar("campaignCode", new StringType());
query.addScalar("campaignName", new StringType());
...
...
@@ -211,49 +262,70 @@ public class CampaignExecuteRepositoryImp implements CampaignExecuteRepository {
query.addScalar("startCall", new DateType());
query.addScalar("contactStatus", new StringType());
query.addScalar("surveyStatus", new StringType());
query
.
addScalar
(
"status"
,
new
S
tring
Type
());
query
.
addScalar
(
"
callTime"
,
new
Long
Type
());
query
.
addScalar
(
"
totalRow"
,
new
IntegerType
());
query.addScalar("status", new S
hort
Type());
query.addScalar("
recordStatus", new Short
Type());
query.addScalar("
callTime", new LongType());*/
query
.
setResultTransformer
(
Transformers
.
aliasToBean
(
ContactCusResDTO
.
class
));
if
(
pageable
!=
null
)
{
query
.
setFirstResult
(
pageable
.
getPageNumber
()
*
pageable
.
getPageSize
());
query
.
setMaxResults
(
pageable
.
getPageSize
());
}
int
total
=
0
;
list
=
query
.
list
();
if
(
list
.
size
()
>
0
)
{
total
=
list
.
get
(
0
).
getTotalRow
();
List
<
Object
[]>
data
=
query
.
list
();
//query.setResultTransformer(Transformers.aliasToBean(ContactCustResultDTO.class));
//list = query.list();
for
(
Object
[]
obj
:
data
)
{
ContactCustResultDTO
item
=
new
ContactCustResultDTO
();
item
.
setPage
(
dto
.
getPage
());
item
.
setPageSize
(
dto
.
getPageSize
());
item
.
setSort
(
dto
.
getSort
());
item
.
setContactCustResultId
(((
BigDecimal
)
obj
[
0
]).
longValueExact
());
item
.
setCreateTime
((
Date
)
obj
[
1
]);
item
.
setCampaignCode
((
String
)
obj
[
2
]);
item
.
setCampaignName
((
String
)
obj
[
3
]);
item
.
setUserName
((
String
)
obj
[
4
]);
item
.
setPhoneNumber
((
String
)
obj
[
5
]);
item
.
setCustomerName
((
String
)
obj
[
6
]);
item
.
setStartCall
(
obj
[
7
]
==
null
?
null
:
(
Date
)
obj
[
7
]);
item
.
setContactStatus
((
String
)
obj
[
8
]);
item
.
setSurveyStatus
((
String
)
obj
[
9
]);
item
.
setStatus
(
obj
[
10
]
==
null
?
0
:
((
BigDecimal
)
obj
[
10
]).
shortValueExact
());
item
.
setRecordStatus
(
obj
[
11
]
==
null
?
0
:
((
BigDecimal
)
obj
[
11
]).
shortValueExact
());
item
.
setCallTime
(
obj
[
12
]
==
null
?
0L
:
((
BigDecimal
)
obj
[
12
]).
longValueExact
());
list
.
add
(
item
);
}
for
(
ContactCusResDTO
contactCusResDTO
:
list
)
{
for
(
ContactCustResultDTO
ContactCustResultDTO
:
list
)
{
if
(!
"AGENT"
.
equals
(
dto
.
getRoleUser
()))
{
// ko phải nhân viên
contactCusRes
DTO
.
setEnableEdit
(
true
);
ContactCustResult
DTO
.
setEnableEdit
(
true
);
}
else
{
if
(
"2"
.
equals
(
contactCusRes
DTO
.
getRecordStatus
()))
{
// là nhân viên thường
contactCusRes
DTO
.
setEnableEdit
(
true
);
}
else
if
(
"1"
.
equals
(
contactCusResDTO
.
getRecordStatus
())
&&
isLower24Hour
(
contactCusRes
DTO
.
getCreateTime
()))
{
contactCusRes
DTO
.
setEnableEdit
(
true
);
if
(
"2"
.
equals
(
ContactCustResult
DTO
.
getRecordStatus
()))
{
// là nhân viên thường
ContactCustResult
DTO
.
setEnableEdit
(
true
);
}
else
if
(
"1"
.
equals
(
ContactCustResultDTO
.
getRecordStatus
())
&&
isLower24Hour
(
ContactCustResult
DTO
.
getCreateTime
()))
{
ContactCustResult
DTO
.
setEnableEdit
(
true
);
}
else
{
contactCusRes
DTO
.
setEnableEdit
(
false
);
ContactCustResult
DTO
.
setEnableEdit
(
false
);
}
}
}
resultDTO
.
setListData
(
list
);
resultDTO
.
setTotalRow
(
total
);
resultDTO
.
setErrorCode
(
Constants
.
ApiErrorCode
.
SUCCESS
);
resultDTO
.
setDescription
(
Constants
.
ApiErrorDesc
.
SUCCESS
);
}
catch
(
Exception
e
)
{
logger
.
error
(
e
.
getMessage
(),
e
);
resultDTO
.
setErrorCode
(
Constants
.
ApiErrorCode
.
ERROR
);
resultDTO
.
setDescription
(
Constants
.
ApiErrorDesc
.
ERROR
);
}
finally
{
session
.
close
();
return
resultDTO
;
}
return
list
;
}
@Override
@Transactional
(
DataSourceQualify
.
CCMS_FULL
)
public
List
<
ContactCus
Res
DTO
>
getExcelInteractiveResult
(
CampaignRequestDTO
dto
)
{
List
<
ContactCus
Res
DTO
>
list
=
new
ArrayList
<>();
public
List
<
ContactCus
tResult
DTO
>
getExcelInteractiveResult
(
CampaignRequestDTO
dto
)
{
List
<
ContactCus
tResult
DTO
>
list
=
new
ArrayList
<>();
SessionFactory
sessionFactory
=
HibernateUtil
.
getSessionFactory
();
Session
session
=
sessionFactory
.
openSession
();
...
...
@@ -360,7 +432,7 @@ public class CampaignExecuteRepositoryImp implements CampaignExecuteRepository {
query
.
addScalar
(
"status"
,
new
StringType
());
query
.
addScalar
(
"callTime"
,
new
LongType
());
query
.
setResultTransformer
(
Transformers
.
aliasToBean
(
ContactCus
Res
DTO
.
class
));
query
.
setResultTransformer
(
Transformers
.
aliasToBean
(
ContactCus
tResult
DTO
.
class
));
list
=
query
.
list
();
}
catch
(
Exception
e
)
{
...
...
src/main/java/com/viettel/campaign/service/CampaignExecuteService.java
View file @
6893fb8c
...
...
@@ -2,6 +2,7 @@ package com.viettel.campaign.service;
import
com.viettel.campaign.web.dto.*
;
import
com.viettel.campaign.web.dto.request_dto.CampaignRequestDTO
;
import
com.viettel.econtact.filter.UserSession
;
import
org.apache.poi.xssf.usermodel.XSSFWorkbook
;
import
org.springframework.stereotype.Service
;
...
...
@@ -37,7 +38,7 @@ public interface CampaignExecuteService {
ResultDTO
getAgentLogout
(
CampaignRequestDTO
dto
);
ResultDTO
callCustomer
(
ContactCustResultDTO
dto
);
ResultDTO
callCustomer
(
ContactCustResultDTO
dto
,
UserSession
userSession
);
ResultDTO
recallCustomer
(
ContactCustResultDTO
dto
);
...
...
src/main/java/com/viettel/campaign/service/impl/CampaignExecuteServiceImp.java
View file @
6893fb8c
...
...
@@ -20,6 +20,7 @@ import org.modelmapper.ModelMapper;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.data.domain.PageRequest
;
import
org.springframework.stereotype.Service
;
import
org.springframework.transaction.annotation.Transactional
;
...
...
@@ -100,11 +101,19 @@ public class CampaignExecuteServiceImp implements CampaignExecuteService {
@Transactional
(
DataSourceQualify
.
CCMS_FULL
)
public
ResultDTO
searchInteractiveResult
(
CampaignRequestDTO
dto
)
{
ResultDTO
resultDTO
=
new
ResultDTO
();
try
{
resultDTO
=
campaignExecuteRepository
.
getInteractiveResult
(
dto
);
List
<
ContactCustResultDTO
>
list
=
campaignExecuteRepository
.
getInteractiveResult
(
dto
,
SQLBuilder
.
buildPageable
(
dto
));
resultDTO
.
setListData
(
list
);
resultDTO
.
setTotalRow
(
campaignExecuteRepository
.
getInteractiveResult
(
dto
,
null
).
size
());
resultDTO
.
setErrorCode
(
Constants
.
ApiErrorCode
.
SUCCESS
);
resultDTO
.
setDescription
(
Constants
.
ApiErrorDesc
.
SUCCESS
);
}
catch
(
Exception
e
)
{
logger
.
error
(
e
.
getMessage
(),
e
);
resultDTO
.
setErrorCode
(
Constants
.
ApiErrorCode
.
ERROR
);
resultDTO
.
setDescription
(
Constants
.
ApiErrorDesc
.
ERROR
);
}
return
resultDTO
;
}
...
...
@@ -112,7 +121,7 @@ public class CampaignExecuteServiceImp implements CampaignExecuteService {
@Transactional
(
DataSourceQualify
.
CCMS_FULL
)
public
XSSFWorkbook
exportInteractiveResult
(
CampaignRequestDTO
dto
)
{
Locale
locale
=
Locale
.
forLanguageTag
(
"vi"
);
List
<
ContactCus
Res
DTO
>
list
=
campaignExecuteRepository
.
getExcelInteractiveResult
(
dto
);
List
<
ContactCus
tResult
DTO
>
list
=
campaignExecuteRepository
.
getExcelInteractiveResult
(
dto
);
XSSFWorkbook
workbook
=
new
XSSFWorkbook
();
Sheet
sheet
;
...
...
@@ -519,7 +528,7 @@ public class CampaignExecuteServiceImp implements CampaignExecuteService {
}
@Override
public
ResultDTO
callCustomer
(
ContactCustResultDTO
dto
)
{
public
ResultDTO
callCustomer
(
ContactCustResultDTO
dto
,
UserSession
userSession
)
{
ResultDTO
result
=
new
ResultDTO
();
try
{
...
...
src/main/java/com/viettel/campaign/web/dto/ContactCusResDTO.java
deleted
100644 → 0
View file @
8890ea24
package
com.viettel.campaign.web.dto
;
import
lombok.AllArgsConstructor
;
import
lombok.Getter
;
import
lombok.NoArgsConstructor
;
import
lombok.Setter
;
//import java.io.Serializable;
import
java.util.Date
;
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
public
class
ContactCusResDTO
{
private
Long
contactCustResultId
;
private
String
campaignCode
;
private
String
campaignName
;
private
String
userName
;
private
String
phoneNumber
;
private
String
customerName
;
private
Date
startCall
;
private
Date
createTime
;
private
String
contactStatus
;
private
String
surveyStatus
;
private
String
status
;
private
String
recordStatus
;
private
Long
callTime
;
private
Boolean
enableEdit
;
private
Integer
totalRow
;
}
src/main/java/com/viettel/campaign/web/dto/ContactCustResultDTO.java
View file @
6893fb8c
...
...
@@ -14,7 +14,7 @@ public class ContactCustResultDTO extends BaseDTO {
private
Long
contactCustResultId
;
private
Long
companySiteId
;
private
Short
callStatus
;
private
S
hort
contactStatus
;
private
S
tring
contactStatus
;
private
Short
status
;
private
Integer
satisfaction
;
private
String
description
;
...
...
@@ -53,4 +53,6 @@ public class ContactCustResultDTO extends BaseDTO {
private
String
userName
;
private
String
surveyStatus
;
private
Boolean
enableEdit
;
private
Integer
totalRow
;
}
src/main/java/com/viettel/campaign/web/rest/CampaignExecuteController.java
View file @
6893fb8c
package
com.viettel.campaign.web.rest
;
import
com.viettel.campaign.service.CampaignExecuteService
;
import
com.viettel.campaign.utils.RedisUtil
;
import
com.viettel.campaign.web.dto.*
;
import
com.viettel.campaign.web.dto.request_dto.CampaignRequestDTO
;
import
com.viettel.econtact.filter.UserSession
;
import
org.apache.poi.xssf.usermodel.XSSFWorkbook
;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
...
...
@@ -134,8 +136,10 @@ public class CampaignExecuteController {
@PostMapping
(
"/callCustomer"
)
@ResponseBody
public
ResponseEntity
<
ResultDTO
>
callCustomer
(
@RequestBody
ContactCustResultDTO
requestDto
)
{
ResultDTO
result
=
campaignExecuteService
.
callCustomer
(
requestDto
);
public
ResponseEntity
<
ResultDTO
>
callCustomer
(
@RequestBody
ContactCustResultDTO
requestDto
,
HttpServletRequest
request
)
{
String
xAuthToken
=
request
.
getHeader
(
"X-Auth-Token"
);
UserSession
userSession
=
(
UserSession
)
RedisUtil
.
getInstance
().
get
(
xAuthToken
);
ResultDTO
result
=
campaignExecuteService
.
callCustomer
(
requestDto
,
userSession
);
return
new
ResponseEntity
<>(
result
,
HttpStatus
.
OK
);
}
...
...
src/main/resources/application.yml
View file @
6893fb8c
server
:
port
:
1111
port
:
9999
spring
:
application
:
name
:
campaign
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment