Commit 49cfe70910c695b4af0414ae075fb2fb44856125

Authored by 史婷婷
1 parent f1a2af03

feat: 资信管理审核-运作科档案员不必填,运作科主管 审核 (结算期限 授信额度 必填)

Showing 1 changed file with 10 additions and 9 deletions
... ... @@ -272,14 +272,14 @@ export default {
272 272 console.log('审核__roles&&bizFlag', this.roleCodes, this.auditCtx.bizFlag);
273 273 // 客户资信的审核
274 274 if (this.auditCtx.bizFlag === 'CUSTOMER_CREDIT_EDIT') {
275   - // 运作科档案员审核(yzkday) --显示客户信息按钮,可上传工商信息、股东信息的图片
276   - if (this.roleCodes.includes('yzkday') && !this.hsCustomerInfo()) {
277   - uni.showToast({
278   - title: '请填写客户信息',
279   - icon: 'none'
280   - })
281   - return
282   - }
  275 + // // 运作科档案员审核(yzkday) --显示客户信息按钮,可上传工商信息、股东信息的图片
  276 + // if (this.roleCodes.includes('yzkday') && !this.hsCustomerInfo()) {
  277 + // uni.showToast({
  278 + // title: '请填写客户信息',
  279 + // icon: 'none'
  280 + // })
  281 + // return
  282 + // }
283 283 // 运作科主管审核(yzkzg) --显示公司评审按钮,可对加工操作方案、授信额度、结算期限、客户等级进行修改
284 284 if (this.roleCodes.includes('yzkzg') && !this.hsCompanyReview()) {
285 285 uni.showToast({
... ... @@ -302,7 +302,8 @@ export default {
302 302 },
303 303 // 是否填写-公司评审信息
304 304 hsCompanyReview() {
305   - if (this.companyReview.companySettlementPeriod || this.companyReview.companyMaterialSupplyPlan || this.companyReview.companySuggestedCategory || this.companyReview.companySuggestedCategoryName || this.companyReview.companyCreditLimit) {
  305 + // 结算期限 授信额度
  306 + if (this.companyReview.companySettlementPeriod || this.companyReview.companyCreditLimit) {
306 307 return true
307 308 }
308 309 return false
... ...