| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.ruoyi.sales.dto.InvoiceLedgerDto; |
| | | import com.ruoyi.sales.dto.InvoiceRegistrationProductDto; |
| | | import com.ruoyi.sales.pojo.InvoiceLedger; |
| | | import com.ruoyi.sales.pojo.InvoiceRegistrationProduct; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | |
| | | * @param invoiceLedgerDto |
| | | * @return |
| | | */ |
| | | IPage<InvoiceLedgerDto> invoiceLedgerSalesAccount(Page page, InvoiceLedgerDto invoiceLedgerDto); |
| | | IPage<InvoiceLedgerDto> invoiceLedgerSalesAccount(Page page,@Param("invoiceLedgerDto") InvoiceLedgerDto invoiceLedgerDto); |
| | | |
| | | /** |
| | | * 产品开票台账详情 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | InvoiceRegistrationProductDto invoiceLedgerProductInfo(Integer id); |
| | | |
| | | /** |
| | | * 根据销售合同计算已开票金额 |
| | | * @param salesLedgerIds |
| | | * @return |
| | | */ |
| | | List<InvoiceLedgerDto> invoicedTotal(List<Long> salesLedgerIds); |
| | | |
| | | } |