Fix UserPackageMapper; Remove tag for ERROR_008
This commit is contained in:
parent
216fe7adbb
commit
119e93a9ff
2 changed files with 3 additions and 3 deletions
|
|
@ -44,7 +44,7 @@ public class ValidationUtil {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!validatePackageName(request.getPackageName())) {
|
if (!validatePackageName(request.getPackageName())) {
|
||||||
throw clientExcp(SignalError.ERROR_008, XmlErrorFormat.MonitoringError, "Subject");
|
throw clientExcp(SignalError.ERROR_008, XmlErrorFormat.MonitoringError);
|
||||||
}
|
}
|
||||||
|
|
||||||
Set<String> uniqueIds = new HashSet<>();
|
Set<String> uniqueIds = new HashSet<>();
|
||||||
|
|
|
||||||
|
|
@ -58,7 +58,7 @@
|
||||||
|
|
||||||
<select id="findPackage" resultMap="packageDataResultMap"
|
<select id="findPackage" resultMap="packageDataResultMap"
|
||||||
resultType="ru.nbch.credit_tracker.entities.dto.UserPackage">
|
resultType="ru.nbch.credit_tracker.entities.dto.UserPackage">
|
||||||
SELECT membercode, package_name
|
SELECT id, membercode, package_name, created_at, status, last_downloaded_report
|
||||||
FROM signals_user_packages
|
FROM signals_user_packages
|
||||||
WHERE id = #{id}
|
WHERE id = #{id}
|
||||||
LIMIT 1
|
LIMIT 1
|
||||||
|
|
@ -66,7 +66,7 @@
|
||||||
|
|
||||||
<select id="findUserPackages" resultMap="packageDataResultMap"
|
<select id="findUserPackages" resultMap="packageDataResultMap"
|
||||||
resultType="ru.nbch.credit_tracker.entities.dto.UserPackage">
|
resultType="ru.nbch.credit_tracker.entities.dto.UserPackage">
|
||||||
SELECT package_name, created_at
|
SELECT id, membercode, package_name, created_at, status, last_downloaded_report
|
||||||
FROM signals_user_packages
|
FROM signals_user_packages
|
||||||
WHERE membercode IS NOT NULL
|
WHERE membercode IS NOT NULL
|
||||||
AND LEFT(membercode, 6) = #{userId}
|
AND LEFT(membercode, 6) = #{userId}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue