From ef996081ef0a02d5a861a3afb26c51b29f2c4ffa Mon Sep 17 00:00:00 2001 From: yjf <2211675158@qq.com> Date: Thu, 15 Sep 2022 16:31:00 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E9=9D=9E=E7=A9=BA=E5=88=A4?= =?UTF-8?q?=E6=96=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../contract/commbusiness/LBInitContractStatusBusiness.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src_tenwa/com/tenwa/lease/flow/contract/commbusiness/LBInitContractStatusBusiness.java b/src_tenwa/com/tenwa/lease/flow/contract/commbusiness/LBInitContractStatusBusiness.java index d1952cd04..77c67b6fe 100644 --- a/src_tenwa/com/tenwa/lease/flow/contract/commbusiness/LBInitContractStatusBusiness.java +++ b/src_tenwa/com/tenwa/lease/flow/contract/commbusiness/LBInitContractStatusBusiness.java @@ -2,12 +2,9 @@ package com.tenwa.lease.flow.contract.commbusiness; import com.amarsoft.are.jbo.BizObjectManager; import com.amarsoft.are.jbo.JBOFactory; -import com.amarsoft.awe.util.ASResultSet; import com.amarsoft.awe.util.SqlObject; import com.amarsoft.awe.util.Transaction; -import com.amarsoft.context.ASUser; import com.tenwa.flow.baseBussion.BaseBussiness; - import jbo.com.tenwa.lease.comm.LB_CONTRACT_INFO; public class LBInitContractStatusBusiness extends BaseBussiness { @@ -17,7 +14,7 @@ public class LBInitContractStatusBusiness extends BaseBussiness { this.initBussinessParam(Sqlca); String flowname=(String)this.getAttribute("FlowName"); String contractId=this.getAttribute("ContractId").toString(); - String settletype=this.getAttribute("settletype").toString(); + String settletype = this.getAttribute("settletype") == null ? null : this.getAttribute("settletype").toString(); String contractStatus=this.getAttribute("ContractStatus").toString(); String FlowUnid=this.getAttribute("FlowUnid").toString(); BizObjectManager bom=JBOFactory.getBizObjectManager(LB_CONTRACT_INFO.CLASS_NAME);