|
|
|
@ -261,7 +261,9 @@ public class ContractInvestmentServiceImpl implements ContractInvestmentService
|
|
|
|
|
//第三条新公司持有的股份
|
|
|
|
|
investmentAgreementDto.setSharesHeld(String.valueOf(investmentAmount));
|
|
|
|
|
//第三条占新公司总股本百分比
|
|
|
|
|
investmentAgreementDto.setOwnShare(profitManagement.getShareRatio().toString());
|
|
|
|
|
Double aDouble20 = Convert.toDouble(profitManagement.getShareRatio());
|
|
|
|
|
Double aDouble205 = aDouble20*100;
|
|
|
|
|
investmentAgreementDto.setOwnShare(aDouble205.toString());
|
|
|
|
|
//第三条4.0进入新公司股本金额
|
|
|
|
|
investmentAgreementDto.setAmountMoney(String.valueOf(investmentAmount));
|
|
|
|
|
|
|
|
|
|