<% if (ctx.settle.audit_status === auditConst.status.uncheck) { %>
        <% if (ctx.session.sessionUser.accountId === ctx.settle.user_id) { %>
            
上报审批
            <% if (ctx.settle.settle_order === ctx.settle.highOrder) { %>
                
删除本期
            <% } %>
        <% } else { %>
            
上报中
        <% } %>
    <% } %>
    <% if (ctx.settle.audit_status === auditConst.status.checking) { %>
        <% if (ctx.settle.curAuditorIds.indexOf(ctx.session.sessionUser.accountId) >= 0) { %>
            
审批通过
            审批退回
        <% } else { %>
            
审批中
        <% } %>
    <% } %>
    <% if (ctx.settle.audit_status === auditConst.status.checked) { %>
        
审批完成
        <% if (ctx.settle.finalAuditorIds && ctx.settle.finalAuditorIds.indexOf(ctx.session.sessionUser.accountId) >= 0 && ctx.settle.settle_order === ctx.settle.highOrder) { %>
            
重新审批
        <% } %>
    <% } %>
    <% if (ctx.settle.audit_status === auditConst.status.checkNo) { %>
        
审批退回
        <% if (ctx.session.sessionUser.accountId === ctx.settle.user_id) { %>
            
重新上报
            <% if (ctx.settle.settle_order === ctx.settle.highOrder) { %>
                
删除本期
            <% } %>
        <% } %>
    <% } %>
    <% if (ctx.settle.audit_status === auditConst.status.checkNoPre) { %>
        
审批退回
        <% if (ctx.settle.curAuditorIds.indexOf(ctx.session.sessionUser.accountId) >= 0) { %>
            
审批通过
            审批退回
        <% } %>
    <% } %>
    <% if (ctx.settle.cancancel) { %>
        
撤回
    <% } %>