更新日记帐审批状态

update gl_je_batches t
set t.approval_status_code='R'--要求审批
where T.JE_BATCH_ID=1155764;

update gl_je_batches t
set t.approval_status_code='I'--处理中
where T.JE_BATCH_ID=1155764;

update gl_je_batches t
set t.approval_status_code='P' --审批通过
where T.JE_BATCH_ID=1155764;
原文地址:https://www.cnblogs.com/lizicheng/p/9045954.html