提交 02100acc 编写于 作者: ibizdev's avatar ibizdev

chitanda 发布系统代码

上级 0a790b36
...@@ -37,6 +37,9 @@ export default class ChartViewEngine extends SearchViewEngine { ...@@ -37,6 +37,9 @@ export default class ChartViewEngine extends SearchViewEngine {
*/ */
public load(opts: any = {}): void { public load(opts: any = {}): void {
super.load(opts); super.load(opts);
if (!this.getSearchForm() && this.getChart()) {
this.setViewState2({ tag: this.getChart().name, action: 'load', viewdata: this.view.viewparams });
}
} }
/** /**
......
...@@ -44,6 +44,7 @@ ...@@ -44,6 +44,7 @@
height: 100%; height: 100%;
display: flex; display: flex;
align-items: center; align-items: center;
padding: 0px 0px 0px 3px;
} }
>.title { >.title {
......
...@@ -16,7 +16,7 @@ export class OptionViewBase extends ViewBase { ...@@ -16,7 +16,7 @@ export class OptionViewBase extends ViewBase {
*/ */
public onClickOk(): void { public onClickOk(): void {
const form: any = this.$refs.form; const form: any = this.$refs.form;
if (!form) { if (form) {
form.save().then((res: any) => { form.save().then((res: any) => {
if (res.status == 200) { if (res.status == 200) {
this.$emit('close', [res.data]); this.$emit('close', [res.data]);
......
...@@ -45,45 +45,45 @@ import org.springframework.util.StringUtils; ...@@ -45,45 +45,45 @@ import org.springframework.util.StringUtils;
public class AccountServiceImpl extends ServiceImpl<AccountMapper, Account> implements IAccountService { public class AccountServiceImpl extends ServiceImpl<AccountMapper, Account> implements IAccountService {
private cn.ibizlab.businesscentral.core.base.service.IAccountService accountService = this; protected cn.ibizlab.businesscentral.core.base.service.IAccountService accountService = this;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.scheduling.service.IBookableResourceService bookableresourceService; protected cn.ibizlab.businesscentral.core.scheduling.service.IBookableResourceService bookableresourceService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IContactService contactService; protected cn.ibizlab.businesscentral.core.base.service.IContactService contactService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ILeadService leadService; protected cn.ibizlab.businesscentral.core.sales.service.ILeadService leadService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.marketing.service.IListAccountService listaccountService; protected cn.ibizlab.businesscentral.core.marketing.service.IListAccountService listaccountService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IOpportunityService opportunityService; protected cn.ibizlab.businesscentral.core.sales.service.IOpportunityService opportunityService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ISlaKpiInstanceService slakpiinstanceService; protected cn.ibizlab.businesscentral.core.base.service.ISlaKpiInstanceService slakpiinstanceService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IEquipmentService equipmentService; protected cn.ibizlab.businesscentral.core.service.service.IEquipmentService equipmentService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.product.service.IPriceLevelService pricelevelService; protected cn.ibizlab.businesscentral.core.product.service.IPriceLevelService pricelevelService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IIBizServiceService ibizserviceService; protected cn.ibizlab.businesscentral.core.service.service.IIBizServiceService ibizserviceService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ISlaService slaService; protected cn.ibizlab.businesscentral.core.base.service.ISlaService slaService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITerritoryService territoryService; protected cn.ibizlab.businesscentral.core.base.service.ITerritoryService territoryService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -45,7 +45,7 @@ import org.springframework.util.StringUtils; ...@@ -45,7 +45,7 @@ import org.springframework.util.StringUtils;
public class ActivityMimeatTachmentServiceImpl extends ServiceImpl<ActivityMimeatTachmentMapper, ActivityMimeatTachment> implements IActivityMimeatTachmentService { public class ActivityMimeatTachmentServiceImpl extends ServiceImpl<ActivityMimeatTachmentMapper, ActivityMimeatTachment> implements IActivityMimeatTachmentService {
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,12 +46,12 @@ public class ActivityPartyServiceImpl extends ServiceImpl<ActivityPartyMapper, A ...@@ -46,12 +46,12 @@ public class ActivityPartyServiceImpl extends ServiceImpl<ActivityPartyMapper, A
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IActivityPointerService activitypointerService; protected cn.ibizlab.businesscentral.core.base.service.IActivityPointerService activitypointerService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IResourceSpecService resourcespecService; protected cn.ibizlab.businesscentral.core.service.service.IResourceSpecService resourcespecService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,21 +46,21 @@ public class ActivityPointerServiceImpl extends ServiceImpl<ActivityPointerMappe ...@@ -46,21 +46,21 @@ public class ActivityPointerServiceImpl extends ServiceImpl<ActivityPointerMappe
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IActivityPartyService activitypartyService; protected cn.ibizlab.businesscentral.core.base.service.IActivityPartyService activitypartyService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.runtime.service.IBulkOperationLogService bulkoperationlogService; protected cn.ibizlab.businesscentral.core.runtime.service.IBulkOperationLogService bulkoperationlogService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IIBizServiceService ibizserviceService; protected cn.ibizlab.businesscentral.core.service.service.IIBizServiceService ibizserviceService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ISlaService slaService; protected cn.ibizlab.businesscentral.core.base.service.ISlaService slaService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -45,7 +45,7 @@ import org.springframework.util.StringUtils; ...@@ -45,7 +45,7 @@ import org.springframework.util.StringUtils;
public class AnnotationServiceImpl extends ServiceImpl<AnnotationMapper, Annotation> implements IAnnotationService { public class AnnotationServiceImpl extends ServiceImpl<AnnotationMapper, Annotation> implements IAnnotationService {
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,15 +46,15 @@ public class AppointmentServiceImpl extends ServiceImpl<AppointmentMapper, Appoi ...@@ -46,15 +46,15 @@ public class AppointmentServiceImpl extends ServiceImpl<AppointmentMapper, Appoi
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IIBizServiceService ibizserviceService; protected cn.ibizlab.businesscentral.core.service.service.IIBizServiceService ibizserviceService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ISlaService slaService; protected cn.ibizlab.businesscentral.core.base.service.ISlaService slaService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
...@@ -202,7 +202,7 @@ public class AppointmentServiceImpl extends ServiceImpl<AppointmentMapper, Appoi ...@@ -202,7 +202,7 @@ public class AppointmentServiceImpl extends ServiceImpl<AppointmentMapper, Appoi
cn.ibizlab.businesscentral.core.base.mapping.AppointmentInheritMapping appointmentInheritMapping; cn.ibizlab.businesscentral.core.base.mapping.AppointmentInheritMapping appointmentInheritMapping;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IActivityPointerService activitypointerService; protected cn.ibizlab.businesscentral.core.base.service.IActivityPointerService activitypointerService;
/** /**
* 创建索引主实体数据 * 创建索引主实体数据
......
...@@ -45,7 +45,7 @@ import org.springframework.util.StringUtils; ...@@ -45,7 +45,7 @@ import org.springframework.util.StringUtils;
public class AuditServiceImpl extends ServiceImpl<AuditMapper, Audit> implements IAuditService { public class AuditServiceImpl extends ServiceImpl<AuditMapper, Audit> implements IAuditService {
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -45,7 +45,7 @@ import org.springframework.util.StringUtils; ...@@ -45,7 +45,7 @@ import org.springframework.util.StringUtils;
public class BusinessUnitNewsArticleServiceImpl extends ServiceImpl<BusinessUnitNewsArticleMapper, BusinessUnitNewsArticle> implements IBusinessUnitNewsArticleService { public class BusinessUnitNewsArticleServiceImpl extends ServiceImpl<BusinessUnitNewsArticleMapper, BusinessUnitNewsArticle> implements IBusinessUnitNewsArticleService {
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -45,42 +45,42 @@ import org.springframework.util.StringUtils; ...@@ -45,42 +45,42 @@ import org.springframework.util.StringUtils;
public class BusinessUnitServiceImpl extends ServiceImpl<BusinessUnitMapper, BusinessUnit> implements IBusinessUnitService { public class BusinessUnitServiceImpl extends ServiceImpl<BusinessUnitMapper, BusinessUnit> implements IBusinessUnitService {
private cn.ibizlab.businesscentral.core.base.service.IBusinessUnitService businessunitService = this; protected cn.ibizlab.businesscentral.core.base.service.IBusinessUnitService businessunitService = this;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ICalendarService calendarService; protected cn.ibizlab.businesscentral.core.base.service.ICalendarService calendarService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IConstraintBasedGroupService constraintbasedgroupService; protected cn.ibizlab.businesscentral.core.service.service.IConstraintBasedGroupService constraintbasedgroupService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IEquipmentService equipmentService; protected cn.ibizlab.businesscentral.core.service.service.IEquipmentService equipmentService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.runtime.service.IQueueService queueService; protected cn.ibizlab.businesscentral.core.runtime.service.IQueueService queueService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IResourceGroupService resourcegroupService; protected cn.ibizlab.businesscentral.core.service.service.IResourceGroupService resourcegroupService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IResourceSpecService resourcespecService; protected cn.ibizlab.businesscentral.core.service.service.IResourceSpecService resourcespecService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IResourceService resourceService; protected cn.ibizlab.businesscentral.core.service.service.IResourceService resourceService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ISlaKpiInstanceService slakpiinstanceService; protected cn.ibizlab.businesscentral.core.base.service.ISlaKpiInstanceService slakpiinstanceService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ISlaService slaService; protected cn.ibizlab.businesscentral.core.base.service.ISlaService slaService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITeamService teamService; protected cn.ibizlab.businesscentral.core.base.service.ITeamService teamService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,20 +46,20 @@ public class CalendarServiceImpl extends ServiceImpl<CalendarMapper, Calendar> i ...@@ -46,20 +46,20 @@ public class CalendarServiceImpl extends ServiceImpl<CalendarMapper, Calendar> i
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.scheduling.service.IBookableResourceService bookableresourceService; protected cn.ibizlab.businesscentral.core.scheduling.service.IBookableResourceService bookableresourceService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IBusinessUnitService businessunitService; protected cn.ibizlab.businesscentral.core.base.service.IBusinessUnitService businessunitService;
private cn.ibizlab.businesscentral.core.base.service.ICalendarService calendarService = this; protected cn.ibizlab.businesscentral.core.base.service.ICalendarService calendarService = this;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IEquipmentService equipmentService; protected cn.ibizlab.businesscentral.core.service.service.IEquipmentService equipmentService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ISlaService slaService; protected cn.ibizlab.businesscentral.core.base.service.ISlaService slaService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
public boolean checkKey(Calendar et) { public boolean checkKey(Calendar et) {
......
...@@ -45,12 +45,12 @@ import org.springframework.util.StringUtils; ...@@ -45,12 +45,12 @@ import org.springframework.util.StringUtils;
public class CategoryServiceImpl extends ServiceImpl<CategoryMapper, Category> implements ICategoryService { public class CategoryServiceImpl extends ServiceImpl<CategoryMapper, Category> implements ICategoryService {
private cn.ibizlab.businesscentral.core.base.service.ICategoryService categoryService = this; protected cn.ibizlab.businesscentral.core.base.service.ICategoryService categoryService = this;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,42 +46,42 @@ public class ContactServiceImpl extends ServiceImpl<ContactMapper, Contact> impl ...@@ -46,42 +46,42 @@ public class ContactServiceImpl extends ServiceImpl<ContactMapper, Contact> impl
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IAccountService accountService; protected cn.ibizlab.businesscentral.core.base.service.IAccountService accountService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.scheduling.service.IBookableResourceService bookableresourceService; protected cn.ibizlab.businesscentral.core.scheduling.service.IBookableResourceService bookableresourceService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IFeedbackService feedbackService; protected cn.ibizlab.businesscentral.core.base.service.IFeedbackService feedbackService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IIncidentService incidentService; protected cn.ibizlab.businesscentral.core.service.service.IIncidentService incidentService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ILeadService leadService; protected cn.ibizlab.businesscentral.core.sales.service.ILeadService leadService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.marketing.service.IListContactService listcontactService; protected cn.ibizlab.businesscentral.core.marketing.service.IListContactService listcontactService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IOpportunityService opportunityService; protected cn.ibizlab.businesscentral.core.sales.service.IOpportunityService opportunityService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IEquipmentService equipmentService; protected cn.ibizlab.businesscentral.core.service.service.IEquipmentService equipmentService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.product.service.IPriceLevelService pricelevelService; protected cn.ibizlab.businesscentral.core.product.service.IPriceLevelService pricelevelService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IIBizServiceService ibizserviceService; protected cn.ibizlab.businesscentral.core.service.service.IIBizServiceService ibizserviceService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ISlaService slaService; protected cn.ibizlab.businesscentral.core.base.service.ISlaService slaService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
public boolean checkKey(Contact et) { public boolean checkKey(Contact et) {
......
...@@ -46,15 +46,15 @@ public class CustomerAddressServiceImpl extends ServiceImpl<CustomerAddressMappe ...@@ -46,15 +46,15 @@ public class CustomerAddressServiceImpl extends ServiceImpl<CustomerAddressMappe
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IContractDetailService contractdetailService; protected cn.ibizlab.businesscentral.core.service.service.IContractDetailService contractdetailService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IContractService contractService; protected cn.ibizlab.businesscentral.core.service.service.IContractService contractService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
public CustomerAddress getDraft(CustomerAddress et) { public CustomerAddress getDraft(CustomerAddress et) {
......
...@@ -45,21 +45,21 @@ import org.springframework.util.StringUtils; ...@@ -45,21 +45,21 @@ import org.springframework.util.StringUtils;
public class EmailServiceImpl extends ServiceImpl<EmailMapper, Email> implements IEmailService { public class EmailServiceImpl extends ServiceImpl<EmailMapper, Email> implements IEmailService {
private cn.ibizlab.businesscentral.core.base.service.IEmailService emailService = this; protected cn.ibizlab.businesscentral.core.base.service.IEmailService emailService = this;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IIBizServiceService ibizserviceService; protected cn.ibizlab.businesscentral.core.service.service.IIBizServiceService ibizserviceService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ISlaService slaService; protected cn.ibizlab.businesscentral.core.base.service.ISlaService slaService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITemplateService templateService; protected cn.ibizlab.businesscentral.core.base.service.ITemplateService templateService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
...@@ -227,7 +227,7 @@ public class EmailServiceImpl extends ServiceImpl<EmailMapper, Email> implements ...@@ -227,7 +227,7 @@ public class EmailServiceImpl extends ServiceImpl<EmailMapper, Email> implements
cn.ibizlab.businesscentral.core.base.mapping.EmailInheritMapping emailInheritMapping; cn.ibizlab.businesscentral.core.base.mapping.EmailInheritMapping emailInheritMapping;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IActivityPointerService activitypointerService; protected cn.ibizlab.businesscentral.core.base.service.IActivityPointerService activitypointerService;
/** /**
* 创建索引主实体数据 * 创建索引主实体数据
......
...@@ -46,15 +46,15 @@ public class FaxServiceImpl extends ServiceImpl<FaxMapper, Fax> implements IFaxS ...@@ -46,15 +46,15 @@ public class FaxServiceImpl extends ServiceImpl<FaxMapper, Fax> implements IFaxS
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IIBizServiceService ibizserviceService; protected cn.ibizlab.businesscentral.core.service.service.IIBizServiceService ibizserviceService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ISlaService slaService; protected cn.ibizlab.businesscentral.core.base.service.ISlaService slaService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
public boolean checkKey(Fax et) { public boolean checkKey(Fax et) {
...@@ -202,7 +202,7 @@ public class FaxServiceImpl extends ServiceImpl<FaxMapper, Fax> implements IFaxS ...@@ -202,7 +202,7 @@ public class FaxServiceImpl extends ServiceImpl<FaxMapper, Fax> implements IFaxS
cn.ibizlab.businesscentral.core.base.mapping.FaxInheritMapping faxInheritMapping; cn.ibizlab.businesscentral.core.base.mapping.FaxInheritMapping faxInheritMapping;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IActivityPointerService activitypointerService; protected cn.ibizlab.businesscentral.core.base.service.IActivityPointerService activitypointerService;
/** /**
* 创建索引主实体数据 * 创建索引主实体数据
......
...@@ -46,12 +46,12 @@ public class FeedbackServiceImpl extends ServiceImpl<FeedbackMapper, Feedback> i ...@@ -46,12 +46,12 @@ public class FeedbackServiceImpl extends ServiceImpl<FeedbackMapper, Feedback> i
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IContactService contactService; protected cn.ibizlab.businesscentral.core.base.service.IContactService contactService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,26 +46,26 @@ public class KnowledgeArticleServiceImpl extends ServiceImpl<KnowledgeArticleMap ...@@ -46,26 +46,26 @@ public class KnowledgeArticleServiceImpl extends ServiceImpl<KnowledgeArticleMap
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.runtime.service.IExpiredprocessService expiredprocessService; protected cn.ibizlab.businesscentral.core.runtime.service.IExpiredprocessService expiredprocessService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IKnowledgeArticleIncidentService knowledgearticleincidentService; protected cn.ibizlab.businesscentral.core.service.service.IKnowledgeArticleIncidentService knowledgearticleincidentService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IKnowledgeArticleViewsService knowledgearticleviewsService; protected cn.ibizlab.businesscentral.core.base.service.IKnowledgeArticleViewsService knowledgearticleviewsService;
private cn.ibizlab.businesscentral.core.base.service.IKnowledgeArticleService knowledgearticleService = this; protected cn.ibizlab.businesscentral.core.base.service.IKnowledgeArticleService knowledgearticleService = this;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ILanguageLocaleService languagelocaleService; protected cn.ibizlab.businesscentral.core.base.service.ILanguageLocaleService languagelocaleService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ISubjectService subjectService; protected cn.ibizlab.businesscentral.core.base.service.ISubjectService subjectService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
public KnowledgeArticle getDraft(KnowledgeArticle et) { public KnowledgeArticle getDraft(KnowledgeArticle et) {
......
...@@ -46,9 +46,9 @@ public class KnowledgeArticleViewsServiceImpl extends ServiceImpl<KnowledgeArtic ...@@ -46,9 +46,9 @@ public class KnowledgeArticleViewsServiceImpl extends ServiceImpl<KnowledgeArtic
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IKnowledgeArticleService knowledgearticleService; protected cn.ibizlab.businesscentral.core.base.service.IKnowledgeArticleService knowledgearticleService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
public KnowledgeArticleViews getDraft(KnowledgeArticleViews et) { public KnowledgeArticleViews getDraft(KnowledgeArticleViews et) {
......
...@@ -46,9 +46,9 @@ public class KnowledgeBaseRecordServiceImpl extends ServiceImpl<KnowledgeBaseRec ...@@ -46,9 +46,9 @@ public class KnowledgeBaseRecordServiceImpl extends ServiceImpl<KnowledgeBaseRec
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,9 +46,9 @@ public class LanguageLocaleServiceImpl extends ServiceImpl<LanguageLocaleMapper, ...@@ -46,9 +46,9 @@ public class LanguageLocaleServiceImpl extends ServiceImpl<LanguageLocaleMapper,
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IKnowledgeArticleService knowledgearticleService; protected cn.ibizlab.businesscentral.core.base.service.IKnowledgeArticleService knowledgearticleService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,15 +46,15 @@ public class LetterServiceImpl extends ServiceImpl<LetterMapper, Letter> impleme ...@@ -46,15 +46,15 @@ public class LetterServiceImpl extends ServiceImpl<LetterMapper, Letter> impleme
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IIBizServiceService ibizserviceService; protected cn.ibizlab.businesscentral.core.service.service.IIBizServiceService ibizserviceService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ISlaService slaService; protected cn.ibizlab.businesscentral.core.base.service.ISlaService slaService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
...@@ -202,7 +202,7 @@ public class LetterServiceImpl extends ServiceImpl<LetterMapper, Letter> impleme ...@@ -202,7 +202,7 @@ public class LetterServiceImpl extends ServiceImpl<LetterMapper, Letter> impleme
cn.ibizlab.businesscentral.core.base.mapping.LetterInheritMapping letterInheritMapping; cn.ibizlab.businesscentral.core.base.mapping.LetterInheritMapping letterInheritMapping;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IActivityPointerService activitypointerService; protected cn.ibizlab.businesscentral.core.base.service.IActivityPointerService activitypointerService;
/** /**
* 创建索引主实体数据 * 创建索引主实体数据
......
...@@ -46,9 +46,9 @@ public class MetricServiceImpl extends ServiceImpl<MetricMapper, Metric> impleme ...@@ -46,9 +46,9 @@ public class MetricServiceImpl extends ServiceImpl<MetricMapper, Metric> impleme
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IGoalService goalService; protected cn.ibizlab.businesscentral.core.sales.service.IGoalService goalService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,15 +46,15 @@ public class OrganizationServiceImpl extends ServiceImpl<OrganizationMapper, Org ...@@ -46,15 +46,15 @@ public class OrganizationServiceImpl extends ServiceImpl<OrganizationMapper, Org
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IResourceService resourceService; protected cn.ibizlab.businesscentral.core.service.service.IResourceService resourceService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITemplateService templateService; protected cn.ibizlab.businesscentral.core.base.service.ITemplateService templateService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -45,7 +45,7 @@ import org.springframework.util.StringUtils; ...@@ -45,7 +45,7 @@ import org.springframework.util.StringUtils;
public class PersonalDocumentTemplateServiceImpl extends ServiceImpl<PersonalDocumentTemplateMapper, PersonalDocumentTemplate> implements IPersonalDocumentTemplateService { public class PersonalDocumentTemplateServiceImpl extends ServiceImpl<PersonalDocumentTemplateMapper, PersonalDocumentTemplate> implements IPersonalDocumentTemplateService {
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,15 +46,15 @@ public class PhoneCallServiceImpl extends ServiceImpl<PhoneCallMapper, PhoneCall ...@@ -46,15 +46,15 @@ public class PhoneCallServiceImpl extends ServiceImpl<PhoneCallMapper, PhoneCall
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IIBizServiceService ibizserviceService; protected cn.ibizlab.businesscentral.core.service.service.IIBizServiceService ibizserviceService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ISlaService slaService; protected cn.ibizlab.businesscentral.core.base.service.ISlaService slaService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
...@@ -202,7 +202,7 @@ public class PhoneCallServiceImpl extends ServiceImpl<PhoneCallMapper, PhoneCall ...@@ -202,7 +202,7 @@ public class PhoneCallServiceImpl extends ServiceImpl<PhoneCallMapper, PhoneCall
cn.ibizlab.businesscentral.core.base.mapping.PhoneCallInheritMapping phonecallInheritMapping; cn.ibizlab.businesscentral.core.base.mapping.PhoneCallInheritMapping phonecallInheritMapping;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IActivityPointerService activitypointerService; protected cn.ibizlab.businesscentral.core.base.service.IActivityPointerService activitypointerService;
/** /**
* 创建索引主实体数据 * 创建索引主实体数据
......
...@@ -45,12 +45,12 @@ import org.springframework.util.StringUtils; ...@@ -45,12 +45,12 @@ import org.springframework.util.StringUtils;
public class PositionServiceImpl extends ServiceImpl<PositionMapper, Position> implements IPositionService { public class PositionServiceImpl extends ServiceImpl<PositionMapper, Position> implements IPositionService {
private cn.ibizlab.businesscentral.core.base.service.IPositionService positionService = this; protected cn.ibizlab.businesscentral.core.base.service.IPositionService positionService = this;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -45,7 +45,7 @@ import org.springframework.util.StringUtils; ...@@ -45,7 +45,7 @@ import org.springframework.util.StringUtils;
public class PostServiceImpl extends ServiceImpl<PostMapper, Post> implements IPostService { public class PostServiceImpl extends ServiceImpl<PostMapper, Post> implements IPostService {
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
public Post getDraft(Post et) { public Post getDraft(Post et) {
......
...@@ -45,7 +45,7 @@ import org.springframework.util.StringUtils; ...@@ -45,7 +45,7 @@ import org.springframework.util.StringUtils;
public class RelationshipsServiceImpl extends ServiceImpl<RelationshipsMapper, Relationships> implements IRelationshipsService { public class RelationshipsServiceImpl extends ServiceImpl<RelationshipsMapper, Relationships> implements IRelationshipsService {
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -45,7 +45,7 @@ import org.springframework.util.StringUtils; ...@@ -45,7 +45,7 @@ import org.springframework.util.StringUtils;
public class SiteMapServiceImpl extends ServiceImpl<SiteMapMapper, SiteMap> implements ISiteMapService { public class SiteMapServiceImpl extends ServiceImpl<SiteMapMapper, SiteMap> implements ISiteMapService {
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,15 +46,15 @@ public class SiteServiceImpl extends ServiceImpl<SiteMapper, Site> implements IS ...@@ -46,15 +46,15 @@ public class SiteServiceImpl extends ServiceImpl<SiteMapper, Site> implements IS
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IEquipmentService equipmentService; protected cn.ibizlab.businesscentral.core.service.service.IEquipmentService equipmentService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IResourceService resourceService; protected cn.ibizlab.businesscentral.core.service.service.IResourceService resourceService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IServiceAppointmentService serviceappointmentService; protected cn.ibizlab.businesscentral.core.service.service.IServiceAppointmentService serviceappointmentService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
public boolean checkKey(Site et) { public boolean checkKey(Site et) {
......
...@@ -46,9 +46,9 @@ public class SlaItemServiceImpl extends ServiceImpl<SlaItemMapper, SlaItem> impl ...@@ -46,9 +46,9 @@ public class SlaItemServiceImpl extends ServiceImpl<SlaItemMapper, SlaItem> impl
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ISlaService slaService; protected cn.ibizlab.businesscentral.core.base.service.ISlaService slaService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,18 +46,18 @@ public class SlaKpiInstanceServiceImpl extends ServiceImpl<SlaKpiInstanceMapper, ...@@ -46,18 +46,18 @@ public class SlaKpiInstanceServiceImpl extends ServiceImpl<SlaKpiInstanceMapper,
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IIncidentService incidentService; protected cn.ibizlab.businesscentral.core.service.service.IIncidentService incidentService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IAccountService accountService; protected cn.ibizlab.businesscentral.core.base.service.IAccountService accountService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IBusinessUnitService businessunitService; protected cn.ibizlab.businesscentral.core.base.service.IBusinessUnitService businessunitService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
public SlaKpiInstance getDraft(SlaKpiInstance et) { public SlaKpiInstance getDraft(SlaKpiInstance et) {
......
...@@ -46,93 +46,93 @@ public class SlaServiceImpl extends ServiceImpl<SlaMapper, Sla> implements ISlaS ...@@ -46,93 +46,93 @@ public class SlaServiceImpl extends ServiceImpl<SlaMapper, Sla> implements ISlaS
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IAccountService accountService; protected cn.ibizlab.businesscentral.core.base.service.IAccountService accountService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IActivityPointerService activitypointerService; protected cn.ibizlab.businesscentral.core.base.service.IActivityPointerService activitypointerService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IAppointmentService appointmentService; protected cn.ibizlab.businesscentral.core.base.service.IAppointmentService appointmentService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.runtime.service.IBulkOperationService bulkoperationService; protected cn.ibizlab.businesscentral.core.runtime.service.IBulkOperationService bulkoperationService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.marketing.service.ICampaignActivityService campaignactivityService; protected cn.ibizlab.businesscentral.core.marketing.service.ICampaignActivityService campaignactivityService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.marketing.service.ICampaignResponseService campaignresponseService; protected cn.ibizlab.businesscentral.core.marketing.service.ICampaignResponseService campaignresponseService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IContactService contactService; protected cn.ibizlab.businesscentral.core.base.service.IContactService contactService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IEmailService emailService; protected cn.ibizlab.businesscentral.core.base.service.IEmailService emailService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IEntitlementTemplateService entitlementtemplateService; protected cn.ibizlab.businesscentral.core.service.service.IEntitlementTemplateService entitlementtemplateService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IEntitlementService entitlementService; protected cn.ibizlab.businesscentral.core.service.service.IEntitlementService entitlementService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IFaxService faxService; protected cn.ibizlab.businesscentral.core.base.service.IFaxService faxService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IIncidentreSolutionService incidentresolutionService; protected cn.ibizlab.businesscentral.core.service.service.IIncidentreSolutionService incidentresolutionService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IIncidentService incidentService; protected cn.ibizlab.businesscentral.core.service.service.IIncidentService incidentService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.finance.service.IInvoiceService invoiceService; protected cn.ibizlab.businesscentral.core.finance.service.IInvoiceService invoiceService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ILeadService leadService; protected cn.ibizlab.businesscentral.core.sales.service.ILeadService leadService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ILetterService letterService; protected cn.ibizlab.businesscentral.core.base.service.ILetterService letterService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IOpportunityCloseService opportunitycloseService; protected cn.ibizlab.businesscentral.core.sales.service.IOpportunityCloseService opportunitycloseService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IOpportunityService opportunityService; protected cn.ibizlab.businesscentral.core.sales.service.IOpportunityService opportunityService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IOrderCloseService ordercloseService; protected cn.ibizlab.businesscentral.core.sales.service.IOrderCloseService ordercloseService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IPhoneCallService phonecallService; protected cn.ibizlab.businesscentral.core.base.service.IPhoneCallService phonecallService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IQuoteCloseService quotecloseService; protected cn.ibizlab.businesscentral.core.sales.service.IQuoteCloseService quotecloseService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IQuoteService quoteService; protected cn.ibizlab.businesscentral.core.sales.service.IQuoteService quoteService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ISalesOrderService salesorderService; protected cn.ibizlab.businesscentral.core.sales.service.ISalesOrderService salesorderService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IServiceAppointmentService serviceappointmentService; protected cn.ibizlab.businesscentral.core.service.service.IServiceAppointmentService serviceappointmentService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ISlaItemService slaitemService; protected cn.ibizlab.businesscentral.core.base.service.ISlaItemService slaitemService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITaskService taskService; protected cn.ibizlab.businesscentral.core.base.service.ITaskService taskService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IBusinessUnitService businessunitService; protected cn.ibizlab.businesscentral.core.base.service.IBusinessUnitService businessunitService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ICalendarService calendarService; protected cn.ibizlab.businesscentral.core.base.service.ICalendarService calendarService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITeamService teamService; protected cn.ibizlab.businesscentral.core.base.service.ITeamService teamService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,20 +46,20 @@ public class SubjectServiceImpl extends ServiceImpl<SubjectMapper, Subject> impl ...@@ -46,20 +46,20 @@ public class SubjectServiceImpl extends ServiceImpl<SubjectMapper, Subject> impl
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IIncidentService incidentService; protected cn.ibizlab.businesscentral.core.service.service.IIncidentService incidentService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IKnowledgeArticleService knowledgearticleService; protected cn.ibizlab.businesscentral.core.base.service.IKnowledgeArticleService knowledgearticleService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.product.service.IProductService productService; protected cn.ibizlab.businesscentral.core.product.service.IProductService productService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ISalesLiteratureService salesliteratureService; protected cn.ibizlab.businesscentral.core.sales.service.ISalesLiteratureService salesliteratureService;
private cn.ibizlab.businesscentral.core.base.service.ISubjectService subjectService = this; protected cn.ibizlab.businesscentral.core.base.service.ISubjectService subjectService = this;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,15 +46,15 @@ public class TaskServiceImpl extends ServiceImpl<TaskMapper, Task> implements IT ...@@ -46,15 +46,15 @@ public class TaskServiceImpl extends ServiceImpl<TaskMapper, Task> implements IT
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IIBizServiceService ibizserviceService; protected cn.ibizlab.businesscentral.core.service.service.IIBizServiceService ibizserviceService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ISlaService slaService; protected cn.ibizlab.businesscentral.core.base.service.ISlaService slaService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
public boolean checkKey(Task et) { public boolean checkKey(Task et) {
...@@ -202,7 +202,7 @@ public class TaskServiceImpl extends ServiceImpl<TaskMapper, Task> implements IT ...@@ -202,7 +202,7 @@ public class TaskServiceImpl extends ServiceImpl<TaskMapper, Task> implements IT
cn.ibizlab.businesscentral.core.base.mapping.TaskInheritMapping taskInheritMapping; cn.ibizlab.businesscentral.core.base.mapping.TaskInheritMapping taskInheritMapping;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IActivityPointerService activitypointerService; protected cn.ibizlab.businesscentral.core.base.service.IActivityPointerService activitypointerService;
/** /**
* 创建索引主实体数据 * 创建索引主实体数据
......
...@@ -46,21 +46,21 @@ public class TeamServiceImpl extends ServiceImpl<TeamMapper, Team> implements IT ...@@ -46,21 +46,21 @@ public class TeamServiceImpl extends ServiceImpl<TeamMapper, Team> implements IT
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ISlaService slaService; protected cn.ibizlab.businesscentral.core.base.service.ISlaService slaService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IBusinessUnitService businessunitService; protected cn.ibizlab.businesscentral.core.base.service.IBusinessUnitService businessunitService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.runtime.service.IQueueService queueService; protected cn.ibizlab.businesscentral.core.runtime.service.IQueueService queueService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITeamTemplateService teamtemplateService; protected cn.ibizlab.businesscentral.core.base.service.ITeamTemplateService teamtemplateService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,9 +46,9 @@ public class TeamTemplateServiceImpl extends ServiceImpl<TeamTemplateMapper, Tea ...@@ -46,9 +46,9 @@ public class TeamTemplateServiceImpl extends ServiceImpl<TeamTemplateMapper, Tea
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITeamService teamService; protected cn.ibizlab.businesscentral.core.base.service.ITeamService teamService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,12 +46,12 @@ public class TemplateServiceImpl extends ServiceImpl<TemplateMapper, Template> i ...@@ -46,12 +46,12 @@ public class TemplateServiceImpl extends ServiceImpl<TemplateMapper, Template> i
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IEmailService emailService; protected cn.ibizlab.businesscentral.core.base.service.IEmailService emailService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IOrganizationService organizationService; protected cn.ibizlab.businesscentral.core.base.service.IOrganizationService organizationService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,12 +46,12 @@ public class TerritoryServiceImpl extends ServiceImpl<TerritoryMapper, Territory ...@@ -46,12 +46,12 @@ public class TerritoryServiceImpl extends ServiceImpl<TerritoryMapper, Territory
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IAccountService accountService; protected cn.ibizlab.businesscentral.core.base.service.IAccountService accountService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,12 +46,12 @@ public class TimezoneDefinitionServiceImpl extends ServiceImpl<TimezoneDefinitio ...@@ -46,12 +46,12 @@ public class TimezoneDefinitionServiceImpl extends ServiceImpl<TimezoneDefinitio
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITimezoneLocalizedNameService timezonelocalizednameService; protected cn.ibizlab.businesscentral.core.base.service.ITimezoneLocalizedNameService timezonelocalizednameService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITimezoneRuleService timezoneruleService; protected cn.ibizlab.businesscentral.core.base.service.ITimezoneRuleService timezoneruleService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,9 +46,9 @@ public class TimezoneLocalizedNameServiceImpl extends ServiceImpl<TimezoneLocali ...@@ -46,9 +46,9 @@ public class TimezoneLocalizedNameServiceImpl extends ServiceImpl<TimezoneLocali
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITimezoneDefinitionService timezonedefinitionService; protected cn.ibizlab.businesscentral.core.base.service.ITimezoneDefinitionService timezonedefinitionService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,9 +46,9 @@ public class TimezoneRuleServiceImpl extends ServiceImpl<TimezoneRuleMapper, Tim ...@@ -46,9 +46,9 @@ public class TimezoneRuleServiceImpl extends ServiceImpl<TimezoneRuleMapper, Tim
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITimezoneDefinitionService timezonedefinitionService; protected cn.ibizlab.businesscentral.core.base.service.ITimezoneDefinitionService timezonedefinitionService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
public boolean checkKey(TimezoneRule et) { public boolean checkKey(TimezoneRule et) {
......
...@@ -46,18 +46,18 @@ public class UomScheduleServiceImpl extends ServiceImpl<UomScheduleMapper, UomSc ...@@ -46,18 +46,18 @@ public class UomScheduleServiceImpl extends ServiceImpl<UomScheduleMapper, UomSc
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IContractDetailService contractdetailService; protected cn.ibizlab.businesscentral.core.service.service.IContractDetailService contractdetailService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.product.service.IProductPriceLevelService productpricelevelService; protected cn.ibizlab.businesscentral.core.product.service.IProductPriceLevelService productpricelevelService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.product.service.IProductService productService; protected cn.ibizlab.businesscentral.core.product.service.IProductService productService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IUomService uomService; protected cn.ibizlab.businesscentral.core.base.service.IUomService uomService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,35 +46,35 @@ public class UomServiceImpl extends ServiceImpl<UomMapper, Uom> implements IUomS ...@@ -46,35 +46,35 @@ public class UomServiceImpl extends ServiceImpl<UomMapper, Uom> implements IUomS
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IContractDetailService contractdetailService; protected cn.ibizlab.businesscentral.core.service.service.IContractDetailService contractdetailService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.finance.service.IInvoiceDetailService invoicedetailService; protected cn.ibizlab.businesscentral.core.finance.service.IInvoiceDetailService invoicedetailService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IOpportunityProductService opportunityproductService; protected cn.ibizlab.businesscentral.core.sales.service.IOpportunityProductService opportunityproductService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.product.service.IProductAssociationService productassociationService; protected cn.ibizlab.businesscentral.core.product.service.IProductAssociationService productassociationService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.product.service.IProductPriceLevelService productpricelevelService; protected cn.ibizlab.businesscentral.core.product.service.IProductPriceLevelService productpricelevelService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.product.service.IProductService productService; protected cn.ibizlab.businesscentral.core.product.service.IProductService productService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IQuoteDetailService quotedetailService; protected cn.ibizlab.businesscentral.core.sales.service.IQuoteDetailService quotedetailService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ISalesOrderDetailService salesorderdetailService; protected cn.ibizlab.businesscentral.core.sales.service.ISalesOrderDetailService salesorderdetailService;
private cn.ibizlab.businesscentral.core.base.service.IUomService uomService = this; protected cn.ibizlab.businesscentral.core.base.service.IUomService uomService = this;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IUomScheduleService uomscheduleService; protected cn.ibizlab.businesscentral.core.base.service.IUomScheduleService uomscheduleService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
public Uom getDraft(Uom et) { public Uom getDraft(Uom et) {
......
...@@ -46,9 +46,9 @@ public class AnnualFiscalCalendarServiceImpl extends ServiceImpl<AnnualFiscalCal ...@@ -46,9 +46,9 @@ public class AnnualFiscalCalendarServiceImpl extends ServiceImpl<AnnualFiscalCal
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,9 +46,9 @@ public class FixedMonthlyFiscalCalendarServiceImpl extends ServiceImpl<FixedMont ...@@ -46,9 +46,9 @@ public class FixedMonthlyFiscalCalendarServiceImpl extends ServiceImpl<FixedMont
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
public boolean checkKey(FixedMonthlyFiscalCalendar et) { public boolean checkKey(FixedMonthlyFiscalCalendar et) {
......
...@@ -45,24 +45,24 @@ import org.springframework.util.StringUtils; ...@@ -45,24 +45,24 @@ import org.springframework.util.StringUtils;
public class InvoiceDetailServiceImpl extends ServiceImpl<InvoiceDetailMapper, InvoiceDetail> implements IInvoiceDetailService { public class InvoiceDetailServiceImpl extends ServiceImpl<InvoiceDetailMapper, InvoiceDetail> implements IInvoiceDetailService {
private cn.ibizlab.businesscentral.core.finance.service.IInvoiceDetailService invoicedetailService = this; protected cn.ibizlab.businesscentral.core.finance.service.IInvoiceDetailService invoicedetailService = this;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.finance.service.IInvoiceService invoiceService; protected cn.ibizlab.businesscentral.core.finance.service.IInvoiceService invoiceService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.product.service.IProductService productService; protected cn.ibizlab.businesscentral.core.product.service.IProductService productService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ISalesOrderDetailService salesorderdetailService; protected cn.ibizlab.businesscentral.core.sales.service.ISalesOrderDetailService salesorderdetailService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IUomService uomService; protected cn.ibizlab.businesscentral.core.base.service.IUomService uomService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
public boolean checkKey(InvoiceDetail et) { public boolean checkKey(InvoiceDetail et) {
......
...@@ -46,24 +46,24 @@ public class InvoiceServiceImpl extends ServiceImpl<InvoiceMapper, Invoice> impl ...@@ -46,24 +46,24 @@ public class InvoiceServiceImpl extends ServiceImpl<InvoiceMapper, Invoice> impl
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.finance.service.IInvoiceDetailService invoicedetailService; protected cn.ibizlab.businesscentral.core.finance.service.IInvoiceDetailService invoicedetailService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IOpportunityService opportunityService; protected cn.ibizlab.businesscentral.core.sales.service.IOpportunityService opportunityService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.product.service.IPriceLevelService pricelevelService; protected cn.ibizlab.businesscentral.core.product.service.IPriceLevelService pricelevelService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ISalesOrderService salesorderService; protected cn.ibizlab.businesscentral.core.sales.service.ISalesOrderService salesorderService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ISlaService slaService; protected cn.ibizlab.businesscentral.core.base.service.ISlaService slaService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,9 +46,9 @@ public class MonthlyFiscalCalendarServiceImpl extends ServiceImpl<MonthlyFiscalC ...@@ -46,9 +46,9 @@ public class MonthlyFiscalCalendarServiceImpl extends ServiceImpl<MonthlyFiscalC
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,9 +46,9 @@ public class QuarterlyFiscalCalendarServiceImpl extends ServiceImpl<QuarterlyFis ...@@ -46,9 +46,9 @@ public class QuarterlyFiscalCalendarServiceImpl extends ServiceImpl<QuarterlyFis
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,9 +46,9 @@ public class SemiannualFiscalCalendarServiceImpl extends ServiceImpl<SemiannualF ...@@ -46,9 +46,9 @@ public class SemiannualFiscalCalendarServiceImpl extends ServiceImpl<SemiannualF
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,9 +46,9 @@ public class CampaignActivityServiceImpl extends ServiceImpl<CampaignActivityMap ...@@ -46,9 +46,9 @@ public class CampaignActivityServiceImpl extends ServiceImpl<CampaignActivityMap
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ISlaService slaService; protected cn.ibizlab.businesscentral.core.base.service.ISlaService slaService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
...@@ -185,7 +185,7 @@ public class CampaignActivityServiceImpl extends ServiceImpl<CampaignActivityMap ...@@ -185,7 +185,7 @@ public class CampaignActivityServiceImpl extends ServiceImpl<CampaignActivityMap
cn.ibizlab.businesscentral.core.marketing.mapping.CampaignActivityInheritMapping campaignactivityInheritMapping; cn.ibizlab.businesscentral.core.marketing.mapping.CampaignActivityInheritMapping campaignactivityInheritMapping;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IActivityPointerService activitypointerService; protected cn.ibizlab.businesscentral.core.base.service.IActivityPointerService activitypointerService;
/** /**
* 创建索引主实体数据 * 创建索引主实体数据
......
...@@ -46,9 +46,9 @@ public class CampaignCampaignServiceImpl extends ServiceImpl<CampaignCampaignMap ...@@ -46,9 +46,9 @@ public class CampaignCampaignServiceImpl extends ServiceImpl<CampaignCampaignMap
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.marketing.service.ICampaignService campaignService; protected cn.ibizlab.businesscentral.core.marketing.service.ICampaignService campaignService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
public CampaignCampaign getDraft(CampaignCampaign et) { public CampaignCampaign getDraft(CampaignCampaign et) {
......
...@@ -46,12 +46,12 @@ public class CampaignListServiceImpl extends ServiceImpl<CampaignListMapper, Cam ...@@ -46,12 +46,12 @@ public class CampaignListServiceImpl extends ServiceImpl<CampaignListMapper, Cam
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.marketing.service.ICampaignService campaignService; protected cn.ibizlab.businesscentral.core.marketing.service.ICampaignService campaignService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.marketing.service.IIBizListService ibizlistService; protected cn.ibizlab.businesscentral.core.marketing.service.IIBizListService ibizlistService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,15 +46,15 @@ public class CampaignResponseServiceImpl extends ServiceImpl<CampaignResponseMap ...@@ -46,15 +46,15 @@ public class CampaignResponseServiceImpl extends ServiceImpl<CampaignResponseMap
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ILeadService leadService; protected cn.ibizlab.businesscentral.core.sales.service.ILeadService leadService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ISlaService slaService; protected cn.ibizlab.businesscentral.core.base.service.ISlaService slaService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
...@@ -201,7 +201,7 @@ public class CampaignResponseServiceImpl extends ServiceImpl<CampaignResponseMap ...@@ -201,7 +201,7 @@ public class CampaignResponseServiceImpl extends ServiceImpl<CampaignResponseMap
cn.ibizlab.businesscentral.core.marketing.mapping.CampaignResponseInheritMapping campaignresponseInheritMapping; cn.ibizlab.businesscentral.core.marketing.mapping.CampaignResponseInheritMapping campaignresponseInheritMapping;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IActivityPointerService activitypointerService; protected cn.ibizlab.businesscentral.core.base.service.IActivityPointerService activitypointerService;
/** /**
* 创建索引主实体数据 * 创建索引主实体数据
......
...@@ -46,30 +46,30 @@ public class CampaignServiceImpl extends ServiceImpl<CampaignMapper, Campaign> i ...@@ -46,30 +46,30 @@ public class CampaignServiceImpl extends ServiceImpl<CampaignMapper, Campaign> i
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.marketing.service.ICampaignCampaignService campaigncampaignService; protected cn.ibizlab.businesscentral.core.marketing.service.ICampaignCampaignService campaigncampaignService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.marketing.service.ICampaignListService campaignlistService; protected cn.ibizlab.businesscentral.core.marketing.service.ICampaignListService campaignlistService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ILeadService leadService; protected cn.ibizlab.businesscentral.core.sales.service.ILeadService leadService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IOpportunityService opportunityService; protected cn.ibizlab.businesscentral.core.sales.service.IOpportunityService opportunityService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IQuoteService quoteService; protected cn.ibizlab.businesscentral.core.sales.service.IQuoteService quoteService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ISalesOrderService salesorderService; protected cn.ibizlab.businesscentral.core.sales.service.ISalesOrderService salesorderService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.product.service.IPriceLevelService pricelevelService; protected cn.ibizlab.businesscentral.core.product.service.IPriceLevelService pricelevelService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,21 +46,21 @@ public class IBizListServiceImpl extends ServiceImpl<IBizListMapper, IBizList> i ...@@ -46,21 +46,21 @@ public class IBizListServiceImpl extends ServiceImpl<IBizListMapper, IBizList> i
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.marketing.service.ICampaignListService campaignlistService; protected cn.ibizlab.businesscentral.core.marketing.service.ICampaignListService campaignlistService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.marketing.service.IListAccountService listaccountService; protected cn.ibizlab.businesscentral.core.marketing.service.IListAccountService listaccountService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.marketing.service.IListContactService listcontactService; protected cn.ibizlab.businesscentral.core.marketing.service.IListContactService listcontactService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.marketing.service.IListLeadService listleadService; protected cn.ibizlab.businesscentral.core.marketing.service.IListLeadService listleadService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,12 +46,12 @@ public class ListAccountServiceImpl extends ServiceImpl<ListAccountMapper, ListA ...@@ -46,12 +46,12 @@ public class ListAccountServiceImpl extends ServiceImpl<ListAccountMapper, ListA
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IAccountService accountService; protected cn.ibizlab.businesscentral.core.base.service.IAccountService accountService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.marketing.service.IIBizListService ibizlistService; protected cn.ibizlab.businesscentral.core.marketing.service.IIBizListService ibizlistService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
public boolean checkKey(ListAccount et) { public boolean checkKey(ListAccount et) {
......
...@@ -46,12 +46,12 @@ public class ListContactServiceImpl extends ServiceImpl<ListContactMapper, ListC ...@@ -46,12 +46,12 @@ public class ListContactServiceImpl extends ServiceImpl<ListContactMapper, ListC
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IContactService contactService; protected cn.ibizlab.businesscentral.core.base.service.IContactService contactService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.marketing.service.IIBizListService ibizlistService; protected cn.ibizlab.businesscentral.core.marketing.service.IIBizListService ibizlistService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
public ListContact getDraft(ListContact et) { public ListContact getDraft(ListContact et) {
......
...@@ -46,12 +46,12 @@ public class ListLeadServiceImpl extends ServiceImpl<ListLeadMapper, ListLead> i ...@@ -46,12 +46,12 @@ public class ListLeadServiceImpl extends ServiceImpl<ListLeadMapper, ListLead> i
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ILeadService leadService; protected cn.ibizlab.businesscentral.core.sales.service.ILeadService leadService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.marketing.service.IIBizListService ibizlistService; protected cn.ibizlab.businesscentral.core.marketing.service.IIBizListService ibizlistService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
public boolean checkKey(ListLead et) { public boolean checkKey(ListLead et) {
......
...@@ -46,36 +46,36 @@ public class PriceLevelServiceImpl extends ServiceImpl<PriceLevelMapper, PriceLe ...@@ -46,36 +46,36 @@ public class PriceLevelServiceImpl extends ServiceImpl<PriceLevelMapper, PriceLe
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IAccountService accountService; protected cn.ibizlab.businesscentral.core.base.service.IAccountService accountService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.marketing.service.ICampaignService campaignService; protected cn.ibizlab.businesscentral.core.marketing.service.ICampaignService campaignService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IContactService contactService; protected cn.ibizlab.businesscentral.core.base.service.IContactService contactService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.finance.service.IInvoiceService invoiceService; protected cn.ibizlab.businesscentral.core.finance.service.IInvoiceService invoiceService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IOpportunityService opportunityService; protected cn.ibizlab.businesscentral.core.sales.service.IOpportunityService opportunityService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.product.service.IProductPriceLevelService productpricelevelService; protected cn.ibizlab.businesscentral.core.product.service.IProductPriceLevelService productpricelevelService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.product.service.IProductService productService; protected cn.ibizlab.businesscentral.core.product.service.IProductService productService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IQuoteService quoteService; protected cn.ibizlab.businesscentral.core.sales.service.IQuoteService quoteService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ISalesOrderService salesorderService; protected cn.ibizlab.businesscentral.core.sales.service.ISalesOrderService salesorderService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,15 +46,15 @@ public class ProductAssociationServiceImpl extends ServiceImpl<ProductAssociatio ...@@ -46,15 +46,15 @@ public class ProductAssociationServiceImpl extends ServiceImpl<ProductAssociatio
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.product.service.IProductService productService; protected cn.ibizlab.businesscentral.core.product.service.IProductService productService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IUomService uomService; protected cn.ibizlab.businesscentral.core.base.service.IUomService uomService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,24 +46,24 @@ public class ProductPriceLevelServiceImpl extends ServiceImpl<ProductPriceLevelM ...@@ -46,24 +46,24 @@ public class ProductPriceLevelServiceImpl extends ServiceImpl<ProductPriceLevelM
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IDiscountTypeService discounttypeService; protected cn.ibizlab.businesscentral.core.sales.service.IDiscountTypeService discounttypeService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.product.service.IPriceLevelService pricelevelService; protected cn.ibizlab.businesscentral.core.product.service.IPriceLevelService pricelevelService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.product.service.IProductService productService; protected cn.ibizlab.businesscentral.core.product.service.IProductService productService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IUomScheduleService uomscheduleService; protected cn.ibizlab.businesscentral.core.base.service.IUomScheduleService uomscheduleService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IUomService uomService; protected cn.ibizlab.businesscentral.core.base.service.IUomService uomService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,53 +46,53 @@ public class ProductServiceImpl extends ServiceImpl<ProductMapper, Product> impl ...@@ -46,53 +46,53 @@ public class ProductServiceImpl extends ServiceImpl<ProductMapper, Product> impl
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IContractDetailService contractdetailService; protected cn.ibizlab.businesscentral.core.service.service.IContractDetailService contractdetailService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IIncidentService incidentService; protected cn.ibizlab.businesscentral.core.service.service.IIncidentService incidentService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.stock.service.IInventoryService inventoryService; protected cn.ibizlab.businesscentral.core.stock.service.IInventoryService inventoryService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.finance.service.IInvoiceDetailService invoicedetailService; protected cn.ibizlab.businesscentral.core.finance.service.IInvoiceDetailService invoicedetailService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IOpportunityProductService opportunityproductService; protected cn.ibizlab.businesscentral.core.sales.service.IOpportunityProductService opportunityproductService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.product.service.IProductAssociationService productassociationService; protected cn.ibizlab.businesscentral.core.product.service.IProductAssociationService productassociationService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.product.service.IProductPriceLevelService productpricelevelService; protected cn.ibizlab.businesscentral.core.product.service.IProductPriceLevelService productpricelevelService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.product.service.IProductSubstituteService productsubstituteService; protected cn.ibizlab.businesscentral.core.product.service.IProductSubstituteService productsubstituteService;
private cn.ibizlab.businesscentral.core.product.service.IProductService productService = this; protected cn.ibizlab.businesscentral.core.product.service.IProductService productService = this;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IQuoteDetailService quotedetailService; protected cn.ibizlab.businesscentral.core.sales.service.IQuoteDetailService quotedetailService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ISalesOrderDetailService salesorderdetailService; protected cn.ibizlab.businesscentral.core.sales.service.ISalesOrderDetailService salesorderdetailService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.product.service.IPriceLevelService pricelevelService; protected cn.ibizlab.businesscentral.core.product.service.IPriceLevelService pricelevelService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ISubjectService subjectService; protected cn.ibizlab.businesscentral.core.base.service.ISubjectService subjectService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IUomScheduleService uomscheduleService; protected cn.ibizlab.businesscentral.core.base.service.IUomScheduleService uomscheduleService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IUomService uomService; protected cn.ibizlab.businesscentral.core.base.service.IUomService uomService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
public boolean checkKey(Product et) { public boolean checkKey(Product et) {
......
...@@ -46,12 +46,12 @@ public class ProductSubstituteServiceImpl extends ServiceImpl<ProductSubstituteM ...@@ -46,12 +46,12 @@ public class ProductSubstituteServiceImpl extends ServiceImpl<ProductSubstituteM
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.product.service.IProductService productService; protected cn.ibizlab.businesscentral.core.product.service.IProductService productService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -45,7 +45,7 @@ import org.springframework.util.StringUtils; ...@@ -45,7 +45,7 @@ import org.springframework.util.StringUtils;
public class BulkDeleteFailureServiceImpl extends ServiceImpl<BulkDeleteFailureMapper, BulkDeleteFailure> implements IBulkDeleteFailureService { public class BulkDeleteFailureServiceImpl extends ServiceImpl<BulkDeleteFailureMapper, BulkDeleteFailure> implements IBulkDeleteFailureService {
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -45,7 +45,7 @@ import org.springframework.util.StringUtils; ...@@ -45,7 +45,7 @@ import org.springframework.util.StringUtils;
public class BulkDeleteOperationServiceImpl extends ServiceImpl<BulkDeleteOperationMapper, BulkDeleteOperation> implements IBulkDeleteOperationService { public class BulkDeleteOperationServiceImpl extends ServiceImpl<BulkDeleteOperationMapper, BulkDeleteOperation> implements IBulkDeleteOperationService {
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
public boolean checkKey(BulkDeleteOperation et) { public boolean checkKey(BulkDeleteOperation et) {
......
...@@ -46,9 +46,9 @@ public class BulkOperationLogServiceImpl extends ServiceImpl<BulkOperationLogMap ...@@ -46,9 +46,9 @@ public class BulkOperationLogServiceImpl extends ServiceImpl<BulkOperationLogMap
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IActivityPointerService activitypointerService; protected cn.ibizlab.businesscentral.core.base.service.IActivityPointerService activitypointerService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,12 +46,12 @@ public class BulkOperationServiceImpl extends ServiceImpl<BulkOperationMapper, B ...@@ -46,12 +46,12 @@ public class BulkOperationServiceImpl extends ServiceImpl<BulkOperationMapper, B
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ISlaService slaService; protected cn.ibizlab.businesscentral.core.base.service.ISlaService slaService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -45,7 +45,7 @@ import org.springframework.util.StringUtils; ...@@ -45,7 +45,7 @@ import org.springframework.util.StringUtils;
public class CallbackRegistrationServiceImpl extends ServiceImpl<CallbackRegistrationMapper, CallbackRegistration> implements ICallbackRegistrationService { public class CallbackRegistrationServiceImpl extends ServiceImpl<CallbackRegistrationMapper, CallbackRegistration> implements ICallbackRegistrationService {
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,9 +46,9 @@ public class ConnectionRoleServiceImpl extends ServiceImpl<ConnectionRoleMapper, ...@@ -46,9 +46,9 @@ public class ConnectionRoleServiceImpl extends ServiceImpl<ConnectionRoleMapper,
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.runtime.service.IConnectionService connectionService; protected cn.ibizlab.businesscentral.core.runtime.service.IConnectionService connectionService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,12 +46,12 @@ public class ConnectionServiceImpl extends ServiceImpl<ConnectionMapper, Connect ...@@ -46,12 +46,12 @@ public class ConnectionServiceImpl extends ServiceImpl<ConnectionMapper, Connect
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.runtime.service.IConnectionRoleService connectionroleService; protected cn.ibizlab.businesscentral.core.runtime.service.IConnectionRoleService connectionroleService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,12 +46,12 @@ public class ExpiredprocessServiceImpl extends ServiceImpl<ExpiredprocessMapper, ...@@ -46,12 +46,12 @@ public class ExpiredprocessServiceImpl extends ServiceImpl<ExpiredprocessMapper,
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IKnowledgeArticleService knowledgearticleService; protected cn.ibizlab.businesscentral.core.base.service.IKnowledgeArticleService knowledgearticleService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,12 +46,12 @@ public class QueueItemServiceImpl extends ServiceImpl<QueueItemMapper, QueueItem ...@@ -46,12 +46,12 @@ public class QueueItemServiceImpl extends ServiceImpl<QueueItemMapper, QueueItem
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.runtime.service.IQueueService queueService; protected cn.ibizlab.businesscentral.core.runtime.service.IQueueService queueService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
public boolean checkKey(QueueItem et) { public boolean checkKey(QueueItem et) {
......
...@@ -46,18 +46,18 @@ public class QueueServiceImpl extends ServiceImpl<QueueMapper, Queue> implements ...@@ -46,18 +46,18 @@ public class QueueServiceImpl extends ServiceImpl<QueueMapper, Queue> implements
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.runtime.service.IQueueItemService queueitemService; protected cn.ibizlab.businesscentral.core.runtime.service.IQueueItemService queueitemService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITeamService teamService; protected cn.ibizlab.businesscentral.core.base.service.ITeamService teamService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IBusinessUnitService businessunitService; protected cn.ibizlab.businesscentral.core.base.service.IBusinessUnitService businessunitService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,18 +46,18 @@ public class CompetitorServiceImpl extends ServiceImpl<CompetitorMapper, Competi ...@@ -46,18 +46,18 @@ public class CompetitorServiceImpl extends ServiceImpl<CompetitorMapper, Competi
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ILeadCompetitorService leadcompetitorService; protected cn.ibizlab.businesscentral.core.sales.service.ILeadCompetitorService leadcompetitorService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IOpportunityCloseService opportunitycloseService; protected cn.ibizlab.businesscentral.core.sales.service.IOpportunityCloseService opportunitycloseService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IOpportunityCompetitorService opportunitycompetitorService; protected cn.ibizlab.businesscentral.core.sales.service.IOpportunityCompetitorService opportunitycompetitorService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,9 +46,9 @@ public class DiscountServiceImpl extends ServiceImpl<DiscountMapper, Discount> i ...@@ -46,9 +46,9 @@ public class DiscountServiceImpl extends ServiceImpl<DiscountMapper, Discount> i
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IDiscountTypeService discounttypeService; protected cn.ibizlab.businesscentral.core.sales.service.IDiscountTypeService discounttypeService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,15 +46,15 @@ public class DiscountTypeServiceImpl extends ServiceImpl<DiscountTypeMapper, Dis ...@@ -46,15 +46,15 @@ public class DiscountTypeServiceImpl extends ServiceImpl<DiscountTypeMapper, Dis
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IDiscountService discountService; protected cn.ibizlab.businesscentral.core.sales.service.IDiscountService discountService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.product.service.IProductPriceLevelService productpricelevelService; protected cn.ibizlab.businesscentral.core.product.service.IProductPriceLevelService productpricelevelService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,9 +46,9 @@ public class GoalRollupQueryServiceImpl extends ServiceImpl<GoalRollupQueryMappe ...@@ -46,9 +46,9 @@ public class GoalRollupQueryServiceImpl extends ServiceImpl<GoalRollupQueryMappe
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IGoalService goalService; protected cn.ibizlab.businesscentral.core.sales.service.IGoalService goalService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -45,15 +45,15 @@ import org.springframework.util.StringUtils; ...@@ -45,15 +45,15 @@ import org.springframework.util.StringUtils;
public class GoalServiceImpl extends ServiceImpl<GoalMapper, Goal> implements IGoalService { public class GoalServiceImpl extends ServiceImpl<GoalMapper, Goal> implements IGoalService {
private cn.ibizlab.businesscentral.core.sales.service.IGoalService goalService = this; protected cn.ibizlab.businesscentral.core.sales.service.IGoalService goalService = this;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IGoalRollupQueryService goalrollupqueryService; protected cn.ibizlab.businesscentral.core.sales.service.IGoalRollupQueryService goalrollupqueryService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IMetricService metricService; protected cn.ibizlab.businesscentral.core.base.service.IMetricService metricService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,12 +46,12 @@ public class LeadAddressServiceImpl extends ServiceImpl<LeadAddressMapper, LeadA ...@@ -46,12 +46,12 @@ public class LeadAddressServiceImpl extends ServiceImpl<LeadAddressMapper, LeadA
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ILeadService leadService; protected cn.ibizlab.businesscentral.core.sales.service.ILeadService leadService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
public LeadAddress getDraft(LeadAddress et) { public LeadAddress getDraft(LeadAddress et) {
......
...@@ -46,12 +46,12 @@ public class LeadCompetitorServiceImpl extends ServiceImpl<LeadCompetitorMapper, ...@@ -46,12 +46,12 @@ public class LeadCompetitorServiceImpl extends ServiceImpl<LeadCompetitorMapper,
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ICompetitorService competitorService; protected cn.ibizlab.businesscentral.core.sales.service.ICompetitorService competitorService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ILeadService leadService; protected cn.ibizlab.businesscentral.core.sales.service.ILeadService leadService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
public boolean checkKey(LeadCompetitor et) { public boolean checkKey(LeadCompetitor et) {
......
...@@ -46,39 +46,39 @@ public class LeadServiceImpl extends ServiceImpl<LeadMapper, Lead> implements IL ...@@ -46,39 +46,39 @@ public class LeadServiceImpl extends ServiceImpl<LeadMapper, Lead> implements IL
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IAccountService accountService; protected cn.ibizlab.businesscentral.core.base.service.IAccountService accountService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IContactService contactService; protected cn.ibizlab.businesscentral.core.base.service.IContactService contactService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ILeadAddressService leadaddressService; protected cn.ibizlab.businesscentral.core.sales.service.ILeadAddressService leadaddressService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ILeadCompetitorService leadcompetitorService; protected cn.ibizlab.businesscentral.core.sales.service.ILeadCompetitorService leadcompetitorService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.marketing.service.IListLeadService listleadService; protected cn.ibizlab.businesscentral.core.marketing.service.IListLeadService listleadService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IOpportunityService opportunityService; protected cn.ibizlab.businesscentral.core.sales.service.IOpportunityService opportunityService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.marketing.service.ICampaignResponseService campaignresponseService; protected cn.ibizlab.businesscentral.core.marketing.service.ICampaignResponseService campaignresponseService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.marketing.service.ICampaignService campaignService; protected cn.ibizlab.businesscentral.core.marketing.service.ICampaignService campaignService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IIncidentService incidentService; protected cn.ibizlab.businesscentral.core.service.service.IIncidentService incidentService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ISlaService slaService; protected cn.ibizlab.businesscentral.core.base.service.ISlaService slaService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,21 +46,21 @@ public class OpportunityCloseServiceImpl extends ServiceImpl<OpportunityCloseMap ...@@ -46,21 +46,21 @@ public class OpportunityCloseServiceImpl extends ServiceImpl<OpportunityCloseMap
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ICompetitorService competitorService; protected cn.ibizlab.businesscentral.core.sales.service.ICompetitorService competitorService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IOpportunityService opportunityService; protected cn.ibizlab.businesscentral.core.sales.service.IOpportunityService opportunityService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IIBizServiceService ibizserviceService; protected cn.ibizlab.businesscentral.core.service.service.IIBizServiceService ibizserviceService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ISlaService slaService; protected cn.ibizlab.businesscentral.core.base.service.ISlaService slaService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,12 +46,12 @@ public class OpportunityCompetitorServiceImpl extends ServiceImpl<OpportunityCom ...@@ -46,12 +46,12 @@ public class OpportunityCompetitorServiceImpl extends ServiceImpl<OpportunityCom
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ICompetitorService competitorService; protected cn.ibizlab.businesscentral.core.sales.service.ICompetitorService competitorService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IOpportunityService opportunityService; protected cn.ibizlab.businesscentral.core.sales.service.IOpportunityService opportunityService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -45,21 +45,21 @@ import org.springframework.util.StringUtils; ...@@ -45,21 +45,21 @@ import org.springframework.util.StringUtils;
public class OpportunityProductServiceImpl extends ServiceImpl<OpportunityProductMapper, OpportunityProduct> implements IOpportunityProductService { public class OpportunityProductServiceImpl extends ServiceImpl<OpportunityProductMapper, OpportunityProduct> implements IOpportunityProductService {
private cn.ibizlab.businesscentral.core.sales.service.IOpportunityProductService opportunityproductService = this; protected cn.ibizlab.businesscentral.core.sales.service.IOpportunityProductService opportunityproductService = this;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IOpportunityService opportunityService; protected cn.ibizlab.businesscentral.core.sales.service.IOpportunityService opportunityService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.product.service.IProductService productService; protected cn.ibizlab.businesscentral.core.product.service.IProductService productService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IUomService uomService; protected cn.ibizlab.businesscentral.core.base.service.IUomService uomService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
public OpportunityProduct getDraft(OpportunityProduct et) { public OpportunityProduct getDraft(OpportunityProduct et) {
......
...@@ -46,45 +46,45 @@ public class OpportunityServiceImpl extends ServiceImpl<OpportunityMapper, Oppor ...@@ -46,45 +46,45 @@ public class OpportunityServiceImpl extends ServiceImpl<OpportunityMapper, Oppor
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.finance.service.IInvoiceService invoiceService; protected cn.ibizlab.businesscentral.core.finance.service.IInvoiceService invoiceService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ILeadService leadService; protected cn.ibizlab.businesscentral.core.sales.service.ILeadService leadService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IOpportunityCloseService opportunitycloseService; protected cn.ibizlab.businesscentral.core.sales.service.IOpportunityCloseService opportunitycloseService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IOpportunityCompetitorService opportunitycompetitorService; protected cn.ibizlab.businesscentral.core.sales.service.IOpportunityCompetitorService opportunitycompetitorService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IOpportunityProductService opportunityproductService; protected cn.ibizlab.businesscentral.core.sales.service.IOpportunityProductService opportunityproductService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IQuoteService quoteService; protected cn.ibizlab.businesscentral.core.sales.service.IQuoteService quoteService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ISalesOrderService salesorderService; protected cn.ibizlab.businesscentral.core.sales.service.ISalesOrderService salesorderService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IAccountService accountService; protected cn.ibizlab.businesscentral.core.base.service.IAccountService accountService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.marketing.service.ICampaignService campaignService; protected cn.ibizlab.businesscentral.core.marketing.service.ICampaignService campaignService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IContactService contactService; protected cn.ibizlab.businesscentral.core.base.service.IContactService contactService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.product.service.IPriceLevelService pricelevelService; protected cn.ibizlab.businesscentral.core.product.service.IPriceLevelService pricelevelService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ISlaService slaService; protected cn.ibizlab.businesscentral.core.base.service.ISlaService slaService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,18 +46,18 @@ public class OrderCloseServiceImpl extends ServiceImpl<OrderCloseMapper, OrderCl ...@@ -46,18 +46,18 @@ public class OrderCloseServiceImpl extends ServiceImpl<OrderCloseMapper, OrderCl
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ISalesOrderService salesorderService; protected cn.ibizlab.businesscentral.core.sales.service.ISalesOrderService salesorderService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IIBizServiceService ibizserviceService; protected cn.ibizlab.businesscentral.core.service.service.IIBizServiceService ibizserviceService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ISlaService slaService; protected cn.ibizlab.businesscentral.core.base.service.ISlaService slaService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,18 +46,18 @@ public class QuoteCloseServiceImpl extends ServiceImpl<QuoteCloseMapper, QuoteCl ...@@ -46,18 +46,18 @@ public class QuoteCloseServiceImpl extends ServiceImpl<QuoteCloseMapper, QuoteCl
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IQuoteService quoteService; protected cn.ibizlab.businesscentral.core.sales.service.IQuoteService quoteService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.service.service.IIBizServiceService ibizserviceService; protected cn.ibizlab.businesscentral.core.service.service.IIBizServiceService ibizserviceService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ISlaService slaService; protected cn.ibizlab.businesscentral.core.base.service.ISlaService slaService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -45,24 +45,24 @@ import org.springframework.util.StringUtils; ...@@ -45,24 +45,24 @@ import org.springframework.util.StringUtils;
public class QuoteDetailServiceImpl extends ServiceImpl<QuoteDetailMapper, QuoteDetail> implements IQuoteDetailService { public class QuoteDetailServiceImpl extends ServiceImpl<QuoteDetailMapper, QuoteDetail> implements IQuoteDetailService {
private cn.ibizlab.businesscentral.core.sales.service.IQuoteDetailService quotedetailService = this; protected cn.ibizlab.businesscentral.core.sales.service.IQuoteDetailService quotedetailService = this;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ISalesOrderDetailService salesorderdetailService; protected cn.ibizlab.businesscentral.core.sales.service.ISalesOrderDetailService salesorderdetailService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.product.service.IProductService productService; protected cn.ibizlab.businesscentral.core.product.service.IProductService productService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IQuoteService quoteService; protected cn.ibizlab.businesscentral.core.sales.service.IQuoteService quoteService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IUomService uomService; protected cn.ibizlab.businesscentral.core.base.service.IUomService uomService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
public QuoteDetail getDraft(QuoteDetail et) { public QuoteDetail getDraft(QuoteDetail et) {
......
...@@ -46,30 +46,30 @@ public class QuoteServiceImpl extends ServiceImpl<QuoteMapper, Quote> implements ...@@ -46,30 +46,30 @@ public class QuoteServiceImpl extends ServiceImpl<QuoteMapper, Quote> implements
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IQuoteCloseService quotecloseService; protected cn.ibizlab.businesscentral.core.sales.service.IQuoteCloseService quotecloseService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IQuoteDetailService quotedetailService; protected cn.ibizlab.businesscentral.core.sales.service.IQuoteDetailService quotedetailService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ISalesOrderService salesorderService; protected cn.ibizlab.businesscentral.core.sales.service.ISalesOrderService salesorderService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.marketing.service.ICampaignService campaignService; protected cn.ibizlab.businesscentral.core.marketing.service.ICampaignService campaignService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IOpportunityService opportunityService; protected cn.ibizlab.businesscentral.core.sales.service.IOpportunityService opportunityService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.product.service.IPriceLevelService pricelevelService; protected cn.ibizlab.businesscentral.core.product.service.IPriceLevelService pricelevelService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ISlaService slaService; protected cn.ibizlab.businesscentral.core.base.service.ISlaService slaService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,9 +46,9 @@ public class SalesLiteratureItemServiceImpl extends ServiceImpl<SalesLiteratureI ...@@ -46,9 +46,9 @@ public class SalesLiteratureItemServiceImpl extends ServiceImpl<SalesLiteratureI
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ISalesLiteratureService salesliteratureService; protected cn.ibizlab.businesscentral.core.sales.service.ISalesLiteratureService salesliteratureService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,15 +46,15 @@ public class SalesLiteratureServiceImpl extends ServiceImpl<SalesLiteratureMappe ...@@ -46,15 +46,15 @@ public class SalesLiteratureServiceImpl extends ServiceImpl<SalesLiteratureMappe
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ISalesLiteratureItemService salesliteratureitemService; protected cn.ibizlab.businesscentral.core.sales.service.ISalesLiteratureItemService salesliteratureitemService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ISubjectService subjectService; protected cn.ibizlab.businesscentral.core.base.service.ISubjectService subjectService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,26 +46,26 @@ public class SalesOrderDetailServiceImpl extends ServiceImpl<SalesOrderDetailMap ...@@ -46,26 +46,26 @@ public class SalesOrderDetailServiceImpl extends ServiceImpl<SalesOrderDetailMap
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.finance.service.IInvoiceDetailService invoicedetailService; protected cn.ibizlab.businesscentral.core.finance.service.IInvoiceDetailService invoicedetailService;
private cn.ibizlab.businesscentral.core.sales.service.ISalesOrderDetailService salesorderdetailService = this; protected cn.ibizlab.businesscentral.core.sales.service.ISalesOrderDetailService salesorderdetailService = this;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.product.service.IProductService productService; protected cn.ibizlab.businesscentral.core.product.service.IProductService productService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IQuoteDetailService quotedetailService; protected cn.ibizlab.businesscentral.core.sales.service.IQuoteDetailService quotedetailService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ISalesOrderService salesorderService; protected cn.ibizlab.businesscentral.core.sales.service.ISalesOrderService salesorderService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.IUomService uomService; protected cn.ibizlab.businesscentral.core.base.service.IUomService uomService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
...@@ -46,33 +46,33 @@ public class SalesOrderServiceImpl extends ServiceImpl<SalesOrderMapper, SalesOr ...@@ -46,33 +46,33 @@ public class SalesOrderServiceImpl extends ServiceImpl<SalesOrderMapper, SalesOr
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.finance.service.IInvoiceService invoiceService; protected cn.ibizlab.businesscentral.core.finance.service.IInvoiceService invoiceService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IOrderCloseService ordercloseService; protected cn.ibizlab.businesscentral.core.sales.service.IOrderCloseService ordercloseService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.ISalesOrderDetailService salesorderdetailService; protected cn.ibizlab.businesscentral.core.sales.service.ISalesOrderDetailService salesorderdetailService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.marketing.service.ICampaignService campaignService; protected cn.ibizlab.businesscentral.core.marketing.service.ICampaignService campaignService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IOpportunityService opportunityService; protected cn.ibizlab.businesscentral.core.sales.service.IOpportunityService opportunityService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.product.service.IPriceLevelService pricelevelService; protected cn.ibizlab.businesscentral.core.product.service.IPriceLevelService pricelevelService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.sales.service.IQuoteService quoteService; protected cn.ibizlab.businesscentral.core.sales.service.IQuoteService quoteService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ISlaService slaService; protected cn.ibizlab.businesscentral.core.base.service.ISlaService slaService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
public boolean checkKey(SalesOrder et) { public boolean checkKey(SalesOrder et) {
......
...@@ -46,12 +46,12 @@ public class BookableResourceBookingHeaderServiceImpl extends ServiceImpl<Bookab ...@@ -46,12 +46,12 @@ public class BookableResourceBookingHeaderServiceImpl extends ServiceImpl<Bookab
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.scheduling.service.IBookableResourceBookingService bookableresourcebookingService; protected cn.ibizlab.businesscentral.core.scheduling.service.IBookableResourceBookingService bookableresourcebookingService;
@Autowired @Autowired
@Lazy @Lazy
private cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService; protected cn.ibizlab.businesscentral.core.base.service.ITransactionCurrencyService transactioncurrencyService;
private int batchSize = 500; protected int batchSize = 500;
@Override @Override
@Transactional @Transactional
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册