| | |
| | | billManagement.setSettlementPeriod(billDto.getSettlementPeriod()); |
| | | billManagement.setStatus(billDto.getStatus() != null ? billDto.getStatus() : "draft"); |
| | | billManagement.setAuditStatus(billDto.getAuditStatus() != null ? billDto.getAuditStatus() : 0); |
| | | billManagement.setSourceSystemId(billDto.getSourceSystemId()); |
| | | billManagement.setRemark(billDto.getRemark()); |
| | | billManagement.setCreateTime(DateUtils.getNowDate()); |
| | | billManagement.setCreateBy("api_system"); |
| | |
| | | // 设置其他信息 |
| | | billManagement.setStatus(billDto.getStatus() != null ? billDto.getStatus() : "draft"); |
| | | billManagement.setAuditStatus(billDto.getAuditStatus() != null ? billDto.getAuditStatus() : 0); |
| | | billManagement.setSourceSystemId(billDto.getSourceSystemId()); |
| | | billManagement.setRemark(billDto.getRemark()); |
| | | billManagement.setCreateTime(DateUtils.getNowDate()); |
| | | billManagement.setCreateBy("api_system"); |
| | |
| | | package com.ruoyi.cwgl.controller; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | import com.ruoyi.common.utils.StringUtils; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | |
| | | import java.util.Objects; |
| | | import com.ruoyi.cwgl.domain.InvoiceManage; |
| | | import com.ruoyi.cwgl.domain.PayableBillManagement; |
| | | import com.ruoyi.cwgl.domain.PayableBillManagementLog; |
| | | import com.ruoyi.cwgl.domain.PayableInvoiceBusiness; |
| | | import com.ruoyi.cwgl.domain.dto.BillAuditDto; |
| | | import com.ruoyi.cwgl.domain.dto.PayableAuditLog; |
| | | import com.ruoyi.cwgl.service.IInvoiceManageService; |
| | | import com.ruoyi.cwgl.service.IPayableBillManagementLogService; |
| | | import com.ruoyi.cwgl.service.IPayableBillManagementService; |
| | | import com.ruoyi.cwgl.service.IPayableInvoiceBusinessService; |
| | | import com.ruoyi.cwgl.service.ITmsAuditLogPushService; |
| | |
| | | |
| | | @Autowired |
| | | private ITmsAuditLogPushService tmsAuditLogPushService; |
| | | |
| | | @Autowired |
| | | private IPayableBillManagementLogService payableBillManagementLogService; |
| | | |
| | | |
| | | |
| | |
| | | // 6. 如果来源系统是TMS,推送审核日志到TMS |
| | | if (tmsAuditLogPushService.isPayableBillFromTms(bill.getSystemNo())) { |
| | | try { |
| | | PayableAuditLog auditLog = createPayableAuditLog(billAuditDto, bill, beforeAuditStatus); |
| | | PayableAuditLog auditLog = createPayableAuditLog(billAuditDto, bill); |
| | | tmsAuditLogPushService.pushPayableAuditLog(auditLog); |
| | | } catch (Exception e) { |
| | | logger.error("推送应付账单审核日志到TMS失败,账单ID:{}", bill.getId(), e); |
| | |
| | | * 保存应付账单审核日志 |
| | | */ |
| | | private void savePayableAuditLog(BillAuditDto billAuditDto, PayableBillManagement bill, Integer beforeAuditStatus) { |
| | | // 这里需要实现日志记录逻辑 |
| | | // 可以使用原有的日志服务或系统日志 |
| | | logger.info("应付账单审核日志 - 账单ID:{},账单编号:{},审核前状态:{},审核结果:{},审核意见:{}", |
| | | bill.getId(), bill.getSystemNo(), |
| | | getAuditStatusText(beforeAuditStatus), |
| | | getAuditResultText(billAuditDto.getAuditResult()), |
| | | billAuditDto.getAuditComment() != null ? billAuditDto.getAuditComment() : "无"); |
| | | try { |
| | | PayableBillManagementLog log = new PayableBillManagementLog(); |
| | | log.setBillId(bill.getId()); |
| | | log.setSourceSystemId(bill.getSourceSystemId()); // 设置来源系统ID |
| | | log.setCreateBy(getUsername()); |
| | | log.setCreateTime(new Date()); |
| | | |
| | | // 构建操作说明 |
| | | String operation = String.format("应付账单审核 - 账单编号:%s,审核前状态:%s,审核结果:%s,审核意见:%s", |
| | | bill.getSystemNo(), |
| | | getAuditStatusText(beforeAuditStatus), |
| | | getAuditResultText(billAuditDto.getAuditResult()), |
| | | billAuditDto.getAuditComment() != null ? billAuditDto.getAuditComment() : "无"); |
| | | log.setOperation(operation); |
| | | |
| | | // 保存到数据库 |
| | | payableBillManagementLogService.insertPayableBillManagementLog(log); |
| | | |
| | | logger.info("应付账单审核日志保存成功 - 账单ID:{},来源系统ID:{}", bill.getId(), bill.getSourceSystemId()); |
| | | |
| | | } catch (Exception e) { |
| | | logger.error("保存应付账单审核日志失败,账单ID:{}", bill.getId(), e); |
| | | // 日志保存失败不影响主流程,只记录错误日志 |
| | | } |
| | | } |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 创建应付账单审核日志对象 |
| | | */ |
| | | private PayableAuditLog createPayableAuditLog(BillAuditDto billAuditDto, PayableBillManagement bill, Integer beforeAuditStatus) { |
| | | private PayableAuditLog createPayableAuditLog(BillAuditDto billAuditDto, PayableBillManagement bill) { |
| | | PayableAuditLog auditLog = new PayableAuditLog(); |
| | | auditLog.setBillId(bill.getId()); |
| | | auditLog.setBillNo(bill.getSystemNo()); |
| | | auditLog.setBillName(bill.getBillName()); |
| | | auditLog.setSupplierName(bill.getSupplierName()); |
| | | auditLog.setSourceSystem(tmsAuditLogPushService.getPayableBillSourceSystem(bill.getSystemNo())); |
| | | auditLog.setBeforeAuditStatus(beforeAuditStatus); |
| | | auditLog.setAuditResult(billAuditDto.getAuditResult()); |
| | | auditLog.setAuditComment(billAuditDto.getAuditComment()); |
| | | auditLog.setAuditUser(getUsername()); |
| | | auditLog.setAuditTime(new java.util.Date()); |
| | | auditLog.setTotalAmount(bill.getTotalAmount()); |
| | | auditLog.setHeadId(bill.getSourceSystemId()); |
| | | auditLog.setCreateBy(getUsername()); |
| | | auditLog.setCreateTime(new Date()); |
| | | |
| | | String opertion = ""; |
| | | if (billAuditDto.getAuditResult() != null&& billAuditDto.getAuditResult().equals(1)) { |
| | | opertion = "审核通过"; |
| | | if (StringUtils.isNotEmpty(billAuditDto.getAuditComment())){ |
| | | opertion += ",审核意见 :" + billAuditDto.getAuditComment(); |
| | | } |
| | | }else { |
| | | opertion = "审核驳回"; |
| | | if (StringUtils.isNotEmpty(billAuditDto.getAuditComment())){ |
| | | opertion += ",审核意见:" + billAuditDto.getAuditComment(); |
| | | } |
| | | } auditLog.setOperation(opertion); |
| | | |
| | | return auditLog; |
| | | } |
| | | } |
| | |
| | | package com.ruoyi.cwgl.controller; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | import com.ruoyi.common.utils.StringUtils; |
| | | import com.ruoyi.cwgl.domain.ReceivableBillCustomerSummary; |
| | | import com.ruoyi.cwgl.domain.vo.ReceivableBillAccountAnalysisVo; |
| | | import com.ruoyi.cwgl.domain.vo.ReceivableBillAgingAnalysisVo; |
| | |
| | | import java.util.Objects; |
| | | import com.ruoyi.cwgl.domain.InvoiceManage; |
| | | import com.ruoyi.cwgl.domain.ReceivableBillManagement; |
| | | import com.ruoyi.cwgl.domain.ReceivableBillManagementLog; |
| | | import com.ruoyi.cwgl.domain.ReceivableInvoiceBusiness; |
| | | import com.ruoyi.cwgl.domain.dto.BillAuditDto; |
| | | import com.ruoyi.cwgl.domain.dto.ReceivableAuditLog; |
| | | import com.ruoyi.cwgl.service.IInvoiceManageService; |
| | | import com.ruoyi.cwgl.service.IReceivableBillManagementLogService; |
| | | import com.ruoyi.cwgl.service.IReceivableBillManagementService; |
| | | import com.ruoyi.cwgl.service.IReceivableInvoiceBusinessService; |
| | | import com.ruoyi.cwgl.service.ITmsAuditLogPushService; |
| | |
| | | |
| | | @Autowired |
| | | private ITmsAuditLogPushService tmsAuditLogPushService; |
| | | |
| | | @Autowired |
| | | private IReceivableBillManagementLogService receivableBillManagementLogService; |
| | | |
| | | |
| | | |
| | |
| | | * 保存应收账单审核日志 |
| | | */ |
| | | private void saveReceivableAuditLog(BillAuditDto billAuditDto, ReceivableBillManagement bill, Integer beforeAuditStatus) { |
| | | // 这里需要实现日志记录逻辑 |
| | | // 可以使用原有的日志服务或系统日志 |
| | | logger.info("应收账单审核日志 - 账单ID:{},账单编号:{},审核前状态:{},审核结果:{},审核意见:{}", |
| | | bill.getId(), bill.getSystemNo(), |
| | | getAuditStatusText(beforeAuditStatus), |
| | | getAuditResultText(billAuditDto.getAuditResult()), |
| | | billAuditDto.getAuditComment() != null ? billAuditDto.getAuditComment() : "无"); |
| | | try { |
| | | ReceivableBillManagementLog log = new ReceivableBillManagementLog(); |
| | | log.setBillId(bill.getId()); |
| | | log.setSourceSystemId(bill.getSourceSystemId()); // 设置来源系统ID |
| | | log.setCreateBy(getUsername()); |
| | | log.setCreateTime(new Date()); |
| | | |
| | | // 构建操作说明 |
| | | String operation = String.format("应收账单审核 - 账单编号:%s,审核前状态:%s,审核结果:%s,审核意见:%s", |
| | | bill.getSystemNo(), |
| | | getAuditStatusText(beforeAuditStatus), |
| | | getAuditResultText(billAuditDto.getAuditResult()), |
| | | billAuditDto.getAuditComment() != null ? billAuditDto.getAuditComment() : "无"); |
| | | log.setOperation(operation); |
| | | |
| | | // 保存到数据库 |
| | | receivableBillManagementLogService.insertReceivableBillManagementLog(log); |
| | | |
| | | logger.info("应收账单审核日志保存成功 - 账单ID:{},来源系统ID:{}", bill.getId(), bill.getSourceSystemId()); |
| | | |
| | | } catch (Exception e) { |
| | | logger.error("保存应收账单审核日志失败,账单ID:{}", bill.getId(), e); |
| | | // 日志保存失败不影响主流程,只记录错误日志 |
| | | } |
| | | } |
| | | |
| | | /** |
| | |
| | | */ |
| | | private ReceivableAuditLog createReceivableAuditLog(BillAuditDto billAuditDto, ReceivableBillManagement bill, Integer beforeAuditStatus) { |
| | | ReceivableAuditLog auditLog = new ReceivableAuditLog(); |
| | | auditLog.setBillId(bill.getId()); |
| | | auditLog.setBillNo(bill.getSystemNo()); |
| | | auditLog.setBillName(bill.getBillName()); |
| | | auditLog.setCustomerName(bill.getCustomerName()); |
| | | auditLog.setSourceSystem(tmsAuditLogPushService.getReceivableBillSourceSystem(bill.getSystemNo())); |
| | | auditLog.setBeforeAuditStatus(beforeAuditStatus); |
| | | auditLog.setAuditResult(billAuditDto.getAuditResult()); |
| | | auditLog.setAuditComment(billAuditDto.getAuditComment()); |
| | | auditLog.setAuditUser(getUsername()); |
| | | auditLog.setAuditTime(new java.util.Date()); |
| | | auditLog.setTotalAmount(bill.getTotalAmount()); |
| | | auditLog.setHeadId(bill.getSourceSystemId()); |
| | | auditLog.setCreateBy(getUsername()); |
| | | auditLog.setCreateTime(new Date()); |
| | | |
| | | String opertion = ""; |
| | | if (billAuditDto.getAuditResult() != null&& billAuditDto.getAuditResult().equals(1)) { |
| | | opertion = "审核通过"; |
| | | if (StringUtils.isNotEmpty(billAuditDto.getAuditComment())){ |
| | | opertion += ",审核意见 :" + billAuditDto.getAuditComment(); |
| | | } |
| | | }else { |
| | | opertion = "审核驳回"; |
| | | if (StringUtils.isNotEmpty(billAuditDto.getAuditComment())){ |
| | | opertion += ",审核意见:" + billAuditDto.getAuditComment(); |
| | | } |
| | | } |
| | | auditLog.setOperation(opertion); |
| | | return auditLog; |
| | | } |
| | | |
| | |
| | | @TableField("audit_status") |
| | | private Integer auditStatus; |
| | | |
| | | /** 来源系统ID(用于审核推送时识别目标TMS系统) */ |
| | | @Excel(name = "来源系统ID") |
| | | |
| | | @TableField("source_system_id") |
| | | private Integer sourceSystemId; |
| | | |
| | | |
| | | /** 备注 */ |
| | | @Excel(name = "备注") |
| | |
| | | @TableField("operation") |
| | | private String operation; |
| | | |
| | | /** 来源系统ID(用于审核推送时识别目标TMS系统) */ |
| | | @Excel(name = "来源系统ID") |
| | | |
| | | @TableField("source_system_id") |
| | | private Integer sourceSystemId; |
| | | |
| | | } |
| | |
| | | @TableField("audit_status") |
| | | private Integer auditStatus; |
| | | |
| | | /** 来源系统ID(用于审核推送时识别目标TMS系统) */ |
| | | @Excel(name = "来源系统ID") |
| | | |
| | | @TableField("source_system_id") |
| | | private Integer sourceSystemId; |
| | | |
| | | |
| | | /** 备注 */ |
| | | @Excel(name = "备注") |
| | |
| | | @TableField("operation") |
| | | private String operation; |
| | | |
| | | /** 来源系统ID(用于审核推送时识别目标TMS系统) */ |
| | | @Excel(name = "来源系统ID") |
| | | |
| | | @TableField("source_system_id") |
| | | private Integer sourceSystemId; |
| | | |
| | | } |
| | |
| | | package com.ruoyi.cwgl.domain.dto; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import lombok.Data; |
| | | import java.util.Date; |
| | | |
| | |
| | | @Data |
| | | public class PayableAuditLog { |
| | | |
| | | /** |
| | | * 账单ID |
| | | */ |
| | | private Integer billId; |
| | | /** 应付账单id */ |
| | | |
| | | /** |
| | | * 账单编号 |
| | | */ |
| | | private String billNo; |
| | | @TableField("head_id") |
| | | private Integer headId; |
| | | |
| | | /** |
| | | * 账单名称 |
| | | */ |
| | | private String billName; |
| | | |
| | | /** |
| | | * 供应商名称 |
| | | */ |
| | | private String supplierName; |
| | | /** 创建者 */ |
| | | private String createBy; |
| | | |
| | | /** |
| | | * 来源系统 |
| | | */ |
| | | private String sourceSystem; |
| | | |
| | | /** |
| | | * 审核前状态 |
| | | */ |
| | | private Integer beforeAuditStatus; |
| | | /** 创建时间 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date createTime; |
| | | |
| | | /** |
| | | * 审核结果 |
| | | */ |
| | | private Integer auditResult; |
| | | |
| | | /** |
| | | * 审核意见 |
| | | */ |
| | | private String auditComment; |
| | | |
| | | /** |
| | | * 审核人 |
| | | */ |
| | | private String auditUser; |
| | | |
| | | /** |
| | | * 审核时间 |
| | | */ |
| | | private Date auditTime; |
| | | |
| | | /** |
| | | * 总金额 |
| | | */ |
| | | private java.math.BigDecimal totalAmount; |
| | | /** 操作说明 */ |
| | | private String operation; |
| | | } |
| | |
| | | |
| | | /** 备注 */ |
| | | private String remark; |
| | | |
| | | /** 来源系统ID(用于审核推送时识别目标TMS系统) */ |
| | | private Integer sourceSystemId; |
| | | } |
| | | |
| | | /** |
| | |
| | | package com.ruoyi.cwgl.domain.dto; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import lombok.Data; |
| | | import java.util.Date; |
| | | |
| | |
| | | @Data |
| | | public class ReceivableAuditLog { |
| | | |
| | | /** |
| | | * 账单ID |
| | | */ |
| | | private Integer billId; |
| | | /** 应收账单id */ |
| | | |
| | | /** |
| | | * 账单编号 |
| | | */ |
| | | private String billNo; |
| | | private Integer headId; |
| | | |
| | | /** |
| | | * 账单名称 |
| | | */ |
| | | private String billName; |
| | | |
| | | /** |
| | | * 客户名称 |
| | | */ |
| | | private String customerName; |
| | | /** 创建者 */ |
| | | private String createBy; |
| | | |
| | | /** |
| | | * 来源系统 |
| | | */ |
| | | private String sourceSystem; |
| | | |
| | | /** |
| | | * 审核前状态 |
| | | */ |
| | | private Integer beforeAuditStatus; |
| | | /** 创建时间 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date createTime; |
| | | |
| | | /** |
| | | * 审核结果 |
| | | */ |
| | | private Integer auditResult; |
| | | |
| | | /** |
| | | * 审核意见 |
| | | */ |
| | | private String auditComment; |
| | | |
| | | /** |
| | | * 审核人 |
| | | */ |
| | | private String auditUser; |
| | | |
| | | /** |
| | | * 审核时间 |
| | | */ |
| | | private Date auditTime; |
| | | |
| | | /** |
| | | * 总金额 |
| | | */ |
| | | private java.math.BigDecimal totalAmount; |
| | | /** 操作说明 */ |
| | | private String operation; |
| | | } |
| | |
| | | |
| | | /** 备注 */ |
| | | private String remark; |
| | | |
| | | /** 来源系统ID(用于审核推送时识别目标TMS系统) */ |
| | | private Integer sourceSystemId; |
| | | } |
| | | |
| | | /** |
| | |
| | | <result property="billDueDate" column="bill_due_date" /> |
| | | <result property="status" column="status" /> |
| | | <result property="auditStatus" column="audit_status" /> |
| | | <result property="sourceSystemId" column="source_system_id" /> |
| | | <result property="remark" column="remark" /> |
| | | <result property="createBy" column="create_by" /> |
| | | <result property="createTime" column="create_time" /> |
| | |
| | | </resultMap> |
| | | |
| | | <sql id="selectPayableBillManagementVo"> |
| | | select thisTab.id, thisTab.system_no, thisTab.bill_name, thisTab.supplier_name, thisTab.is_internal_settlement, thisTab.internal_settlement_unit, thisTab.document_count, thisTab.total_amount, thisTab.currency, thisTab.discount_amount, thisTab.paid_amount, thisTab.pending_amount, thisTab.exchange_rate, thisTab.cny_amount, thisTab.period_type, thisTab.business_start_date, thisTab.business_end_date, thisTab.billing_start_date, thisTab.billing_end_date, thisTab.bill_generate_date, thisTab.bill_send_date, thisTab.bill_due_date, thisTab.status, thisTab.audit_status, thisTab.remark, thisTab.create_by, thisTab.create_time, thisTab.update_by, thisTab.update_time, thisTab.deleted from payable_bill_management AS thisTab |
| | | select thisTab.id, thisTab.system_no, thisTab.bill_name, thisTab.supplier_name, thisTab.is_internal_settlement, thisTab.internal_settlement_unit, thisTab.document_count, thisTab.total_amount, thisTab.currency, thisTab.discount_amount, thisTab.paid_amount, thisTab.pending_amount, thisTab.exchange_rate, thisTab.cny_amount, thisTab.period_type, thisTab.business_start_date, thisTab.business_end_date, thisTab.billing_start_date, thisTab.billing_end_date, thisTab.bill_generate_date, thisTab.bill_send_date, thisTab.bill_due_date, thisTab.status, thisTab.audit_status, thisTab.source_system_id, thisTab.remark, thisTab.create_by, thisTab.create_time, thisTab.update_by, thisTab.update_time, thisTab.deleted from payable_bill_management AS thisTab |
| | | </sql> |
| | | <sql id="selectPayableBillManagementVoCount"> |
| | | select count(0) from payable_bill_management as thisTab |
| | |
| | | <if test="billDueDate != null">bill_due_date,</if> |
| | | <if test="status != null">status,</if> |
| | | <if test="auditStatus != null">audit_status,</if> |
| | | <if test="sourceSystemId != null">source_system_id,</if> |
| | | <if test="remark != null">remark,</if> |
| | | <if test="createBy != null">create_by,</if> |
| | | <if test="createTime != null">create_time,</if> |
| | |
| | | <if test="billDueDate != null">#{billDueDate},</if> |
| | | <if test="status != null">#{status},</if> |
| | | <if test="auditStatus != null">#{auditStatus},</if> |
| | | <if test="sourceSystemId != null">#{sourceSystemId},</if> |
| | | <if test="remark != null">#{remark},</if> |
| | | <if test="createBy != null">#{createBy},</if> |
| | | <if test="createTime != null">#{createTime},</if> |
| | |
| | | <insert id="insertPayableBillManagementBatch" parameterType="java.util.List" useGeneratedKeys="true" keyProperty="id"> |
| | | insert into payable_bill_management |
| | | <trim prefix="(" suffix=") values" suffixOverrides=","> |
| | | id,system_no,bill_name,supplier_name,is_internal_settlement,internal_settlement_unit,document_count,total_amount,currency,discount_amount,paid_amount,pending_amount,exchange_rate,cny_amount,period_type,business_start_date,business_end_date,billing_start_date,billing_end_date,bill_generate_date,bill_send_date,bill_due_date,status,audit_status,remark,create_by,create_time,update_by,update_time,deleted, |
| | | id,system_no,bill_name,supplier_name,is_internal_settlement,internal_settlement_unit,document_count,total_amount,currency,discount_amount,paid_amount,pending_amount,exchange_rate,cny_amount,period_type,business_start_date,business_end_date,billing_start_date,billing_end_date,bill_generate_date,bill_send_date,bill_due_date,status,audit_status,source_system_id,remark,create_by,create_time,update_by,update_time,deleted, |
| | | </trim> |
| | | <foreach item="item" index="index" collection="list" separator=","> |
| | | <trim prefix="(" suffix=") " suffixOverrides=","> |
| | | #{item.id},#{item.systemNo},#{item.billName},#{item.supplierName},#{item.isInternalSettlement},#{item.internalSettlementUnit},#{item.documentCount},#{item.totalAmount},#{item.currency},#{item.discountAmount},#{item.paidAmount},#{item.pendingAmount},#{item.exchangeRate},#{item.cnyAmount},#{item.periodType},#{item.businessStartDate},#{item.businessEndDate},#{item.billingStartDate},#{item.billingEndDate},#{item.billGenerateDate},#{item.billSendDate},#{item.billDueDate},#{item.status},#{item.auditStatus},#{item.remark},#{item.createBy},#{item.createTime},#{item.updateBy},#{item.updateTime},#{item.deleted}, |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | #{item.id},#{item.systemNo},#{item.billName},#{item.supplierName},#{item.isInternalSettlement},#{item.internalSettlementUnit},#{item.documentCount},#{item.totalAmount},#{item.currency},#{item.discountAmount},#{item.paidAmount},#{item.pendingAmount},#{item.exchangeRate},#{item.cnyAmount},#{item.periodType},#{item.businessStartDate},#{item.businessEndDate},#{item.billingStartDate},#{item.billingEndDate},#{item.billGenerateDate},#{item.billSendDate},#{item.billDueDate},#{item.status},#{item.auditStatus},#{item.sourceSystemId},#{item.remark},#{item.createBy},#{item.createTime},#{item.updateBy},#{item.updateTime},#{item.deleted}, |
| | | </trim> |
| | | </foreach> |
| | | </insert> |
| | |
| | | <if test="billDueDate != null">bill_due_date = #{billDueDate},</if> |
| | | <if test="status != null">status = #{status},</if> |
| | | <if test="auditStatus != null">audit_status = #{auditStatus},</if> |
| | | <if test="sourceSystemId != null">source_system_id = #{sourceSystemId},</if> |
| | | <if test="remark != null">remark = #{remark},</if> |
| | | <if test="createBy != null">create_by = #{createBy},</if> |
| | | <if test="createTime != null">create_time = #{createTime},</if> |
| | |
| | | <if test="item.billSendDate != null">bill_send_date = #{item.billSendDate},</if> |
| | | <if test="item.billDueDate != null">bill_due_date = #{item.billDueDate},</if> |
| | | <if test="item.status != null">status = #{item.status},</if> |
| | | <if test="item.auditStatus != null">audit_status = #{item.auditStatus},</if> |
| | | <if test="item.sourceSystemId != null">source_system_id = #{item.sourceSystemId},</if> |
| | | <if test="item.remark != null">remark = #{item.remark},</if> |
| | | <if test="item.createBy != null">create_by = #{item.createBy},</if> |
| | | <if test="item.createTime != null">create_time = #{item.createTime},</if> |
| | |
| | | <result property="overdueInterest" column="overdue_interest" /> |
| | | <result property="status" column="status" /> |
| | | <result property="auditStatus" column="audit_status" /> |
| | | <result property="sourceSystemId" column="source_system_id" /> |
| | | <result property="remark" column="remark" /> |
| | | <result property="createBy" column="create_by" /> |
| | | <result property="createTime" column="create_time" /> |
| | |
| | | </resultMap> |
| | | |
| | | <sql id="selectReceivableBillManagementVo"> |
| | | select thisTab.id, thisTab.system_no, thisTab.bill_name, thisTab.customer_name, thisTab.payee, thisTab.responsible_person, thisTab.responsible_leader, thisTab.settlement_method, thisTab.business_type, thisTab.promotion_requirement, thisTab.is_internal_settlement, thisTab.internal_settlement_unit, thisTab.document_count, thisTab.total_amount, thisTab.currency, thisTab.discount_amount, thisTab.received_amount, thisTab.pending_amount, thisTab.exchange_rate, thisTab.cny_amount, thisTab.period_type, thisTab.business_start_date, thisTab.business_end_date, thisTab.billing_start_date, thisTab.billing_end_date, thisTab.bill_generate_date, thisTab.bill_send_date, thisTab.bill_due_date, thisTab.due_in_30_days, thisTab.overdue_amount, thisTab.overdue_1_to_30_days, thisTab.overdue_31_to_60_days, thisTab.overdue_61_to_90_days, thisTab.overdue_91_to_180_days, thisTab.overdue_181_to_365_days, thisTab.overdue_over_1_year, thisTab.overdue_days, thisTab.settlement_category, thisTab.settlement_period, thisTab.nc_settlement_date, thisTab.nc_settlement_amount, thisTab.account_remark, thisTab.overdue_interest, thisTab.status, thisTab.audit_status, thisTab.remark, thisTab.create_by, thisTab.create_time, thisTab.update_by, thisTab.update_time, thisTab.deleted from receivable_bill_management AS thisTab |
| | | select thisTab.id, thisTab.system_no, thisTab.bill_name, thisTab.customer_name, thisTab.payee, thisTab.responsible_person, thisTab.responsible_leader, thisTab.settlement_method, thisTab.business_type, thisTab.promotion_requirement, thisTab.is_internal_settlement, thisTab.internal_settlement_unit, thisTab.document_count, thisTab.total_amount, thisTab.currency, thisTab.discount_amount, thisTab.received_amount, thisTab.pending_amount, thisTab.exchange_rate, thisTab.cny_amount, thisTab.period_type, thisTab.business_start_date, thisTab.business_end_date, thisTab.billing_start_date, thisTab.billing_end_date, thisTab.bill_generate_date, thisTab.bill_send_date, thisTab.bill_due_date, thisTab.due_in_30_days, thisTab.overdue_amount, thisTab.overdue_1_to_30_days, thisTab.overdue_31_to_60_days, thisTab.overdue_61_to_90_days, thisTab.overdue_91_to_180_days, thisTab.overdue_181_to_365_days, thisTab.overdue_over_1_year, thisTab.overdue_days, thisTab.settlement_category, thisTab.settlement_period, thisTab.nc_settlement_date, thisTab.nc_settlement_amount, thisTab.account_remark, thisTab.overdue_interest, thisTab.status, thisTab.audit_status, thisTab.source_system_id, thisTab.remark, thisTab.create_by, thisTab.create_time, thisTab.update_by, thisTab.update_time, thisTab.deleted from receivable_bill_management AS thisTab |
| | | </sql> |
| | | <sql id="selectReceivableBillManagementVoCount"> |
| | | select count(0) from receivable_bill_management as thisTab |
| | |
| | | <if test="overdueInterest != null">overdue_interest,</if> |
| | | <if test="status != null">status,</if> |
| | | <if test="auditStatus != null">audit_status,</if> |
| | | <if test="sourceSystemId != null">source_system_id,</if> |
| | | <if test="remark != null">remark,</if> |
| | | <if test="createBy != null">create_by,</if> |
| | | <if test="createTime != null">create_time,</if> |
| | |
| | | <if test="overdueInterest != null">#{overdueInterest},</if> |
| | | <if test="status != null">#{status},</if> |
| | | <if test="auditStatus != null">#{auditStatus},</if> |
| | | <if test="sourceSystemId != null">#{sourceSystemId},</if> |
| | | <if test="remark != null">#{remark},</if> |
| | | <if test="createBy != null">#{createBy},</if> |
| | | <if test="createTime != null">#{createTime},</if> |
| | |
| | | <insert id="insertReceivableBillManagementBatch" parameterType="java.util.List" useGeneratedKeys="true" keyProperty="id"> |
| | | insert into receivable_bill_management |
| | | <trim prefix="(" suffix=") values" suffixOverrides=","> |
| | | system_no,bill_name,customer_name,payee,responsible_person,responsible_leader,settlement_method,business_type,promotion_requirement,is_internal_settlement,internal_settlement_unit,document_count,total_amount,currency,discount_amount,received_amount,pending_amount,exchange_rate,cny_amount,period_type,business_start_date,business_end_date,billing_start_date,billing_end_date,bill_generate_date,bill_send_date,bill_due_date,settlement_category,settlement_period,nc_settlement_date,nc_settlement_amount,account_remark,overdue_interest,status,audit_status,remark,create_by,create_time,update_by,update_time,deleted, |
| | | system_no,bill_name,customer_name,payee,responsible_person,responsible_leader,settlement_method,business_type,promotion_requirement,is_internal_settlement,internal_settlement_unit,document_count,total_amount,currency,discount_amount,received_amount,pending_amount,exchange_rate,cny_amount,period_type,business_start_date,business_end_date,billing_start_date,billing_end_date,bill_generate_date,bill_send_date,bill_due_date,settlement_category,settlement_period,nc_settlement_date,nc_settlement_amount,account_remark,overdue_interest,status,audit_status,source_system_id,remark,create_by,create_time,update_by,update_time,deleted, |
| | | </trim> |
| | | <foreach item="item" index="index" collection="list" separator=","> |
| | | <trim prefix="(" suffix=") " suffixOverrides=","> |
| | | #{item.systemNo},#{item.billName},#{item.customerName},#{item.payee},#{item.responsiblePerson},#{item.responsibleLeader},#{item.settlementMethod},#{item.businessType},#{item.promotionRequirement},#{item.isInternalSettlement},#{item.internalSettlementUnit},#{item.documentCount},#{item.totalAmount},#{item.currency},#{item.discountAmount},#{item.receivedAmount},#{item.pendingAmount},#{item.exchangeRate},#{item.cnyAmount},#{item.periodType},#{item.businessStartDate},#{item.businessEndDate},#{item.billingStartDate},#{item.billingEndDate},#{item.billGenerateDate},#{item.billSendDate},#{item.billDueDate},#{item.settlementCategory},#{item.settlementPeriod},#{item.ncSettlementDate},#{item.ncSettlementAmount},#{item.accountRemark},#{item.overdueInterest},#{item.status},#{item.auditStatus},#{item.remark},#{item.createBy},#{item.createTime},#{item.updateBy},#{item.updateTime},#{item.deleted}, |
| | | #{item.systemNo},#{item.billName},#{item.customerName},#{item.payee},#{item.responsiblePerson},#{item.responsibleLeader},#{item.settlementMethod},#{item.businessType},#{item.promotionRequirement},#{item.isInternalSettlement},#{item.internalSettlementUnit},#{item.documentCount},#{item.totalAmount},#{item.currency},#{item.discountAmount},#{item.receivedAmount},#{item.pendingAmount},#{item.exchangeRate},#{item.cnyAmount},#{item.periodType},#{item.businessStartDate},#{item.businessEndDate},#{item.billingStartDate},#{item.billingEndDate},#{item.billGenerateDate},#{item.billSendDate},#{item.billDueDate},#{item.settlementCategory},#{item.settlementPeriod},#{item.ncSettlementDate},#{item.ncSettlementAmount},#{item.accountRemark},#{item.overdueInterest},#{item.status},#{item.auditStatus},#{item.sourceSystemId},#{item.remark},#{item.createBy},#{item.createTime},#{item.updateBy},#{item.updateTime},#{item.deleted}, |
| | | </trim> |
| | | </foreach> |
| | | </insert> |
| | |
| | | <if test="overdueInterest != null">overdue_interest = #{overdueInterest},</if> |
| | | <if test="status != null">status = #{status},</if> |
| | | <if test="auditStatus != null">audit_status = #{auditStatus},</if> |
| | | <if test="sourceSystemId != null">source_system_id = #{sourceSystemId},</if> |
| | | <if test="remark != null">remark = #{remark},</if> |
| | | <if test="createBy != null">create_by = #{createBy},</if> |
| | | <if test="createTime != null">create_time = #{createTime},</if> |
| | |
| | | <if test="item.overdueInterest != null">overdue_interest = #{item.overdueInterest},</if> |
| | | <if test="item.status != null">status = #{item.status},</if> |
| | | <if test="item.auditStatus != null">audit_status = #{item.auditStatus},</if> |
| | | <if test="item.sourceSystemId != null">source_system_id = #{item.sourceSystemId},</if> |
| | | <if test="item.remark != null">remark = #{item.remark},</if> |
| | | <if test="item.createBy != null">create_by = #{item.createBy},</if> |
| | | <if test="item.createTime != null">create_time = #{item.createTime},</if> |