Commit b4bfeb59 by 庄冰

new file

parent 8dd7c747
......@@ -986,23 +986,29 @@ class NeedsolutionService extends ServiceBase {
if(ab.remark){
solutionContent.notes = ab.remark;
}
if(ab.businessLicense){
material.PartnerBusinessLicense = ab.businessLicense;
if(ab.newbusinessLicense){
material.PartnerBusinessLicense = ab.newbusinessLicense;
material.aliPartnerBusinessLicense = ab.businessLicense;
}
if(ab.idCardUrlList && ab.idCardUrlList.length>0){
material.PartnerIdCardList = ab.idCardUrlList;
if(ab.newidCardUrlList && ab.newidCardUrlList.length>0){
material.PartnerIdCardList = ab.newidCardUrlList;
material.aliPartnerIdCardList = ab.idCardUrlList;
}
if(ab.userPlan){
material.PartnerPlan = ab.userPlan;
if(ab.newuserPlan){
material.PartnerPlan = ab.newuserPlan;
material.aliPartnerPlan = ab.userPlan;
}
if(ab.userForeig){
material.PartnerForeignInvestment = ab.userForeig;
if(ab.newuserForeig){
material.PartnerForeignInvestment = ab.newuserForeig;
material.aliPartnerForeignInvestment = ab.userForeig;
}
if(ab.userLaw){
material.PartnerLaw = ab.userLaw;
if(ab.newuserLaw){
material.PartnerLaw = ab.newuserLaw;
material.aliPartnerLaw = ab.userLaw;
}
if(ab.userOtherList && ab.userOtherList.length>0){
material.PartnerSignAndStampOtherList = ab.userOtherList;
if(ab.newuserOtherList && ab.newuserOtherList.length>0){
material.PartnerSignAndStampOtherList = ab.newuserOtherList;
material.aliPartnerSignAndStampOtherList = ab.userOtherList;
}
solutionContent.material = material;
solutionContent = JSON.stringify(solutionContent);
......
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