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

chitanda 发布系统代码

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