|
|
@@ -392,6 +392,7 @@ public class TsfPlanningService {
|
|
|
* @author sowon
|
|
|
* @date 2021. 4. 3
|
|
|
*/
|
|
|
+ @Transactional("shopTxnManager")
|
|
|
public void savePollCustAnswer(Poll poll) {
|
|
|
poll.setCustNo(TsfSession.getInfo().getCustNo());
|
|
|
// 단수형
|
|
|
@@ -533,6 +534,7 @@ public class TsfPlanningService {
|
|
|
* @author sowon
|
|
|
* @date 2021. 4. 7
|
|
|
*/
|
|
|
+ @Transactional("shopTxnManager")
|
|
|
public void saveAttendEntry(Plan plan) {
|
|
|
int custNo = TsfSession.getInfo().getCustNo();
|
|
|
plan.setCustNo(custNo);
|
|
|
@@ -601,6 +603,7 @@ public class TsfPlanningService {
|
|
|
* @author sowon
|
|
|
* @date 2021. 4. 13
|
|
|
*/
|
|
|
+ @Transactional("shopTxnManager")
|
|
|
public void saveEntryReply(Plan plan) {
|
|
|
int custNo = TsfSession.getInfo().getCustNo();
|
|
|
plan.setCustNo(custNo);
|
|
|
@@ -660,6 +663,7 @@ public class TsfPlanningService {
|
|
|
* @author sowon
|
|
|
* @date 2021. 4. 13
|
|
|
*/
|
|
|
+ @Transactional("shopTxnManager")
|
|
|
public void deleteEntryReply(Plan plan) {
|
|
|
planningDao.deleteEntryReply(plan);
|
|
|
planningDao.deleteEntryReplyAttach(plan);
|