|
|
|
@ -20,16 +20,16 @@ public class SupCompanyServiceImpl extends ServiceImpl<SupCompanyDao,SupCompanyE
|
|
|
|
|
@Resource
|
|
|
|
|
SupCompanyDao supCompanyDao;
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public SupCompanyEntity findCompanyByUnitFk(String unitFk) {
|
|
|
|
|
FilterSupCompanyRequest filterSupCompanyRequest = new FilterSupCompanyRequest();
|
|
|
|
|
filterSupCompanyRequest.setUnitIdFk(unitFk);
|
|
|
|
|
List<SupCompanyEntity> companyEntities = supCompanyDao.filterCompany(filterSupCompanyRequest);
|
|
|
|
|
if (companyEntities != null && companyEntities.size() > 0) {
|
|
|
|
|
return companyEntities.get(0);
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
// @Override
|
|
|
|
|
// public SupCompanyEntity findCompanyByUnitFk(String unitFk) {
|
|
|
|
|
// FilterSupCompanyRequest filterSupCompanyRequest = new FilterSupCompanyRequest();
|
|
|
|
|
// filterSupCompanyRequest.setUnitIdFk(unitFk);
|
|
|
|
|
// List<SupCompanyEntity> companyEntities = supCompanyDao.filterCompany(filterSupCompanyRequest);
|
|
|
|
|
// if (companyEntities != null && companyEntities.size() > 0) {
|
|
|
|
|
// return companyEntities.get(0);
|
|
|
|
|
// }
|
|
|
|
|
// return null;
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public List<SupCompanyEntity> filterCompany(FilterSupCompanyRequest companyRequest) {
|
|
|
|
@ -43,54 +43,54 @@ public class SupCompanyServiceImpl extends ServiceImpl<SupCompanyDao,SupCompanyE
|
|
|
|
|
return supCompanyDao.filterCompany(companyRequest);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public SupCompanyEntity findCompany(String CustomerId) {
|
|
|
|
|
return supCompanyDao.findCompany(CustomerId);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public List<SupCompanyEntity> getSubCompany(FilterSupCompanyRequest commitRequest) {
|
|
|
|
|
if (commitRequest == null) {
|
|
|
|
|
return Collections.emptyList();
|
|
|
|
|
}
|
|
|
|
|
if (commitRequest.getPage() != null) {
|
|
|
|
|
int offset = (commitRequest.getPage() - 1) * commitRequest.getLimit();
|
|
|
|
|
PageHelper.offsetPage(offset, commitRequest.getLimit());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
List<SupCompanyEntity> companyEntities = supCompanyDao.getSubCompany(commitRequest);
|
|
|
|
|
return companyEntities;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public List<SupCompanyEntity> getSubCompany2(FilterSupCompanyRequest commitRequest) {
|
|
|
|
|
if (commitRequest == null) {
|
|
|
|
|
return Collections.emptyList();
|
|
|
|
|
}
|
|
|
|
|
int offset = (commitRequest.getPage() - 1) * commitRequest.getLimit();
|
|
|
|
|
PageHelper.offsetPage(offset, commitRequest.getLimit());
|
|
|
|
|
List<SupCompanyEntity> companyEntities = supCompanyDao.getSubCompany2(commitRequest);
|
|
|
|
|
return companyEntities;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public SupCompanyEntity findCompanyByName(String companyName) {
|
|
|
|
|
return supCompanyDao.findCompanyByName(companyName);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public boolean modifyCompany(SupCompanyEntity companyEntity) {
|
|
|
|
|
return supCompanyDao.modifyCompany(companyEntity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public boolean insertCompany(SupCompanyEntity companyEntity) {
|
|
|
|
|
return supCompanyDao.insertCompany(companyEntity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public boolean deleteCompany(String customerId) {
|
|
|
|
|
return supCompanyDao.deleteCompany(customerId);
|
|
|
|
|
}
|
|
|
|
|
// @Override
|
|
|
|
|
// public SupCompanyEntity findCompany(String CustomerId) {
|
|
|
|
|
// return supCompanyDao.findCompany(CustomerId);
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// @Override
|
|
|
|
|
// public List<SupCompanyEntity> getSubCompany(FilterSupCompanyRequest commitRequest) {
|
|
|
|
|
// if (commitRequest == null) {
|
|
|
|
|
// return Collections.emptyList();
|
|
|
|
|
// }
|
|
|
|
|
// if (commitRequest.getPage() != null) {
|
|
|
|
|
// int offset = (commitRequest.getPage() - 1) * commitRequest.getLimit();
|
|
|
|
|
// PageHelper.offsetPage(offset, commitRequest.getLimit());
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// List<SupCompanyEntity> companyEntities = supCompanyDao.getSubCompany(commitRequest);
|
|
|
|
|
// return companyEntities;
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// @Override
|
|
|
|
|
// public List<SupCompanyEntity> getSubCompany2(FilterSupCompanyRequest commitRequest) {
|
|
|
|
|
// if (commitRequest == null) {
|
|
|
|
|
// return Collections.emptyList();
|
|
|
|
|
// }
|
|
|
|
|
// int offset = (commitRequest.getPage() - 1) * commitRequest.getLimit();
|
|
|
|
|
// PageHelper.offsetPage(offset, commitRequest.getLimit());
|
|
|
|
|
// List<SupCompanyEntity> companyEntities = supCompanyDao.getSubCompany2(commitRequest);
|
|
|
|
|
// return companyEntities;
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// @Override
|
|
|
|
|
// public SupCompanyEntity findCompanyByName(String companyName) {
|
|
|
|
|
// return supCompanyDao.findCompanyByName(companyName);
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// @Override
|
|
|
|
|
// public boolean modifyCompany(SupCompanyEntity companyEntity) {
|
|
|
|
|
// return supCompanyDao.modifyCompany(companyEntity);
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// @Override
|
|
|
|
|
// public boolean insertCompany(SupCompanyEntity companyEntity) {
|
|
|
|
|
// return supCompanyDao.insertCompany(companyEntity);
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
// @Override
|
|
|
|
|
// public boolean deleteCompany(String customerId) {
|
|
|
|
|
// return supCompanyDao.deleteCompany(customerId);
|
|
|
|
|
// }
|
|
|
|
|
}
|
|
|
|
|