feature/jp-0331 #526

Open
jungpyo2001 wants to merge 998 commits from feature/jp-0331 into main
2 changed files with 3 additions and 2 deletions
Showing only changes of commit 7b9a8b7aba - Show all commits

View File

@ -28,6 +28,7 @@ public class UserService {
*/
public int setStoreSave(StoreRequest storeReq) throws Exception {
int resultCnt = userMapper.setStoreSave(storeReq);
userMapper.setStoreInfoSave(storeReq);
userMapper.setStoreSapCdSave(storeReq);
userMapper.setStoreNorthModuleSave(storeReq);
return resultCnt;

View File

@ -175,7 +175,7 @@
WHEN MATCHED THEN
UPDATE SET
BIZ_NO = #{bizNo}
, LAST_EDIT_DATETIME = #{lastEditDatetime}
, LAST_EDIT_DATETIME = (CASE WHEN #{lastEditDatetime} != '' THEN #{lastEditDatetime} ELSE #{registDatetime} END)
WHEN NOT MATCHED THEN
INSERT (
SALE_STORE_ID
@ -184,7 +184,7 @@
) VALUES (
#{saleStoreId}
, #{bizNo}
, #{lastEditDatetime}
, (CASE WHEN #{lastEditDatetime} != '' THEN #{lastEditDatetime} ELSE #{registDatetime} END)
);
</insert>