package nc.itf.arap.payablebill;import nc.vo.pub.AggregatedValueObject;import nc.vo.pub.BusinessException;/** * 应付单管理审批弃审中间表数据操作接口 * @author 陈志锋 * 2015-12-25 */public interface IPayablebillItf { /** * 应付单审批通过后回写中间表数据 * @param aggvo * @return * @throws BusinessException */ public Boolean insertInfoMiddle(AggregatedValueObject aggvo)throws BusinessException; /** * 应付单弃审后中间表数据删除 * @param billPk * @return * @throws BusinessException */ public Boolean deteleInfoMiddle(String billPk)throws BusinessException; /** * 根据应付单主键获取单据状态 * @param pk_payablebill * @return * @throws BusinessException */ public String getPayableStatue(String pk_payablebill)throws BusinessException;}