| | |
| | | import com.ruoyi.tms.domain.TmsArBillItem; |
| | | import com.ruoyi.tms.service.ITmsArBillItemService; |
| | | import com.ruoyi.common.core.text.Convert; |
| | | import com.ruoyi.tms.domain.ReceivableAuditLog; |
| | | import com.ruoyi.tms.service.IReceivableAuditLogService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | |
| | | /** |
| | | * 应收账单明细Service业务层处理 |
| | |
| | | protected final Logger logger = LoggerFactory.getLogger(getClass()); |
| | | @Resource |
| | | private TmsArBillItemMapper tmsArBillItemMapper; |
| | | |
| | | @Autowired |
| | | private IReceivableAuditLogService receivableAuditLogService; |
| | | |
| | | |
| | | /** |
| | |
| | | { |
| | | return tmsArBillItemMapper.deleteTmsArBillItemById(id); |
| | | } |
| | | |
| | | /** |
| | | * 添加应收账单审核日志 |
| | | * |
| | | * @param auditLog 审核日志 |
| | | * @return 结果 |
| | | */ |
| | | public int addArBillAuditLog(ReceivableAuditLog auditLog) { |
| | | return receivableAuditLogService.insertReceivableAuditLog(auditLog); |
| | | } |
| | | } |