From 2ce2a3f27dd2f4e086011999e6d8e6e2353800ae Mon Sep 17 00:00:00 2001
From: yunuo970428 <405378304@qq.com>
Date: Tue, 25 Jun 2024 09:50:09 +0800
Subject: [PATCH 1/5] =?UTF-8?q?=E5=AE=8C=E5=96=84=E8=BF=98=E6=AC=BE?=
=?UTF-8?q?=E8=AE=A1=E5=88=92=E8=A1=A8=E8=AF=A6=E6=83=85=E9=A1=B5=E9=9D=A2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../repaymentschedule/repaymentschedule.js | 6 +-
.../repaymentscheduleInfo.vue | 115 ++++++++++--------
2 files changed, 66 insertions(+), 55 deletions(-)
diff --git a/anrui-riskcenter-ui/src/api/repaymentschedule/repaymentschedule.js b/anrui-riskcenter-ui/src/api/repaymentschedule/repaymentschedule.js
index 4bb3cf8939..402856f076 100644
--- a/anrui-riskcenter-ui/src/api/repaymentschedule/repaymentschedule.js
+++ b/anrui-riskcenter-ui/src/api/repaymentschedule/repaymentschedule.js
@@ -27,10 +27,10 @@ export default {
headers: { 'Content-Type': 'application/json' }
})
},
- // 查看多台还款计划--回显(详情)
- viewVinsSchedule: function(data) {
+ // 查看还款计划--回显(详情)
+ scheduleDetails: function(data) {
return request({
- url: '/riskcenter/v1/loanrepaymentschedule/viewVinsSchedule',
+ url: '/riskcenter/v1/loanrepaymentschedule/scheduleDetails',
method: 'get',
params: data
})
diff --git a/anrui-riskcenter-ui/src/views/repaymentschedule/repaymentscheduleInfo.vue b/anrui-riskcenter-ui/src/views/repaymentschedule/repaymentscheduleInfo.vue
index 27c362249d..5f27f7180c 100644
--- a/anrui-riskcenter-ui/src/views/repaymentschedule/repaymentscheduleInfo.vue
+++ b/anrui-riskcenter-ui/src/views/repaymentschedule/repaymentscheduleInfo.vue
@@ -4,7 +4,7 @@
@@ -20,41 +20,55 @@
{{ formobj.borrowerName }}
- 车辆台数
- {{ formobj.vehCount }}
+ 贷款总金额(台数)
+ {{ formobj.amountAll }}({{ formobj.vehCount }})
+
+
主金融产品{{ (formobj.policyName) }}
+
- 资方
- {{ formobj.bankName }}
+ 单车贷款金额
+ {{ formobj.loanAmount }}
-
- 涉及车架号
- {{ formobj.vinNo }}
+
+ 期数
+ {{ formobj.mainPeriod }}
+
+
+ 首期还款日
+ {{ formobj.mainRepayDate }}
-
-
-
-
- {{ scope.row.repayMonth }}
-
-
-
-
- {{ scope.row.mainRepay }}
-
+
+
其它融({{ formobj.otherPolicyName }})
+
+
+ 单车贷款金额
+ {{ formobj.otherAmount }}
+
+
+ 期数
+ {{ formobj.otherPeriod }}
+
+
+ 首期还款日
+ {{ formobj.otherRepayDate }}
+
+
+
+
+
+
+
+
+
-
-
- {{ scope.row.otherRepay }}
-
-
-
-
- {{ scope.row.amount }}
-
+
+
+
+
@@ -80,23 +94,28 @@ export default {
viewState: 1,
tableKey: 0,
formobj: {
- salesOrderSid: '',
+ sid: '',
loanContractNo: '',
borrowerName: '',
- bankName: '',
+ amountAll: '',
vehCount: '',
- vinNo: '',
- isOtherPolicy: '',
+ policyName: '',
+ loanAmount: '',
+ mainPeriod: '',
mainRepayDate: '',
+ otherPolicyName: '',
+ otherAmount: '',
+ otherPeriod: '',
otherRepayDate: '',
- scheduleVins: []
+ vinList: [],
+ isOtherPolicy: ''
}
}
},
methods: {
showInfo(row) {
this.viewTitle = '单车还款计划表'
- req.viewVinsSchedule({ salesOrderSid: row.salesOrderSid }).then((res) => {
+ req.scheduleDetails({ salesOrderSid: row.salesOrderSid }).then((res) => {
if (res.success) {
this.formobj = res.data
}
@@ -111,16 +130,21 @@ export default {
},
handleReturn() {
this.formobj = {
- salesOrderSid: '',
+ sid: '',
loanContractNo: '',
borrowerName: '',
- bankName: '',
+ amountAll: '',
vehCount: '',
- vinNo: '',
- isOtherPolicy: '',
+ policyName: '',
+ loanAmount: '',
+ mainPeriod: '',
mainRepayDate: '',
+ otherPolicyName: '',
+ otherAmount: '',
+ otherPeriod: '',
otherRepayDate: '',
- scheduleVins: []
+ vinList: [],
+ isOtherPolicy: ''
}
this.$emit('doback')
}
@@ -135,17 +159,4 @@ export default {
.addinputInfo {
margin-left: 120px !important;
}
-.tlineheightb {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
-}
-/deep/ .tlineheightb .el-form-item .el-form-item__content .addinputInfo {
- line-height: 15px !important;
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
-}
From 35e43336bb48833154ffd3998f4026e22b26df31 Mon Sep 17 00:00:00 2001
From: yunuo970428 <405378304@qq.com>
Date: Tue, 25 Jun 2024 10:05:33 +0800
Subject: [PATCH 2/5] =?UTF-8?q?=E5=AE=8C=E5=96=84=E8=BF=98=E6=AC=BE?=
=?UTF-8?q?=E8=AE=A1=E5=88=92=E8=A1=A8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../src/views/repaymentschedule/repaymentschedule.vue | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/anrui-riskcenter-ui/src/views/repaymentschedule/repaymentschedule.vue b/anrui-riskcenter-ui/src/views/repaymentschedule/repaymentschedule.vue
index 1ccfb8ecde..0ec951bfed 100644
--- a/anrui-riskcenter-ui/src/views/repaymentschedule/repaymentschedule.vue
+++ b/anrui-riskcenter-ui/src/views/repaymentschedule/repaymentschedule.vue
@@ -60,11 +60,11 @@
-
-
-
-
-
+
+
+ 查看
+
+
From b3d614dbd9555a3c7885e7b02527299b1f123121 Mon Sep 17 00:00:00 2001
From: yunuo970428 <405378304@qq.com>
Date: Tue, 25 Jun 2024 10:11:53 +0800
Subject: [PATCH 3/5] =?UTF-8?q?=E5=AE=8C=E5=96=84=E8=BF=98=E6=AC=BE?=
=?UTF-8?q?=E8=AE=A1=E5=88=92=E8=A1=A8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../src/views/repaymentschedule/repaymentscheduleInfo.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/anrui-riskcenter-ui/src/views/repaymentschedule/repaymentscheduleInfo.vue b/anrui-riskcenter-ui/src/views/repaymentschedule/repaymentscheduleInfo.vue
index 5f27f7180c..e6692b6ea2 100644
--- a/anrui-riskcenter-ui/src/views/repaymentschedule/repaymentscheduleInfo.vue
+++ b/anrui-riskcenter-ui/src/views/repaymentschedule/repaymentscheduleInfo.vue
@@ -59,7 +59,7 @@
-
+
From a181eb079e45650ce91973dadb3d4fa24e1ddad2 Mon Sep 17 00:00:00 2001
From: God <10745413@qq.com>
Date: Tue, 25 Jun 2024 13:41:32 +0800
Subject: [PATCH 4/5] =?UTF-8?q?=E6=8C=82=E8=BD=A6=E5=85=A5=E5=BA=93?=
=?UTF-8?q?=E5=88=A4=E6=96=AD=E4=BF=AE=E6=94=B9=20=E8=BD=A6=E8=BE=86?=
=?UTF-8?q?=E4=B8=8A=E8=A3=85=E5=90=88=E5=90=8C=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../biz/basetrailer/BaseTrailerService.java | 4 +-
.../BusSalesOrderMakeupDetailsVo.java | 2 +
...oanHomeVisitInvestigateInitCustomerVo.java | 2 +
.../LoanHomevisitInvestigateService.java | 24 ++++++++
.../LoanHomevisitPrepService.java | 56 ++++++++++++-------
...ppLoanHomeVisitInvestigateInitOtherVo.java | 4 ++
...pLoanHomeVisitInvestigateSaveOtherDto.java | 2 +
.../LoanHomeVisitInvestigateService.java | 24 ++++++++
8 files changed, 95 insertions(+), 23 deletions(-)
diff --git a/anrui-base/anrui-base-biz/src/main/java/com/yxt/anrui/base/biz/basetrailer/BaseTrailerService.java b/anrui-base/anrui-base-biz/src/main/java/com/yxt/anrui/base/biz/basetrailer/BaseTrailerService.java
index 8c7d9a3539..5f23dfc9f5 100644
--- a/anrui-base/anrui-base-biz/src/main/java/com/yxt/anrui/base/biz/basetrailer/BaseTrailerService.java
+++ b/anrui-base/anrui-base-biz/src/main/java/com/yxt/anrui/base/biz/basetrailer/BaseTrailerService.java
@@ -300,14 +300,14 @@ public class BaseTrailerService extends MybatisBaseService data = busSalesOrderTrailerFeign.fetchDetailsByOrderSid(orderSid).getData();
if (data != null && data.size() > 0){
Boolean tg = false;
for (BusSalesOrderTrailerDetailsVo datum : data) {
- if (datum.getAppearanceSizeLong().toString().equals(appearanceSizeLong) && datum.getTrailerTypeKey().equals(trailerTypeKey)){
+ if (datum.getAppearanceSizeLong().compareTo(appearanceSizeLong) == 0 && datum.getTrailerTypeKey().equals(trailerTypeKey)){
tg = true;
break;
}
diff --git a/anrui-buscenter/anrui-buscenter-api/src/main/java/com/yxt/anrui/buscenter/api/bussalesordermakeup/BusSalesOrderMakeupDetailsVo.java b/anrui-buscenter/anrui-buscenter-api/src/main/java/com/yxt/anrui/buscenter/api/bussalesordermakeup/BusSalesOrderMakeupDetailsVo.java
index 65d2e7385e..f47472739e 100644
--- a/anrui-buscenter/anrui-buscenter-api/src/main/java/com/yxt/anrui/buscenter/api/bussalesordermakeup/BusSalesOrderMakeupDetailsVo.java
+++ b/anrui-buscenter/anrui-buscenter-api/src/main/java/com/yxt/anrui/buscenter/api/bussalesordermakeup/BusSalesOrderMakeupDetailsVo.java
@@ -83,6 +83,8 @@ public class BusSalesOrderMakeupDetailsVo implements Vo {
@ApiModelProperty("合同中的上装信息")
private String topMessage;
+ private String buyTypeKey;
+
private int isMain;
}
\ No newline at end of file
diff --git a/anrui-riskcenter/anrui-riskcenter-api/src/main/java/com/yxt/anrui/riskcenter/api/loanhomevisitinvestigatecustomer/LoanHomeVisitInvestigateInitCustomerVo.java b/anrui-riskcenter/anrui-riskcenter-api/src/main/java/com/yxt/anrui/riskcenter/api/loanhomevisitinvestigatecustomer/LoanHomeVisitInvestigateInitCustomerVo.java
index 9bcfbc9723..54c93e57bf 100644
--- a/anrui-riskcenter/anrui-riskcenter-api/src/main/java/com/yxt/anrui/riskcenter/api/loanhomevisitinvestigatecustomer/LoanHomeVisitInvestigateInitCustomerVo.java
+++ b/anrui-riskcenter/anrui-riskcenter-api/src/main/java/com/yxt/anrui/riskcenter/api/loanhomevisitinvestigatecustomer/LoanHomeVisitInvestigateInitCustomerVo.java
@@ -89,4 +89,6 @@ public class LoanHomeVisitInvestigateInitCustomerVo implements Vo {
private String isCompBuy;
@ApiModelProperty("001一车一合同 002一贷款人一合同")
private String conSetUpKey;
+ @ApiModelProperty("上装或挂车")
+ private String szOrGc;
}
diff --git a/anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/biz/loanhomevisitinvestigate/LoanHomevisitInvestigateService.java b/anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/biz/loanhomevisitinvestigate/LoanHomevisitInvestigateService.java
index 773f7dcc8d..cb9be211de 100644
--- a/anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/biz/loanhomevisitinvestigate/LoanHomevisitInvestigateService.java
+++ b/anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/biz/loanhomevisitinvestigate/LoanHomevisitInvestigateService.java
@@ -34,6 +34,10 @@ import com.yxt.anrui.buscenter.api.bussalesorder.BusSalesOrder;
import com.yxt.anrui.buscenter.api.bussalesorder.BusSalesOrderFeign;
import com.yxt.anrui.buscenter.api.bussalesorderborrower.BusSalesOrderBorrowerDetailsVo;
import com.yxt.anrui.buscenter.api.bussalesorderborrower.BusSalesOrderBorrowerFeign;
+import com.yxt.anrui.buscenter.api.bussalesordermakeup.BusSalesOrderMakeupDetailsVo;
+import com.yxt.anrui.buscenter.api.bussalesordermakeup.BusSalesOrderMakeupFeign;
+import com.yxt.anrui.buscenter.api.bussalesordertrailer.BusSalesOrderTrailerDetailsVo;
+import com.yxt.anrui.buscenter.api.bussalesordertrailer.BusSalesOrderTrailerFeign;
import com.yxt.anrui.crm.api.crmcustomertemp.CrmCustomerTemp;
import com.yxt.anrui.crm.api.crmcustomertemp.CrmCustomerTempFeign;
import com.yxt.anrui.crm.api.crmcustomertemp.CrmCustomerTempVo;
@@ -127,6 +131,10 @@ public class LoanHomevisitInvestigateService extends MybatisBaseService salesOrderMakeupDetailsVos = busSalesOrderMakeupFeign.selectTopByOrderSid(saleOrderSid).getData();
+ List salesOrderTrailerDetailsVos = busSalesOrderTrailerFeign.fetchDetailsByOrderSid(saleOrderSid).getData();
+ if (salesOrderMakeupDetailsVos != null && salesOrderMakeupDetailsVos.size() > 0){
+ loanHomeVisitInvestigateInitCustomerVo.setSzOrGc("上装");
+ if ("01".equals(salesOrderMakeupDetailsVos.get(0).getBuyTypeKey())){
+ loanHomeVisitInvestigateInitCustomerVo.setIsCompBuy("0");
+ }else if ("02".equals(salesOrderMakeupDetailsVos.get(0).getBuyTypeKey())){
+ loanHomeVisitInvestigateInitCustomerVo.setIsCompBuy("1");
+ }
+ }else if (salesOrderTrailerDetailsVos != null && salesOrderTrailerDetailsVos.size() > 0){
+ loanHomeVisitInvestigateInitCustomerVo.setSzOrGc("挂车");
+ }
return rb.success().setData(loanHomeVisitInvestigateInitCustomerVo);
}
//银行卡附件
diff --git a/anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/biz/loanhomevisitprep/LoanHomevisitPrepService.java b/anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/biz/loanhomevisitprep/LoanHomevisitPrepService.java
index ca33d93649..dbc2deef62 100644
--- a/anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/biz/loanhomevisitprep/LoanHomevisitPrepService.java
+++ b/anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/biz/loanhomevisitprep/LoanHomevisitPrepService.java
@@ -500,9 +500,12 @@ public class LoanHomevisitPrepService extends MybatisBaseService busSalesOrderMakeupDetailsVoList = busSalesOrderMakeupFeign.selectTopByOrderSid(busSalesOrder.getSid()).getData();
//查询金融方案中挂车信息
List cljszcghtUrls = new ArrayList<>();
- if ((busSalesOrderMakeupDetailsVoList != null && busSalesOrderMakeupDetailsVoList.size() > 0) || solutionsDetailsVo.isTrailerAmountCb()) {
- //生成车辆及上装采购合同
- cljszcghtUrls = cljszcght(printConfirmDto, conSetUpKey);
+ if ((busSalesOrderMakeupDetailsVoList != null && busSalesOrderMakeupDetailsVoList.size() > 0)) {
+ //上装生成车辆及上装采购合同
+ cljszcghtUrls = cljszcght(printConfirmDto, conSetUpKey, "sz");
+ }else if (solutionsDetailsVo.isTrailerAmountCb()){
+ //挂车生成车辆及上装采购合同
+ cljszcghtUrls = cljszcght(printConfirmDto, conSetUpKey, "gc");
}
List gsgddwdbjyUrls = new ArrayList<>();
if ("0".equals(homeKcCust.getIsSecurity())) {
@@ -1978,7 +1981,7 @@ public class LoanHomevisitPrepService extends MybatisBaseService cljszcght(PrintConfirmDto printConfirmDto, String conSetUpKey) {
+ public List cljszcght(PrintConfirmDto printConfirmDto, String conSetUpKey, String type) {
Map map = new HashMap<>();
List salesOrderVehicles = printConfirmDto.getSalesOrderVehicles();
//获取销售订单信息
@@ -2013,23 +2016,34 @@ public class LoanHomevisitPrepService extends MybatisBaseService urls = new ArrayList<>();
diff --git a/anrui-terminal/anrui-terminal-api/src/main/java/com/yxt/anrui/terminal/api/risk/loanhomevisitinvestigate/AppLoanHomeVisitInvestigateInitOtherVo.java b/anrui-terminal/anrui-terminal-api/src/main/java/com/yxt/anrui/terminal/api/risk/loanhomevisitinvestigate/AppLoanHomeVisitInvestigateInitOtherVo.java
index a11d95e7cd..7b5df213cc 100644
--- a/anrui-terminal/anrui-terminal-api/src/main/java/com/yxt/anrui/terminal/api/risk/loanhomevisitinvestigate/AppLoanHomeVisitInvestigateInitOtherVo.java
+++ b/anrui-terminal/anrui-terminal-api/src/main/java/com/yxt/anrui/terminal/api/risk/loanhomevisitinvestigate/AppLoanHomeVisitInvestigateInitOtherVo.java
@@ -26,4 +26,8 @@ public class AppLoanHomeVisitInvestigateInitOtherVo implements Vo {
private String registDetailAddress;
@ApiModelProperty("实际经营地址")
private String realAddress;
+ @ApiModelProperty("是否公司采购")
+ private String caigou;
+ @ApiModelProperty("是否展示公司采购")
+ private Integer showCaigou;
}
diff --git a/anrui-terminal/anrui-terminal-api/src/main/java/com/yxt/anrui/terminal/api/risk/loanhomevisitinvestigate/AppLoanHomeVisitInvestigateSaveOtherDto.java b/anrui-terminal/anrui-terminal-api/src/main/java/com/yxt/anrui/terminal/api/risk/loanhomevisitinvestigate/AppLoanHomeVisitInvestigateSaveOtherDto.java
index 58602957b3..a3cda6d0fc 100644
--- a/anrui-terminal/anrui-terminal-api/src/main/java/com/yxt/anrui/terminal/api/risk/loanhomevisitinvestigate/AppLoanHomeVisitInvestigateSaveOtherDto.java
+++ b/anrui-terminal/anrui-terminal-api/src/main/java/com/yxt/anrui/terminal/api/risk/loanhomevisitinvestigate/AppLoanHomeVisitInvestigateSaveOtherDto.java
@@ -27,4 +27,6 @@ public class AppLoanHomeVisitInvestigateSaveOtherDto implements Dto {
private String registDetailAddress;
@ApiModelProperty("实际经营地址")
private String realAddress;
+ @ApiModelProperty("是否公司采购(1是,0否)")
+ private String caigou;
}
diff --git a/anrui-terminal/anrui-terminal-biz/src/main/java/com/yxt/anrui/terminal/biz/risk/loanhomevisitinvestigate/LoanHomeVisitInvestigateService.java b/anrui-terminal/anrui-terminal-biz/src/main/java/com/yxt/anrui/terminal/biz/risk/loanhomevisitinvestigate/LoanHomeVisitInvestigateService.java
index 64d87323a9..45a2094b4e 100644
--- a/anrui-terminal/anrui-terminal-biz/src/main/java/com/yxt/anrui/terminal/biz/risk/loanhomevisitinvestigate/LoanHomeVisitInvestigateService.java
+++ b/anrui-terminal/anrui-terminal-biz/src/main/java/com/yxt/anrui/terminal/biz/risk/loanhomevisitinvestigate/LoanHomeVisitInvestigateService.java
@@ -245,6 +245,20 @@ public class LoanHomeVisitInvestigateService {
appLoanHomeVisitInvestigateInitOtherVo.setMobile2(data.getMobile());
appLoanHomeVisitInvestigateInitOtherVo.setRegistDetailAddress(data.getAccCompAddress());
appLoanHomeVisitInvestigateInitOtherVo.setRealAddress(data.getAccCompxAddress());
+ //判断是否有上装或挂车
+ if (StringUtils.isBlank(data.getSzOrGc())){
+ appLoanHomeVisitInvestigateInitOtherVo.setShowCaigou(0);
+ }else if ("上装".equals(data.getSzOrGc())){
+ appLoanHomeVisitInvestigateInitOtherVo.setShowCaigou(2);
+ }else if ("挂车".equals(data.getSzOrGc())){
+ appLoanHomeVisitInvestigateInitOtherVo.setShowCaigou(1);
+ }
+ //初始化显示是否公司采购
+ if ("0".equals(data.getIsCompBuy())){
+ appLoanHomeVisitInvestigateInitOtherVo.setCaigou("1");
+ }else if ("1".equals(data.getIsCompBuy())){
+ appLoanHomeVisitInvestigateInitOtherVo.setCaigou("0");
+ }
}else {
return rb.setMsg("请优先完善客户信息");
}
@@ -257,6 +271,9 @@ public class LoanHomeVisitInvestigateService {
LoanHomeVisitInvestigateInitCustomerVo data = loanHomevisitInvestigateFeign.getHomeVisitCustomerInfo(dto.getSid()).getData();
if (data != null){
BeanUtil.copyProperties(data,loanHomeVisitInvestigateSaveCustomerDto);
+ if ("挂车".equals(data.getSzOrGc()) && StringUtils.isBlank(dto.getCaigou())){
+ return rb.setMsg("请选择挂车或上装是否公司采购");
+ }
List otherPersonnel = data.getOtherPersonnel();
List loanHomeVisitInvestigateSaveOtherPeoDtos = new ArrayList<>();
if (otherPersonnel != null && otherPersonnel.size() > 0){
@@ -268,11 +285,18 @@ public class LoanHomeVisitInvestigateService {
loanHomeVisitInvestigateSaveCustomerDto.setOtherPersonnel(loanHomeVisitInvestigateSaveOtherPeoDtos);
}
loanHomeVisitInvestigateSaveCustomerDto.setVehRegis(dto.getIsGK());
+ //是否担保
if ("0".equals(dto.getIsDb())){
loanHomeVisitInvestigateSaveCustomerDto.setIsSecurity("1");
}else if ("1".equals(dto.getIsDb())){
loanHomeVisitInvestigateSaveCustomerDto.setIsSecurity("0");
}
+ //是否采购
+ if ("0".equals(dto.getCaigou())){
+ loanHomeVisitInvestigateSaveCustomerDto.setIsCompBuy("1");
+ }else if ("1".equals(dto.getCaigou())){
+ loanHomeVisitInvestigateSaveCustomerDto.setIsCompBuy("0");
+ }
loanHomeVisitInvestigateSaveCustomerDto.setAccCompName(dto.getDisName());
loanHomeVisitInvestigateSaveCustomerDto.setAccCompRegistNum(dto.getRegistNum());
loanHomeVisitInvestigateSaveCustomerDto.setAccCompContract(dto.getContract());
From 8cc928dfdfbf4c60523a48cf5a6d8027c651549c Mon Sep 17 00:00:00 2001
From: yunuo970428 <405378304@qq.com>
Date: Tue, 25 Jun 2024 14:13:03 +0800
Subject: [PATCH 5/5] =?UTF-8?q?=E5=AE=8C=E5=96=84=E5=AE=B6=E8=AE=BF?=
=?UTF-8?q?=E5=87=86=E5=A4=87?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../homevisitpreparationAdd.vue | 32 +++++++++++--------
1 file changed, 18 insertions(+), 14 deletions(-)
diff --git a/anrui-riskcenter-ui/src/views/homevisitpreparation/homevisitpreparationAdd.vue b/anrui-riskcenter-ui/src/views/homevisitpreparation/homevisitpreparationAdd.vue
index 90db567c36..d9b577e048 100644
--- a/anrui-riskcenter-ui/src/views/homevisitpreparation/homevisitpreparationAdd.vue
+++ b/anrui-riskcenter-ui/src/views/homevisitpreparation/homevisitpreparationAdd.vue
@@ -253,18 +253,20 @@
- 车辆及上装采购合同
-
-
- *挂车或上装是否公司采购
-
-
- 是
- 否
-
-
-
-
+
+
车辆及上装采购合同
+
+
+ *挂车或上装是否公司采购
+
+
+ 是
+ 否
+
+
+
+
+
@@ -326,7 +328,8 @@ export default {
spouseMobile: '',
spouseName: '',
spouseRegisterAddress: '',
- vehRegis: ''
+ vehRegis: '',
+ szOrGc: ''
},
rules: {
idNumber: [{ required: true, message: '借款人身份证号不能为空', trigger: 'blur' }],
@@ -550,7 +553,8 @@ export default {
spouseMobile: '',
spouseName: '',
spouseRegisterAddress: '',
- vehRegis: ''
+ vehRegis: '',
+ szOrGc: ''
}
this.submitdisabled = false
this.contractDisabled = false