Commit f1436f72 by 庄冰

zhb

parent b33aba45
...@@ -375,6 +375,10 @@ class AliyunQcService{ ...@@ -375,6 +375,10 @@ class AliyunQcService{
}else{ }else{
ab["ApplicationStatus"] = ab.status; ab["ApplicationStatus"] = ab.status;
} }
if (ab.officialFileURL) {
ab["OfficialFileURL"] = ab.officialFileURL;
}
var ns = await this.needsolutionDao.model.findOne({ var ns = await this.needsolutionDao.model.findOne({
where:{orderNo:ab.orderNo},raw:true where:{orderNo:ab.orderNo},raw:true
}); });
...@@ -557,28 +561,28 @@ class AliyunQcService{ ...@@ -557,28 +561,28 @@ class AliyunQcService{
solutionContent.customerRemark = ab.remark; solutionContent.customerRemark = ab.remark;
} }
if (ab.newbusinessLicense) { if (ab.newbusinessLicense) {
material.PartnerBusinessLicense = ab.newbusinessLicense; material.businessLicense = ab.newbusinessLicense;
material.aliPartnerBusinessLicense = ab.businessLicense; material.aliBusinessLicense = ab.businessLicense;
} }
if (ab.newidCardUrlList && ab.newidCardUrlList.length > 0) { if (ab.newidCardUrlList && ab.newidCardUrlList.length > 0) {
material.PartnerIdCardList = ab.newidCardUrlList; material.idCardUrlList = ab.newidCardUrlList;
material.aliPartnerIdCardList = ab.idCardUrlList; material.aliIdCardUrlList = ab.idCardUrlList;
} }
if (ab.newuserPlan) { if (ab.newuserPlan) {
material.PartnerPlan = ab.newuserPlan; material.userPlan = ab.newuserPlan;
material.aliPartnerPlan = ab.userPlan; material.aliUserPlan = ab.userPlan;
} }
if (ab.newuserForeig) { if (ab.newuserForeig) {
material.PartnerForeignInvestment = ab.newuserForeig; material.userForeig = ab.newuserForeig;
material.aliPartnerForeignInvestment = ab.userForeig; material.aliUserForeig = ab.userForeig;
} }
if (ab.newuserLaw) { if (ab.newuserLaw) {
material.PartnerLaw = ab.newuserLaw; material.userLaw = ab.newuserLaw;
material.aliPartnerLaw = ab.userLaw; material.aliUserLaw = ab.userLaw;
} }
if (ab.newuserOtherList && ab.newuserOtherList.length > 0) { if (ab.newuserOtherList && ab.newuserOtherList.length > 0) {
material.PartnerSignAndStampOtherList = ab.newuserOtherList; material.userOtherList = ab.newuserOtherList;
material.aliPartnerSignAndStampOtherList = ab.userOtherList; material.aliUserOtherList = ab.userOtherList;
} }
solutionContent.customerMaterial = material; solutionContent.customerMaterial = material;
solutionContent = JSON.stringify(solutionContent); 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