Commit 8fa16e94 authored by ='s avatar =

hungtt-commit get data combobox field

parent 0020d583
...@@ -91,7 +91,7 @@ public interface CampaignCustomerRepository extends JpaRepository<CampaignCustom ...@@ -91,7 +91,7 @@ public interface CampaignCustomerRepository extends JpaRepository<CampaignCustom
CampaignCustomer findCampaignCustomerByCampaignIdAndCompanySiteIdAndCustomerId(Long campaignId, Long companySiteId, Long customerId); CampaignCustomer findCampaignCustomerByCampaignIdAndCompanySiteIdAndCustomerId(Long campaignId, Long companySiteId, Long customerId);
List<CampaignCustomer> findCampaignCustomersByCampaignIdAndCompanySiteIdAndCustomerIdAndInCampaignStatus(Long campaignId, Long companySiteId, Long customerId, Long inCampaingStatus); List<CampaignCustomer> findCampaignCustomersByCampaignIdAndCompanySiteIdAndCustomerIdAndInCampaignStatus(Long campaignId, Long companySiteId, Long customerId, Short inCampaingStatus);
@Query(value = "select complete_value from campaign_complete_code where status = 1 and is_finish = 0 and is_recall = 0", nativeQuery = true) @Query(value = "select complete_value from campaign_complete_code where status = 1 and is_finish = 0 and is_recall = 0", nativeQuery = true)
List<Short> getStatus(); List<Short> getStatus();
......
...@@ -1653,7 +1653,7 @@ public class CustomerServiceImpl implements CustomerService { ...@@ -1653,7 +1653,7 @@ public class CustomerServiceImpl implements CustomerService {
List<Short> lstStatus = campaignCustomerRepository.getStatus(); List<Short> lstStatus = campaignCustomerRepository.getStatus();
try { try {
for (String cusId : lstCusId) { for (String cusId : lstCusId) {
List<CampaignCustomer> listEntity = campaignCustomerRepository.findCampaignCustomersByCampaignIdAndCompanySiteIdAndCustomerIdAndInCampaignStatus(campaignId, companySiteId, Long.parseLong(cusId), 1L); List<CampaignCustomer> listEntity = campaignCustomerRepository.findCampaignCustomersByCampaignIdAndCompanySiteIdAndCustomerIdAndInCampaignStatus(campaignId, companySiteId, Long.parseLong(cusId), (short) 1);
for (CampaignCustomer entity : listEntity) { for (CampaignCustomer entity : listEntity) {
if (entity.getStatus() == 0) { if (entity.getStatus() == 0) {
campaignCustomerRepository.delete(entity); campaignCustomerRepository.delete(entity);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment