|
@@ -8,6 +8,7 @@ import java.util.Date;
|
|
|
import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
+import java.util.Map.Entry;
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
import org.apache.commons.io.FileUtils;
|
|
@@ -23,6 +24,7 @@ import com.ym.mec.biz.dal.dao.MusicGroupPaymentCalenderDao;
|
|
|
import com.ym.mec.biz.dal.dao.MusicGroupStudentFeeDao;
|
|
|
import com.ym.mec.biz.dal.dao.StudentPaymentOrderDetailDao;
|
|
|
import com.ym.mec.biz.dal.dto.StudentInfo;
|
|
|
+import com.ym.mec.biz.dal.entity.CooperationOrgan.OwnershipType;
|
|
|
import com.ym.mec.biz.dal.entity.Goods;
|
|
|
import com.ym.mec.biz.dal.entity.MusicGroup;
|
|
|
import com.ym.mec.biz.dal.entity.MusicGroupPaymentCalender;
|
|
@@ -112,29 +114,36 @@ public class ContractServiceImpl implements ContractService, InitializingBean {
|
|
|
@Override
|
|
|
public void afterPropertiesSet() throws Exception {
|
|
|
// 注册企业账户
|
|
|
- String orgName = "武汉长乐长风乐器销售有限公司";
|
|
|
- String organCode = "91420106333619290A";
|
|
|
+ Map<String, String> organList = new HashMap<String, String>();
|
|
|
+ organList.put("91420106333619290A", "武汉长乐长风乐器销售有限公司");
|
|
|
+ organList.put("91440300326364429H", "深圳大雅乐盟网络教育股份有限公司");
|
|
|
|
|
|
- SysUserTsign sysUserTsign = sysUserTsignService.queryByCardNo(organCode);
|
|
|
+ for (Entry<String, String> organ : organList.entrySet()) {
|
|
|
|
|
|
- if (sysUserTsign == null) {
|
|
|
+ String organCode = organ.getKey();
|
|
|
+ String orgName = organ.getValue();
|
|
|
|
|
|
- String accountId = eSealPlugin.createOrganAccount(orgName, organCode);
|
|
|
+ SysUserTsign sysUserTsign = sysUserTsignService.queryByCardNo(organCode);
|
|
|
|
|
|
- if (StringUtils.isBlank(accountId)) {
|
|
|
- throw new BizException("创建企业电子存证账户失败");
|
|
|
- }
|
|
|
+ if (sysUserTsign == null) {
|
|
|
|
|
|
- String sealData = eSealPlugin.createOrganSeal(accountId, "", "");
|
|
|
+ String accountId = eSealPlugin.createOrganAccount(orgName, organCode);
|
|
|
|
|
|
- if (StringUtils.isBlank(sealData)) {
|
|
|
- throw new BizException("创建电子存证印章失败");
|
|
|
- }
|
|
|
+ if (StringUtils.isBlank(accountId)) {
|
|
|
+ throw new BizException("创建企业电子存证账户失败");
|
|
|
+ }
|
|
|
|
|
|
- sysUserTsign = new SysUserTsign(-1, accountId, sealData, orgName, organCode);
|
|
|
+ String sealData = eSealPlugin.createOrganSeal(accountId, "", "");
|
|
|
|
|
|
- sysUserTsignService.insert(sysUserTsign);
|
|
|
+ if (StringUtils.isBlank(sealData)) {
|
|
|
+ throw new BizException("创建电子存证印章失败");
|
|
|
+ }
|
|
|
+
|
|
|
+ sysUserTsign = new SysUserTsign(-1, accountId, sealData, orgName, organCode);
|
|
|
|
|
|
+ sysUserTsignService.insert(sysUserTsign);
|
|
|
+
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -330,11 +339,22 @@ public class ContractServiceImpl implements ContractService, InitializingBean {
|
|
|
// 生成借款协议PDF
|
|
|
try {
|
|
|
PDFUtil.renderToPDFByData(ContractServiceImpl.class.getResource("/").getFile(), FileUtils.readFileToString(srcFile), srcPdfPath,
|
|
|
- "config/fonts/simsun.ttc");
|
|
|
+ "config/fonts/simsun.ttf");
|
|
|
} catch (IOException e) {
|
|
|
throw new BizException("生成pdf协议失败", e);
|
|
|
}
|
|
|
-
|
|
|
+ String organCode = "";
|
|
|
+ if(musicGroup.getOwnershipType() == OwnershipType.OWN){
|
|
|
+ organCode = "91440300326364429H";
|
|
|
+ }else{
|
|
|
+ organCode = "91420106333619290A";
|
|
|
+ }
|
|
|
+ SysUserTsign organTsign = sysUserTsignService.queryByCardNo(organCode);
|
|
|
+ if(organTsign == null){
|
|
|
+ throw new BizException("甲方未创建签章");
|
|
|
+ }
|
|
|
+
|
|
|
+ eSealPlugin.organSign(organTsign.getSealData(), srcPdfPath, srcPdfPath);
|
|
|
eSealPlugin.userSign(sysUserTsign.getAccountId(), sysUserTsign.getSealData(), srcPdfPath, srcPdfPath);
|
|
|
|
|
|
Date date = new Date();
|
|
@@ -487,6 +507,13 @@ public class ContractServiceImpl implements ContractService, InitializingBean {
|
|
|
} catch (IOException e) {
|
|
|
throw new BizException("生成pdf协议失败", e);
|
|
|
}
|
|
|
+ String organCode = "91440300326364429H";
|
|
|
+ SysUserTsign organTsign = sysUserTsignService.queryByCardNo(organCode);
|
|
|
+ if(organTsign == null){
|
|
|
+ throw new BizException("甲方未创建签章");
|
|
|
+ }
|
|
|
+
|
|
|
+ eSealPlugin.organSign(organTsign.getSealData(), srcPdfPath, srcPdfPath);
|
|
|
|
|
|
eSealPlugin.userSign(sysUserTsign.getAccountId(), sysUserTsign.getSealData(), srcPdfPath, srcPdfPath);
|
|
|
|
|
@@ -639,6 +666,18 @@ public class ContractServiceImpl implements ContractService, InitializingBean {
|
|
|
} catch (IOException e) {
|
|
|
throw new BizException("生成pdf协议失败", e);
|
|
|
}
|
|
|
+ String organCode = "";
|
|
|
+ if(musicGroup.getOwnershipType() == OwnershipType.OWN){
|
|
|
+ organCode = "91440300326364429H";
|
|
|
+ }else{
|
|
|
+ organCode = "91420106333619290A";
|
|
|
+ }
|
|
|
+ SysUserTsign organTsign = sysUserTsignService.queryByCardNo(organCode);
|
|
|
+ if(organTsign == null){
|
|
|
+ throw new BizException("甲方未创建签章");
|
|
|
+ }
|
|
|
+
|
|
|
+ eSealPlugin.organSign(organTsign.getSealData(), srcPdfPath, srcPdfPath);
|
|
|
|
|
|
eSealPlugin.userSign(sysUserTsign.getAccountId(), sysUserTsign.getSealData(), srcPdfPath, srcPdfPath);
|
|
|
|
|
@@ -693,7 +732,8 @@ public class ContractServiceImpl implements ContractService, InitializingBean {
|
|
|
|
|
|
double depositFee = 0d;
|
|
|
if (kitGroupPurchaseTypeEnum == KitGroupPurchaseTypeEnum.LEASE) {
|
|
|
- StudentPaymentOrder studentPaymentOrder = studentPaymentOrderService.findMusicGroupApplyOrderByStatus(userId, musicGroupId, DealStatusEnum.WAIT_PAY);
|
|
|
+ StudentPaymentOrder studentPaymentOrder = studentPaymentOrderService
|
|
|
+ .findMusicGroupApplyOrderByStatus(userId, musicGroupId, DealStatusEnum.WAIT_PAY);
|
|
|
|
|
|
if (studentPaymentOrder == null) {
|
|
|
MusicGroupSubjectPlan musicGroupSubjectPlan = musicGroupSubjectPlanService.findSubjectPlan(musicGroupId, subjectId);
|