Commit cc4c846f authored by gary's avatar gary

1、fixbug

parent da324458
......@@ -46,10 +46,6 @@ public class EbsApiServiceImpl implements EbsApiService {
@Resource
private OrganizationExtraMapper organizationExtraMapper;
@Resource
private EnterpriseAccountSetMapper enterpriseAccountSetMapper;
@Resource
private EnterpriseAccountSetOrgMapper enterpriseAccountSetOrgMapper;
@Resource
private ProjectMapper projectMapper;
@Resource
private DistributedIdService distributedIdService;
......@@ -280,21 +276,6 @@ public class EbsApiServiceImpl implements EbsApiService {
orgEx.setUpdateTime(new Date());
organizationExtraMapper.updateByExampleSelective(orgEx,organizationExtraExample);
}
// 账套ID
/*if(StringUtils.isNotEmpty(a.getEnterpriseAccountCode())){
EnterpriseAccountSet eas = new EnterpriseAccountSet();
String easId = UUID.randomUUID().toString();
eas.setIsActive(false);
eas.setId(easId);
eas.setCode(a.getEnterpriseAccountCode());
eas.setCreatorId("66933E7B-DA75-4B2E-B7D6-AB65DCA20D50");
enterpriseAccountSetMapper.insertSelective(eas);
EnterpriseAccountSetOrg easo = new EnterpriseAccountSetOrg();
easo.setId(UUID.randomUUID().toString());
easo.setOrganizationId(orgId);
easo.setEnterpriseAccountSetId(easId);
enterpriseAccountSetOrgMapper.insertSelective(easo);
}*/
// 雇员信息
OrganizationEmployee oe = new OrganizationEmployee();
oe.setId(distributedIdService.nextId());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment