1.修改资料清单点击上传并直接关闭,状态变为‘已提交’问题。
This commit is contained in:
parent
a1e9d02581
commit
bb5402b75f
@ -3917,7 +3917,7 @@
|
||||
<attribute name="RTNFLG" label="RTNFLG" type="STRING"/>
|
||||
<attribute name="ERRTXT" label="ERRTXT" type="STRING"/>
|
||||
<attribute name="IS_FLOWING" label="IS_FLOWING" type="STRING"/>
|
||||
<attribute name="payType" label="付款类型" type="STRING"/>
|
||||
<attribute name="payType" label="放款方式" type="STRING"/>
|
||||
</attributes>
|
||||
<manager>
|
||||
<managerProperties>
|
||||
@ -4919,6 +4919,28 @@
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
<class name="BC_PAY_INFO_LOG" label="北财更新放款日志表" keyAttributes="ID">
|
||||
<attributes>
|
||||
<attribute name="ID" label="ID" type="STRING" length="32"/>
|
||||
<attribute name="contract_id" label="合同ID" type="STRING" length="32"/>
|
||||
<attribute name="project_no" label="申请号" type="STRING" length="32"/>
|
||||
<attribute name="customername" label="姓名" type="STRING" length="32"/>
|
||||
<attribute name="certid" label="证件号码" type="STRING" length="32"/>
|
||||
<attribute name="fact_money" label="付款金额" type="DOUBLE" length="22" scale="2"/>
|
||||
<attribute name="result" label="返回结果" type="STRING" length="22"/>
|
||||
<attribute name="resultInfo" label="失败结果详情" type="STRING" length="100"/>
|
||||
<attribute name="responseInfo" label="响应信息" type="STRING" length="100"/>
|
||||
<attribute name="INPUTUSERID" label="登记人" type="STRING" length="32"/>
|
||||
<attribute name="INPUTORGID" label="登记部门" type="STRING" length="32"/>
|
||||
<attribute name="INPUTTIME" label="登记时间" type="STRING" length="32"/>
|
||||
</attributes>
|
||||
<manager>
|
||||
<managerProperties>
|
||||
<property name="table" value="bc_pay_info_log" />
|
||||
<property name="createKey" value="true" />
|
||||
</managerProperties>
|
||||
</manager>
|
||||
</class>
|
||||
</package>
|
||||
<package name="jbo.com.tenwa.lease.carbrand" >
|
||||
<class name="LB_CLAIMS_BOOK_DETAIL" label="索赔申请书详情表" keyAttributes="ID">
|
||||
|
||||
@ -92,7 +92,11 @@ public class DocListAction {
|
||||
//更新业务检查状态
|
||||
public String updateBussinessCheck(JBOTransaction tx) throws JBOException{
|
||||
BizObjectManager bm=JBOFactory.getBizObjectManager(jbo.app.tenwa.doc.LB_DOCLIBRARY.CLASS_NAME);
|
||||
bm.createQuery("update O set BUSINESS_CHECK=:BussinessCheck where id=:id").setParameter("BussinessCheck", this.BussinessCheck).setParameter("id", this.library_id).executeUpdate();
|
||||
BizObjectManager bm1=JBOFactory.getBizObjectManager(jbo.app.tenwa.doc.LB_DOCATTRIBUTE.CLASS_NAME);
|
||||
int count=bm1.createQuery("select * from O where library_id=:libid and deleteed is null").setParameter("libid", this.library_id).getTotalCount();
|
||||
if(count>0){
|
||||
bm.createQuery("update O set BUSINESS_CHECK=:BussinessCheck where id=:id").setParameter("BussinessCheck", this.BussinessCheck).setParameter("id", this.library_id).executeUpdate();
|
||||
}
|
||||
tx.commit();
|
||||
return "";
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user