This commit is contained in:
linfso 2024-08-16 14:30:31 +08:00
parent 01d4f424df
commit ab45ae5636
2 changed files with 3 additions and 1 deletions

View File

@ -250,6 +250,8 @@ public class EmisSettleInvoiceRecordServiceImpl extends EmisBaseService implemen
emisSettleInvoiceRecord.setAuditManCode(getCurrentUser().getEmpCode());
emisSettleInvoiceRecord.setAuditSiteCode(getCurrentUser().getOwnerSiteCode());
// 更新状态状态为
return emisSettleInvoiceRecordMapper.auditCenterNoPass(emisSettleInvoiceRecord);
}

View File

@ -73,7 +73,7 @@
<if test="id != null "> and id = #{id}</if>
<if test="settleBillNo != null and settleBillNo != ''"> and FIND_IN_SET(a.`settle_bill_no`,#{settleBillNo})</if>
<if test="settleBillName != null and settleBillName != ''"> and settle_bill_name like concat('%', #{settleBillName}, '%')</if>
<if test="settleType != null and settleType != ''"> and settle_type like concat('%', #{settleType}, '%')</if>
<if test="settleType != null and settleType != ''"> and settle_type= #{settleType},</if>
<if test="settleStartDate != null "> and settle_start_date = #{settleStartDate}</if>
<if test="settleEndDate != null "> and settle_end_date = #{settleEndDate}</if>
<if test="billMonth != null and billMonth != ''"> and bill_month = #{billMonth}</if>