| | |
| | | import java.util.List; |
| | | import com.ruoyi.cwgl.domain.PendingSettlementBusiness; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.cwgl.domain.ReceivableLineTruckPriceRule; |
| | | import com.ruoyi.cwgl.domain.vo.CreateBillVo; |
| | | |
| | | /** |
| | | * 待入账业务Service接口 |
| | | * |
| | |
| | | * @return 结果 |
| | | */ |
| | | public int deletePendingSettlementBusinessById(Integer id); |
| | | |
| | | /** |
| | | * 新增待入账数据 |
| | | */ |
| | | void insertPendingSettlement(List<PendingSettlementBusiness> pendingSettlementBusinesses ); |
| | | |
| | | /** |
| | | * 查询财务库入账数据 |
| | | * @return |
| | | */ |
| | | List<PendingSettlementBusiness> selectPendingSettlement2Cw(); |
| | | |
| | | /** |
| | | * 修改财务数据库数据为已同步 |
| | | * @param ids |
| | | * @return |
| | | */ |
| | | int updateCwData(Integer [] ids); |
| | | |
| | | /** |
| | | * 应收线路整车价格 |
| | | * @return |
| | | */ |
| | | List<ReceivableLineTruckPriceRule> selectReceivableLineTruckPriceRule(); |
| | | /** |
| | | * 应付线路整车价格 |
| | | * @return |
| | | */ |
| | | List<ReceivableLineTruckPriceRule> selectPayableLineTruckPriceRule(); |
| | | |
| | | CreateBillVo billIds(Integer[] ids); |
| | | |
| | | int createBillIds(Integer[] ids, CreateBillVo createBillVo); |
| | | |
| | | CreateBillVo billList(PendingSettlementBusiness pendingSettlementBusiness); |
| | | |
| | | int createBillList(PendingSettlementBusiness pendingSettlementBusiness); |
| | | |
| | | List<String> selectCustomName(); |
| | | |
| | | int updeteCwData(Integer[] ids); |
| | | } |