diff --git a/anrui-base/anrui-base-api/src/main/java/com/yxt/anrui/base/api/basevehicleout/BaseJRFAVo.java b/anrui-base/anrui-base-api/src/main/java/com/yxt/anrui/base/api/basevehicleout/BaseJRFAVo.java index 017d278874..49329c2b7f 100644 --- a/anrui-base/anrui-base-api/src/main/java/com/yxt/anrui/base/api/basevehicleout/BaseJRFAVo.java +++ b/anrui-base/anrui-base-api/src/main/java/com/yxt/anrui/base/api/basevehicleout/BaseJRFAVo.java @@ -57,6 +57,8 @@ public class BaseJRFAVo { private String bondAmount; @ApiModelProperty("厂家贴息") private String factoryDiscount; + @ApiModelProperty("实际贴息") + private String actualDiscount; @ApiModelProperty("厂家贴息用途") private String factoryDiscountUse; @ApiModelProperty("年利率") @@ -85,6 +87,8 @@ public class BaseJRFAVo { private String otherPolicyInterest; @ApiModelProperty("其它融年利率") private String otherPolicyYearRatio; + @ApiModelProperty("其他融实际贴息") + private String otherActualDiscount; /*************************方案汇总*********************************/ @ApiModelProperty("'融资首付") private String loanDownPay; diff --git a/anrui-base/anrui-base-biz/src/main/java/com/yxt/anrui/base/biz/basevehicleout/BaseVehicleOutService.java b/anrui-base/anrui-base-biz/src/main/java/com/yxt/anrui/base/biz/basevehicleout/BaseVehicleOutService.java index cb1439d3b3..677a8bb928 100644 --- a/anrui-base/anrui-base-biz/src/main/java/com/yxt/anrui/base/biz/basevehicleout/BaseVehicleOutService.java +++ b/anrui-base/anrui-base-biz/src/main/java/com/yxt/anrui/base/biz/basevehicleout/BaseVehicleOutService.java @@ -2648,7 +2648,7 @@ public class BaseVehicleOutService extends MybatisBaseService fetchDetailsBySid(@PathVariable("sid") String sid); + @ApiOperation(value = "导入") @PostMapping("/getExcelInfo") @ResponseBody - @ApiOperation(value = "导入") - public ResultBean getExcelInfo(@RequestParam(value = "fileName") String fileName, @RequestParam(value = "file") MultipartFile file) throws IOException, ParseException; + public ResultBean> getExcelInfo(@RequestParam(value = "file") MultipartFile file, HttpServletRequest request) throws IOException, ParseException; } \ No newline at end of file diff --git a/anrui-riskcenter/anrui-riskcenter-api/src/main/java/com/yxt/anrui/riskcenter/api/loanbepadsincereapply/LoanBePadsincereApplyFeignFallback.java b/anrui-riskcenter/anrui-riskcenter-api/src/main/java/com/yxt/anrui/riskcenter/api/loanbepadsincereapply/LoanBePadsincereApplyFeignFallback.java index 3f12606f77..708df152af 100644 --- a/anrui-riskcenter/anrui-riskcenter-api/src/main/java/com/yxt/anrui/riskcenter/api/loanbepadsincereapply/LoanBePadsincereApplyFeignFallback.java +++ b/anrui-riskcenter/anrui-riskcenter-api/src/main/java/com/yxt/anrui/riskcenter/api/loanbepadsincereapply/LoanBePadsincereApplyFeignFallback.java @@ -31,6 +31,7 @@ import com.yxt.common.core.vo.PagerVo; import org.springframework.stereotype.Component; import org.springframework.web.multipart.MultipartFile; +import javax.servlet.http.HttpServletRequest; import java.io.IOException; import java.text.ParseException; import java.util.List; @@ -74,7 +75,8 @@ public class LoanBePadsincereApplyFeignFallback implements LoanBePadsincereApply } @Override - public ResultBean getExcelInfo(String fileName, MultipartFile file) throws IOException, ParseException { + public ResultBean> getExcelInfo(MultipartFile file, HttpServletRequest request) throws IOException, ParseException { return null; } + } \ No newline at end of file diff --git a/anrui-riskcenter/anrui-riskcenter-api/src/main/java/com/yxt/anrui/riskcenter/api/loanbepadsincereapply/ReturnExcelInfo.java b/anrui-riskcenter/anrui-riskcenter-api/src/main/java/com/yxt/anrui/riskcenter/api/loanbepadsincereapply/ReturnExcelInfo.java new file mode 100644 index 0000000000..3a9c57efef --- /dev/null +++ b/anrui-riskcenter/anrui-riskcenter-api/src/main/java/com/yxt/anrui/riskcenter/api/loanbepadsincereapply/ReturnExcelInfo.java @@ -0,0 +1,13 @@ +package com.yxt.anrui.riskcenter.api.loanbepadsincereapply; + +import lombok.Data; + +import java.util.ArrayList; +import java.util.List; + +@Data +public class ReturnExcelInfo { + private String checkInfo; + private String checkInfo2; + private List infos = new ArrayList<>(); +} \ No newline at end of file diff --git a/anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/biz/loanbepadsincereapply/LoanBePadsincereApplyRest.java b/anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/biz/loanbepadsincereapply/LoanBePadsincereApplyRest.java index 5877473f4a..aa84af6887 100644 --- a/anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/biz/loanbepadsincereapply/LoanBePadsincereApplyRest.java +++ b/anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/biz/loanbepadsincereapply/LoanBePadsincereApplyRest.java @@ -27,7 +27,9 @@ package com.yxt.anrui.riskcenter.biz.loanbepadsincereapply; import com.yxt.anrui.base.api.basevehicle.BaseVehicle; import com.yxt.anrui.base.api.basevehiclecertificate.BaseVehicleCertificate; +import com.yxt.anrui.riskcenter.api.loanbepadsincereapply.*; import com.yxt.anrui.riskcenter.api.loanbepadsincereveh.LoanBePadsincereVeh; +import com.yxt.anrui.riskcenter.api.loanrepaymenthistory.RepaymentExcelInfo; import com.yxt.common.core.query.PagerQuery; import com.yxt.common.core.result.ResultBean; import com.yxt.common.core.vo.PagerVo; @@ -49,14 +51,12 @@ import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Date; import java.util.List; -import com.yxt.anrui.riskcenter.api.loanbepadsincereapply.LoanBePadsincereApply; -import com.yxt.anrui.riskcenter.api.loanbepadsincereapply.LoanBePadsincereApplyQuery; -import com.yxt.anrui.riskcenter.api.loanbepadsincereapply.LoanBePadsincereApplyVo; -import com.yxt.anrui.riskcenter.api.loanbepadsincereapply.LoanBePadsincereApplyDetailsVo; -import com.yxt.anrui.riskcenter.api.loanbepadsincereapply.LoanBePadsincereApplyDto; -import com.yxt.anrui.riskcenter.api.loanbepadsincereapply.LoanBePadsincereApplyFeign; + import org.springframework.web.multipart.MultipartFile; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + /** * Project: anrui-riskcenter(垫款申请)
* File: LoanBePadsincereApplyFeignFallback.java
@@ -115,131 +115,7 @@ public class LoanBePadsincereApplyRest implements LoanBePadsincereApplyFeign { } @Override - public ResultBean getExcelInfo(String fileName, MultipartFile file) throws IOException, ParseException { - if (!fileName.matches("^.+\\.(?i)(xls)$") && !fileName.matches("^.+\\.(?i)(xlsx)$")) { - return ResultBean.fireFail().setMsg("上传文件不正确"); - } - int[] resultCell = new int[]{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; - List resultList = new ArrayList<>(); - boolean isExcel2003 = true; - if (fileName.matches("^.+\\.(?i)(xlsx)$")) { - isExcel2003 = false; - } - InputStream is = file.getInputStream(); - Workbook wb = null; - if (isExcel2003) { - wb = new HSSFWorkbook(is); - } else { - wb = new XSSFWorkbook(is); - } - Sheet sheet = wb.getSheetAt(0); - resultList = getSheetVal(sheet, resultCell); - System.out.println("结果是--->" + resultList); - try { - return ResultBean.fireSuccess().setMsg("数据导入成功"); - } catch (Exception e) { - e.printStackTrace(); - return ResultBean.fireFail().setMsg("数据导入失败"); - } - } - - /** - * @param sheet 单元格 - * @param resultCell 列表的值 - * @description: - * @return: - * @Author: dimengzhe - * @Date: 2021/10/8 14:29 - */ - public List getSheetVal(Sheet sheet, int[] resultCell) throws ParseException { - SimpleDateFormat ft = new SimpleDateFormat("yyyy-MM-dd"); - List baseVehicleCertificateList = new ArrayList<>(); - int[] resultIndex = new int[resultCell.length]; - LoanBePadsincereVeh loanBePadsincereVeh; - for (int r = 1; r <= sheet.getLastRowNum(); r++) { - Row row = sheet.getRow(r); - if (row == null) { - continue; - } - loanBePadsincereVeh = new LoanBePadsincereVeh(); - for (int i = 0; i < row.getPhysicalNumberOfCells(); i++) { - String temp = getCellVal(row.getCell(i)).toString().trim(); - for (int j = 0; j < resultCell.length; j++) { - if (i == resultCell[j]) { - switch (i) { - /*case 0: - //车架号 - //根据车架号查询车辆信息 - BaseVehicle baseVehicle = baseVehicleService.selectByVinNo(temp); - if (baseVehicle != null) { - baseVehicleCertificate.setVehicleSid(baseVehicle.getSid()); - } - break; - case 1: - //合格证编号 - baseVehicleCertificate.setCertificationNo(temp); - break; - case 2: - //发证日期 - Date date1 = ft.parse(temp); - baseVehicleCertificate.setCertificateDate(date1); - break; - case 3: - //合格证情况 - baseVehicleCertificate.setCertificateSituation(temp); - break; - case 4: - //到证日期 - Date date2 = ft.parse(temp); - baseVehicleCertificate.setToCardDate(date2); - break; - case 5: - //领取日期 - Date date3 = ft.parse(temp); - baseVehicleCertificate.setReceiveDate(date3); - break; - case 6: - //领取人 - baseVehicleCertificate.setSeatingCapacity(temp); - break; - case 7: - //备注 - baseVehicleCertificate.setRemarks(temp); - break; - default: - break;*/ - } - } else { - continue; - } - } - } - //baseVehicleCertificateList.add(baseVehicleCertificate); - - } - return baseVehicleCertificateList; - } - - public Object getCellVal(Cell cell) { - Object obj = null; - if (cell != null) { - switch (cell.getCellTypeEnum()) { - case BOOLEAN: - obj = cell.getBooleanCellValue(); - break; - case ERROR: - obj = cell.getErrorCellValue(); - break; - case NUMERIC: - obj = cell.getNumericCellValue(); - break; - case STRING: - obj = cell.getStringCellValue(); - break; - default: - break; - } - } - return obj; + public ResultBean> getExcelInfo(MultipartFile file, HttpServletRequest request) throws IOException { + return loanBePadsincereApplyService.getExcelInfo(file, request); } } diff --git a/anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/biz/loanbepadsincereapply/LoanBePadsincereApplyService.java b/anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/biz/loanbepadsincereapply/LoanBePadsincereApplyService.java index 81caeb3c52..1c245d97a9 100644 --- a/anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/biz/loanbepadsincereapply/LoanBePadsincereApplyService.java +++ b/anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/biz/loanbepadsincereapply/LoanBePadsincereApplyService.java @@ -30,24 +30,37 @@ import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.yxt.anrui.portal.api.sysuser.PrivilegeQuery; import com.yxt.anrui.portal.api.sysuser.SysUserFeign; -import com.yxt.anrui.riskcenter.api.loanbeoverdueveh.LoanBeOverdueVehVo; +import com.yxt.anrui.riskcenter.api.loanbepadsincereapply.*; +import com.yxt.anrui.riskcenter.api.loanrepaymenthistory.RepaymentExcelInfo; +import com.yxt.anrui.riskcenter.biz.loanrepaymentschedule.LoanRepaymentScheduleService; import org.apache.commons.lang3.StringUtils; import com.yxt.common.base.service.MybatisBaseService; import com.yxt.common.base.utils.PagerUtil; import com.yxt.common.core.query.PagerQuery; import com.yxt.common.core.result.ResultBean; import com.yxt.common.core.vo.PagerVo; -import com.yxt.anrui.riskcenter.api.loanbepadsincereapply.LoanBePadsincereApply; -import com.yxt.anrui.riskcenter.api.loanbepadsincereapply.LoanBePadsincereApplyQuery; -import com.yxt.anrui.riskcenter.api.loanbepadsincereapply.LoanBePadsincereApplyVo; -import com.yxt.anrui.riskcenter.api.loanbepadsincereapply.LoanBePadsincereApplyDetailsVo; -import com.yxt.anrui.riskcenter.api.loanbepadsincereapply.LoanBePadsincereApplyDto; -import com.yxt.anrui.riskcenter.api.loanbepadsincereapply.LoanBePadsincereApplyFeign; +import org.apache.poi.hssf.usermodel.HSSFWorkbook; +import org.apache.poi.ss.usermodel.Cell; +import org.apache.poi.ss.usermodel.Row; +import org.apache.poi.ss.usermodel.Sheet; +import org.apache.poi.ss.usermodel.Workbook; +import org.apache.poi.xssf.usermodel.XSSFWorkbook; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; +import org.springframework.web.multipart.MultipartFile; +import javax.servlet.http.HttpServletRequest; +import java.io.File; +import java.io.IOException; +import java.io.InputStream; +import java.text.SimpleDateFormat; +import java.util.ArrayList; +import java.util.HashSet; import java.util.List; +import java.util.Set; +import java.util.regex.Matcher; +import java.util.regex.Pattern; /** * Project: anrui-riskcenter(垫款申请)
@@ -67,6 +80,8 @@ public class LoanBePadsincereApplyService extends MybatisBaseService listPageVo(PagerQuery pq) { LoanBePadsincereApplyQuery query = pq.getParams(); @@ -160,4 +175,221 @@ public class LoanBePadsincereApplyService extends MybatisBaseService> getExcelInfo(MultipartFile file, HttpServletRequest request) throws IOException { + ResultBean rb = ResultBean.fireFail(); + String temp = request.getSession().getServletContext().getRealPath(File.separator) + "temp";// 临时目录 + File tempFile = new File(temp); + if (!tempFile.exists()) { + tempFile.mkdirs(); + } + String fileName = file.getOriginalFilename(); + if (!fileName.matches("^.+\\.(?i)(xls)$") && !fileName.matches("^.+\\.(?i)(xlsx)$")) { + return rb.fail().setMsg("上传文件不正确"); + } + + int[] resultCell = new int[]{0, 1, 2, 3, 4, 5, 6, 7}; + List resultList = new ArrayList<>(); + boolean isExcel2003 = true; + if (fileName.matches("^.+\\.(?i)(xlsx)$")) { + isExcel2003 = false; + } + InputStream is = file.getInputStream(); + Workbook wb = null; + if (isExcel2003) { + wb = new HSSFWorkbook(is); + } else { + wb = new XSSFWorkbook(is); + } + Sheet sheet = wb.getSheetAt(0); + ReturnExcelInfo importReturn = getSheetVal(sheet, resultCell); + resultList = importReturn.getInfos(); + System.out.println("结果是--->" + resultList); + importReturn.setInfos(resultList); + if (!resultList.isEmpty()) { + if (StringUtils.isNotBlank(importReturn.getCheckInfo2())) { + return rb.success().setData(resultList).setMsg(importReturn.getCheckInfo2()); + } else { + return rb.success().setData(resultList).setMsg("成功导入数据,请点击确定按钮"); + } + } else { + String checkResult = importReturn.getCheckInfo(); + return rb.success().setData(resultList).setMsg(checkResult); + } + } + + private ReturnExcelInfo getSheetVal(Sheet sheet, int[] resultCell) { + ReturnExcelInfo importReturn = new ReturnExcelInfo(); + List importVoList = new ArrayList<>(); + int[] resultIndex = new int[resultCell.length]; + Set checkWord = new HashSet<>(); + Set checkWord2 = new HashSet<>(); + for (int r = 1; r <= sheet.getLastRowNum(); r++) { + Row row = sheet.getRow(r); + if (row == null) { + continue; + } + BePadsincereExcelInfo importVo = new BePadsincereExcelInfo(); + for (int i = 0; i < row.getPhysicalNumberOfCells(); i++) { + String trim = new String(); + try { + trim = getCellVal(row.getCell(i)).toString().trim(); + if (StringUtils.isBlank(trim)) { + NullPointerException nullPointerException = new NullPointerException(); + } + String temp = getCellVal(row.getCell(i)).toString().trim(); + for (int j = 0; j < resultCell.length; j++) { + if (i == resultCell[j]) { + switch (i) { + case 0: + importVo.setBankContractNo(temp); + break; + case 1: + importVo.setPeriod(temp); + break; + case 2: + importVo.setBePrincipal(temp); + break; + case 3: + importVo.setBeDefInter(temp); + break; + case 4: + importVo.setPaymentAccount(temp); + break; + case 5: + importVo.setPaymentNum(temp); + break; + case 6: + importVo.setBankCollectionAcc(temp); + break; + case 7: + importVo.setBankCollectionNum(temp); + break; + default: + break; + } + } else { + continue; + } + } + } catch (Exception e) { + if (StringUtils.isBlank(trim)) { + String word = new String(); + switch (i) { + case 0: + word = "资方合同编号"; + break; + case 1: + word = "期数"; + break; + case 2: + word = "逾期本金"; + break; + case 3: + word = "逾期罚息"; + break; + case 4: + word = "付款账户"; + break; + case 5: + word = "付款账号"; + break; + case 6: + word = "资方收款账户"; + break; + case 7: + word = "资方收款账号"; + break; + default: + break; + } + continue; + } + } + } + importVoList.add(importVo); + } + StringBuffer sbBankCNo = new StringBuffer(); + SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); + if (!importVoList.isEmpty()) { + for (BePadsincereExcelInfo excelInfo : importVoList) { + if (StringUtils.isBlank(excelInfo.getBankContractNo())){ + checkWord.add("资方合同编号不能为空"); + } + if (StringUtils.isBlank(excelInfo.getPeriod())){ + checkWord.add("期数不能为空"); + } + if (StringUtils.isBlank(excelInfo.getBePrincipal())){ + checkWord.add("逾期本金不能为空"); + } + if (StringUtils.isBlank(excelInfo.getBeDefInter())){ + checkWord.add("逾期罚息不能为空"); + } + if (StringUtils.isBlank(excelInfo.getBankCollectionAcc())){ + checkWord.add("资方收款账户不能为空"); + } + if (StringUtils.isBlank(excelInfo.getBankCollectionNum())){ + checkWord.add("资方收款账号不能为空"); + } + int i = loanRepaymentScheduleService.selectByBankContractNo(excelInfo.getBankContractNo()); + if (i == 0){ + checkWord.add("资方合同号" + excelInfo.getBankContractNo() + "在还款计划表中不存在"); + } + } + } + StringBuffer sbcheck1 = new StringBuffer(); + if (!checkWord.isEmpty()) { + for (String s : checkWord) { + if (StringUtils.isBlank(s)) { + continue; + } + sbcheck1.append(s).append(";"); + } + } + if (sbcheck1.length() > 0) { + sbcheck1.delete(sbcheck1.length() - 1, sbcheck1.length()); + importReturn.setCheckInfo(sbcheck1.toString()); + importReturn.setInfos(new ArrayList<>()); + return importReturn; + } + importReturn.setInfos(importVoList); + StringBuffer sbcheck2 = new StringBuffer(); + if (!checkWord2.isEmpty()) { + for (String s : checkWord2) { + if (StringUtils.isBlank(s)) { + continue; + } + sbcheck2.append(s).append(","); + } + } + if (sbcheck2.length() > 0) { + sbcheck2.delete(sbcheck2.length() - 1, sbcheck2.length()); + importReturn.setCheckInfo2("已存在" + sbcheck2.toString() + "的记录,是否继续导入"); + return importReturn; + } + return importReturn; + } + + public Object getCellVal(Cell cell) { + Object obj = null; + if (cell != null) { + switch (cell.getCellTypeEnum()) { + case BOOLEAN: + obj = cell.getBooleanCellValue(); + break; + case ERROR: + obj = cell.getErrorCellValue(); + break; + case NUMERIC: + obj = cell.getNumericCellValue(); + break; + case STRING: + obj = cell.getStringCellValue(); + break; + default: + break; + } + } + return obj; + } } \ No newline at end of file diff --git a/anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/biz/loanrepaymentschedule/LoanRepaymentScheduleMapper.java b/anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/biz/loanrepaymentschedule/LoanRepaymentScheduleMapper.java index e6c6544a60..10402963de 100644 --- a/anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/biz/loanrepaymentschedule/LoanRepaymentScheduleMapper.java +++ b/anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/biz/loanrepaymentschedule/LoanRepaymentScheduleMapper.java @@ -12,6 +12,7 @@ import com.yxt.anrui.riskcenter.api.loanrepaymentschedule.ScanRepaymentVo; import com.yxt.anrui.riskcenter.api.loanwarrantinformation.LoanWarrantInformation; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; +import org.apache.ibatis.annotations.Select; import java.util.List; @@ -30,4 +31,7 @@ public interface LoanRepaymentScheduleMapper extends BaseMapper getRepaymentPlanList(IPage page, @Param(Constants.WRAPPER) QueryWrapper qw); List scanRepayment(); + + @Select("SELECT COUNT(*) FROM loan_repayment_schedule WHERE bankContractNo = #{bankContractNo}") + int selectByBankContractNo(String bankContractNo); } diff --git a/anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/biz/loanrepaymentschedule/LoanRepaymentScheduleService.java b/anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/biz/loanrepaymentschedule/LoanRepaymentScheduleService.java index fa94333c15..b78fe22c76 100644 --- a/anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/biz/loanrepaymentschedule/LoanRepaymentScheduleService.java +++ b/anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/biz/loanrepaymentschedule/LoanRepaymentScheduleService.java @@ -2035,4 +2035,8 @@ public class LoanRepaymentScheduleService extends MybatisBaseService - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 金融业务报价单 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 销售部门 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${saleDeptName!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 销售 - - - - - - - - - - - - 专员 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${staffName!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 贷款合同编号 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${loanContractNo!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 客户信息 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 贷款人名称 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${loanBorrName!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 车架号 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${vinNo!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 电话 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${mobile!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 地址 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${address!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 挂靠公司 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${affiliatedCompany!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 车型及价格 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 车型 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${modelName!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 数量 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 挂车1车型 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${gcOneModel!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 采购单位 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${gcOnePurUnit!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 挂车2车型 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${gcTwoModel!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 采购单位 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${gcTwoPurUnit!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 上装1名称 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${szOneName!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 采购单位 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${szOnePurUnit!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 上装 - - - - - - - - - 2 - - - - - - - - - 名称 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${szTwoName!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 采购单位 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${szTwoPurUnit!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 备注 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${remarks!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 金融方案 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 是否打包 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${isPack!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 产品政策 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${policyName!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 融资项目 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${financProject!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 融资项目总额 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${loanTotal!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 首付比例 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${sfbl!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 首付金额 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${sfje!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 产品贷款金额 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${cpdkje!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 产品期数 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${cpqs!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 贷款保证金比例 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${dkbzjbl!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 贷款保证金 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${dkbzj!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 厂家贴息 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${cjtx!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 贴息用途 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${txyt!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 年利率(%) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${nll!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 月还金额 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${yhje!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 利息总额 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${lxze!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 贴息抵车款 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${txdck!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 其他融 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 其它融名称 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${otherPolicyName!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 贷款金额 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${qtrdkje!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 期数 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${qtrqs!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 年利率(%) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${qtrnll!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 月还金额 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${qtryhje!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 利息总额 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${otherPolicyInterest!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 方案汇总 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 融资首付 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${loanDownPay!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 实际首付比例 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${downPayAmountsRatio!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 总贷款金额 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${loanAmountTotal!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 期数 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${period!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 月还金额 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${monthlyRepay!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 利息总额 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${interest!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 预计首期还款日 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${returnTime!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 应收明细 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 融资首付 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${downPayAmounts!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 贷款保证金 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${bondAmounts!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 保险保证金 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${depositPremium!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 落户保证金 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${depositSettle!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 服务费 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${serviceAmount!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 代收意外险 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${proxyAccidentPremium!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 上牌费 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${registerAmount!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 运管费 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${operationAmount!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 补车价 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${vehOtherPrice!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 其它费用 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${otherAmount!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 其它费用说明 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${otherAmountRemark!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 办理方式选择 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${dealWay!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 代收费用合计 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${proxyTotal!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 代收首年保险费 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${proxyPremium!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 代收购置税 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${proxyPurchasetax!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 应收合计 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${receivableTotal!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 抵顶费用合计 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${offsetTotal!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 抵顶首年保险费 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${offsetPremium!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 抵顶购置税 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${offsetPurchasetax!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 实收合计 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${realTotal!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 车辆总价 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${vehTotalPrice!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 名义(留购)价 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ${nominalPrice!} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 注:结清时需交纳此费用 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - 426 - 1339 - 0 - 0 - 8 - false - false - 1344 - WPS Office_11.1.0.14309_F1E327BC-269C-435d-A152-05C5408002CA - 0 - - - - - - - 2014-10-29T12:08:00Z - God - God - 2023-09-12T07:58:53Z - - - - - - - - 2052-11.1.0.14309 - - - A98B1DBE70D14452BB4A579566E071AA_13 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + God + WPS_1599826008 + 2014-10-29T12:08:00Z + 2023-11-30T08:49:15Z + 4320 + 1 + 426 + 1339 + 0 + 0 + 1344 + 14 + + + 2052-12.1.0.15990 + 238EE353EFF74121BD30C4F941FB70CE_13 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 金融业务报价单 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 销售部门 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${saleDeptName!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 销售 + + + + + + + + + + + + 专员 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${staffName!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 贷款合同编号 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${loanContractNo!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 客户信息 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 贷款人名称 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${loanBorrName!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 车架号 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${vinNo!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 电话 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${mobile!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 地址 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${address!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 挂靠公司 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${affiliatedCompany!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 车型及价格 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 车型 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${modelName!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 数量 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 挂车1车型 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${gcOneModel!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 采购单位 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${gcOnePurUnit!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 挂车2车型 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${gcTwoModel!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 采购单位 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${gcTwoPurUnit!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 上装1名称 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${szOneName!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 采购单位 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${szOnePurUnit!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 上装 + + + + + + + + + 2 + + + + + + + + + 名称 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${szTwoName!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 采购单位 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${szTwoPurUnit!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 备注 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${remarks!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 金融方案 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 是否打包 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${isPack!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 产品政策 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${policyName!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 融资项目 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${financProject!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 融资项目总额 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${loanTotal!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 首付比例 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${sfbl!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 首付金额 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${sfje!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 产品贷款金额 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${cpdkje!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 产品期数 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${cpqs!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 贷款保证金比例 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${dkbzjbl!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 贷款保证金 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${dkbzj!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 厂家贴息 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${cjtx!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 贴息用途 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${txyt!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 年利率(%) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${nll!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 月还金额 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${yhje!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 利息总额 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${lxze!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 贴息抵车款 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${txdck!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 其他融 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 其它融名称 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${otherPolicyName!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 贷款金额 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${qtrdkje!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 期数 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${qtrqs!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 年利率(%) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${qtrnll!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 月还金额 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${qtryhje!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 其他融贴息 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${qtrtx!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 利息总额 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${otherPolicyInterest!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 方案汇总 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 融资首付 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${loanDownPay!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 实际首付比例 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${downPayAmountsRatio!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 总贷款金额 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${loanAmountTotal!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 期数 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${period!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 月还金额 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${monthlyRepay!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 利息总额 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${interest!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 预计首期还款日 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${returnTime!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 应收明细 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 融资首付 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${downPayAmounts!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 贷款保证金 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${bondAmounts!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 保险保证金 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${depositPremium!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 落户保证金 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${depositSettle!} + + + + + + - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 服务费 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${serviceAmount!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 代收意外险 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${proxyAccidentPremium!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 上牌费 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${registerAmount!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 运管费 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${operationAmount!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 补车价 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${vehOtherPrice!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 其它费用 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${otherAmount!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 其它费用说明 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${otherAmountRemark!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 办理方式选择 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${dealWay!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 代收费用合计 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${proxyTotal!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 代收首年保险费 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${proxyPremium!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 代收购置税 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${proxyPurchasetax!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 应收合计 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${receivableTotal!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 抵顶费用合计 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${offsetTotal!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 抵顶首年保险费 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${offsetPremium!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 抵顶购置税 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${offsetPurchasetax!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 实收合计 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${realTotal!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 车辆总价 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${vehTotalPrice!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 名义(留购)价 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ${nominalPrice!} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 注:结清时需交纳此费用 + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file