|
@@ -5,6 +5,7 @@ import org.jeecg.modules.aa.adminpurchasenote.entity.AdminRscode2;
|
|
|
import org.jeecg.modules.aa.adminpurchasenote.mapper.AdminRscode2Mapper;
|
|
|
import org.jeecg.modules.aa.adminpurchasenote.mapper.AdminPurchaseNoteMapper;
|
|
|
import org.jeecg.modules.aa.adminpurchasenote.service.IAdminPurchaseNoteService;
|
|
|
+import org.jeecg.modules.aa.adminpurchasenote.service.IAdminRscode2Service;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -26,7 +27,10 @@ public class AdminPurchaseNoteServiceImpl extends ServiceImpl<AdminPurchaseNoteM
|
|
|
private AdminPurchaseNoteMapper adminPurchaseNoteMapper;
|
|
|
@Autowired
|
|
|
private AdminRscode2Mapper adminRscode2Mapper;
|
|
|
-
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private IAdminRscode2Service adminRscode2Service;
|
|
|
+
|
|
|
@Override
|
|
|
@Transactional
|
|
|
public void saveMain(AdminPurchaseNote adminPurchaseNote, List<AdminRscode2> adminRscode2List) {
|
|
@@ -44,17 +48,17 @@ public class AdminPurchaseNoteServiceImpl extends ServiceImpl<AdminPurchaseNoteM
|
|
|
@Transactional
|
|
|
public void updateMain(AdminPurchaseNote adminPurchaseNote,List<AdminRscode2> adminRscode2List) {
|
|
|
adminPurchaseNoteMapper.updateById(adminPurchaseNote);
|
|
|
-
|
|
|
+
|
|
|
//1.先删除子表数据
|
|
|
adminRscode2Mapper.deleteByMainId(adminPurchaseNote.getId());
|
|
|
-
|
|
|
+
|
|
|
//2.子表数据重新插入
|
|
|
if(adminRscode2List!=null && adminRscode2List.size()>0) {
|
|
|
for(AdminRscode2 entity:adminRscode2List) {
|
|
|
//外键设置
|
|
|
entity.setSalesTicketId(adminPurchaseNote.getId());
|
|
|
- adminRscode2Mapper.insert(entity);
|
|
|
}
|
|
|
+ adminRscode2Service.saveBatch(adminRscode2List,1000);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -73,5 +77,5 @@ public class AdminPurchaseNoteServiceImpl extends ServiceImpl<AdminPurchaseNoteM
|
|
|
adminPurchaseNoteMapper.deleteById(id);
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
}
|