From 187ee29fa278a103cac1e8ce89b7faa75881ac4e Mon Sep 17 00:00:00 2001 From: fanzongzhe <285169773@qq.com> Date: Sat, 12 Oct 2024 13:33:27 +0800 Subject: [PATCH 1/9] =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=AE=A2=E6=88=B7?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../CrmCustomerTempService.java | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/anrui-crm/anrui-crm-biz/src/main/java/com/yxt/anrui/crm/biz/crmcustomertemp/CrmCustomerTempService.java b/anrui-crm/anrui-crm-biz/src/main/java/com/yxt/anrui/crm/biz/crmcustomertemp/CrmCustomerTempService.java index b8320e2040..4e92d6ec58 100644 --- a/anrui-crm/anrui-crm-biz/src/main/java/com/yxt/anrui/crm/biz/crmcustomertemp/CrmCustomerTempService.java +++ b/anrui-crm/anrui-crm-biz/src/main/java/com/yxt/anrui/crm/biz/crmcustomertemp/CrmCustomerTempService.java @@ -242,18 +242,20 @@ public class CrmCustomerTempService extends MybatisBaseService pagging = baseMapper.selectPageVo(page, qw); for (CrmCustomerTempVo record : pagging.getRecords()) { String createOrgSid = record.getCreateOrgSid(); - String staffSid = record.getStaffSid(); String createOrgName = sysOrganizationFeign.fetchBySid(createOrgSid).getData().getName(); record.setCreateOrgName(createOrgName); // String staffName = sysStaffinfoFeign.fetchBySid(staffSid).getData().getName(); // record.setStaffName(staffName); - List sysStaffOrgVos = sysStaffOrgFeign.getSysStaffOrgListByStaffSid(staffSid).getData(); - for (SysStaffOrgVo sysStaffOrgVo : sysStaffOrgVos) { - SysOrganizationVo sysOrganizationVo = sysOrganizationFeign.fetchBySid(sysStaffOrgVo.getOrgSid()).getData(); - String psid = sysOrganizationVo.getPsid(); - if (psid.equals(createOrgSid)) { - String orgName = sysStaffOrgVo.getOrgName(); - record.setDeptName(orgName); + if (StringUtils.isNotBlank(record.getStaffSid())) { + String staffSid = record.getStaffSid(); + List sysStaffOrgVos = sysStaffOrgFeign.getSysStaffOrgListByStaffSid(staffSid).getData(); + for (SysStaffOrgVo sysStaffOrgVo : sysStaffOrgVos) { + SysOrganizationVo sysOrganizationVo = sysOrganizationFeign.fetchBySid(sysStaffOrgVo.getOrgSid()).getData(); + String psid = sysOrganizationVo.getPsid(); + if (psid.equals(createOrgSid)) { + String orgName = sysStaffOrgVo.getOrgName(); + record.setDeptName(orgName); + } } } } From 67256bcf0ba548c3970df0f4fc39e0e77d1c33f6 Mon Sep 17 00:00:00 2001 From: yunuo970428 <405378304@qq.com> Date: Sat, 12 Oct 2024 14:43:15 +0800 Subject: [PATCH 2/9] =?UTF-8?q?=E5=AE=8C=E5=96=84=E8=BD=A6=E8=BE=86?= =?UTF-8?q?=E7=BB=93=E6=B8=85=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- anrui-riskcenter-ui/src/views/settle/settleAdd.vue | 6 +++++- .../src/views/workFlow/jieqingFlow/settleEdit.vue | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/anrui-riskcenter-ui/src/views/settle/settleAdd.vue b/anrui-riskcenter-ui/src/views/settle/settleAdd.vue index eafab542f4..be7c7220d9 100644 --- a/anrui-riskcenter-ui/src/views/settle/settleAdd.vue +++ b/anrui-riskcenter-ui/src/views/settle/settleAdd.vue @@ -185,7 +185,7 @@ {{ calculateBankSettlePrice }} -
资方收款账号
+
*资方收款账号
@@ -631,6 +631,10 @@ export default { }) }, submit() { + if (this.formobj.loanSettleBankCostVo.bankAccount === '') { + this.$message({ showClose: true, type: 'error', message: '资方收款账号不能为空' }) + return + } this.formobj.loanSettleBankCostVo.bankSettlePrice = this.calculateBankSettlePrice this.formobj.loanSettleCompanyCostVo.settleAll = this.calculateSettleAll this.formobj.loanSettleCompanyReductionVo.amountTo = this.calculateAmountTo diff --git a/anrui-riskcenter-ui/src/views/workFlow/jieqingFlow/settleEdit.vue b/anrui-riskcenter-ui/src/views/workFlow/jieqingFlow/settleEdit.vue index c415dfacca..8a9ba47e96 100644 --- a/anrui-riskcenter-ui/src/views/workFlow/jieqingFlow/settleEdit.vue +++ b/anrui-riskcenter-ui/src/views/workFlow/jieqingFlow/settleEdit.vue @@ -184,7 +184,7 @@ {{ calculateBankSettlePrice }}
-
资方收款账号
+
*资方收款账号
@@ -614,6 +614,10 @@ export default { }) }, submit() { + if (this.formobj.loanSettleBankCostVo.bankAccount === '') { + this.$message({ showClose: true, type: 'error', message: '资方收款账号不能为空' }) + return + } this.formobj.loanSettleBankCostVo.bankSettlePrice = this.calculateBankSettlePrice this.formobj.loanSettleCompanyCostVo.settleAll = this.calculateSettleAll this.formobj.loanSettleCompanyReductionVo.amountTo = this.calculateAmountTo From 512b7539b04736a08255a449fe4606d1051f99a9 Mon Sep 17 00:00:00 2001 From: yunuo970428 <405378304@qq.com> Date: Sat, 12 Oct 2024 17:05:22 +0800 Subject: [PATCH 3/9] =?UTF-8?q?=E5=AE=8C=E5=96=84=E4=B8=93=E9=A1=B9?= =?UTF-8?q?=E8=BF=94=E5=88=A9=E6=A0=B8=E5=AF=B9=E3=80=81=E9=A2=84=E6=8F=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../specialrebate/specialrebatecheck/specialrebatecheck.vue | 2 +- .../specialrebatewithholding/specialrebatewithholding.vue | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatecheck/specialrebatecheck.vue b/anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatecheck/specialrebatecheck.vue index 01b2bff585..7f548dea49 100644 --- a/anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatecheck/specialrebatecheck.vue +++ b/anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatecheck/specialrebatecheck.vue @@ -53,7 +53,7 @@ diff --git a/anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatewithholding/specialrebatewithholding.vue b/anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatewithholding/specialrebatewithholding.vue index a92ba78489..37e71c7a83 100644 --- a/anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatewithholding/specialrebatewithholding.vue +++ b/anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatewithholding/specialrebatewithholding.vue @@ -52,7 +52,11 @@ - + + + From f3a05ef6262ded038f2c3938cf107c3b9d563b8f Mon Sep 17 00:00:00 2001 From: yunuo970428 <405378304@qq.com> Date: Sat, 12 Oct 2024 17:25:43 +0800 Subject: [PATCH 4/9] =?UTF-8?q?=E5=AE=8C=E5=96=84=E4=B8=93=E9=A1=B9?= =?UTF-8?q?=E8=BF=94=E5=88=A9=E6=A0=B8=E5=AF=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../relation/specialrebatetobecheckedInfo.vue | 2 +- .../relation/specialrebatetobecheckedInfo.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatecheck/relation/specialrebatetobecheckedInfo.vue b/anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatecheck/relation/specialrebatetobecheckedInfo.vue index 2dcafaf925..e7f03baa4b 100644 --- a/anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatecheck/relation/specialrebatetobecheckedInfo.vue +++ b/anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatecheck/relation/specialrebatetobecheckedInfo.vue @@ -76,7 +76,7 @@ export default { }) this.viewTitle = '专项返利核对审核申请明细' console.log('编辑回显', row) - req.specialRebateCheckDetails(row.specialRebateSid).then((resp) => { + req.specialRebateCheckDetails(row.specialRebateSids).then((resp) => { if (resp.success) { this.list = resp.data } diff --git a/anrui-scm/anrui-scm-ui/src/views/workFlow/zhuanxiangfanliheduiFlow/relation/specialrebatetobecheckedInfo.vue b/anrui-scm/anrui-scm-ui/src/views/workFlow/zhuanxiangfanliheduiFlow/relation/specialrebatetobecheckedInfo.vue index d1261baaae..6590fb795b 100644 --- a/anrui-scm/anrui-scm-ui/src/views/workFlow/zhuanxiangfanliheduiFlow/relation/specialrebatetobecheckedInfo.vue +++ b/anrui-scm/anrui-scm-ui/src/views/workFlow/zhuanxiangfanliheduiFlow/relation/specialrebatetobecheckedInfo.vue @@ -76,7 +76,7 @@ export default { }) this.viewTitle = '专项返利核对审核申请明细' console.log('编辑回显', row) - req.specialRebateCheckDetails(row.specialRebateSid).then((resp) => { + req.specialRebateCheckDetails(row.specialRebateSids).then((resp) => { if (resp.success) { this.list = resp.data } From a537c2b1aa070540bcaba21660eebed646405c5c Mon Sep 17 00:00:00 2001 From: yunuo970428 <405378304@qq.com> Date: Sat, 12 Oct 2024 17:52:20 +0800 Subject: [PATCH 5/9] =?UTF-8?q?=E5=AE=8C=E5=96=84=E4=B8=93=E9=A1=B9?= =?UTF-8?q?=E8=BF=94=E5=88=A9=E5=88=86=E9=85=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../relation/daifeipeizhuanxiang.vue | 109 +++++-------- .../relation/selectvehicle.vue | 149 ++++-------------- .../specialrebatedistribution.vue | 81 ++++------ .../specialrebatedistributionAdd.vue | 135 +++++----------- .../specialrebatedistributionInfo.vue | 81 +++------- .../specialrebatetobeallocated.vue | 104 ++++++------ .../specialrebatetobeallocatedAdd.vue | 118 ++++++-------- .../specialrebatetobeallocatedByDisNum.vue | 36 +---- .../relation/daifeipeizhuanxiang.vue | 111 +++++-------- .../zhuanxiangfanlifenpeiDaiBanInfo.vue | 89 +++-------- .../zhuanxiangfanlifenpeiEdit.vue | 132 +++++----------- .../zhuanxiangfanlifenpeiYiBanInfo.vue | 81 +++------- 12 files changed, 395 insertions(+), 831 deletions(-) diff --git a/anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatedistribution/relation/daifeipeizhuanxiang.vue b/anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatedistribution/relation/daifeipeizhuanxiang.vue index edec40a88a..c9be90c2c7 100644 --- a/anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatedistribution/relation/daifeipeizhuanxiang.vue +++ b/anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatedistribution/relation/daifeipeizhuanxiang.vue @@ -8,6 +8,12 @@ {{ searchxianshitit }}