| | |
| | | import com.ruoyi.sales.pojo.SalesQuotation; |
| | | import com.ruoyi.sales.vo.CustomerTransactionsDetailsVo; |
| | | import com.ruoyi.sales.vo.CustomerTransactionsVo; |
| | | import com.ruoyi.sales.vo.ProjectTransactionsVo; |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.BeanUtils; |
| | |
| | | } |
| | | |
| | | @Override |
| | | public IPage<CustomerTransactionsVo> customewTransactions(Page page, String customerName) { |
| | | return customerMapper.customewTransactions(page, customerName); |
| | | public IPage<ProjectTransactionsVo> projectTransactions(Page page, String projectName, String customerName, String contractName) { |
| | | return customerMapper.projectTransactions(page, projectName, customerName, contractName); |
| | | } |
| | | |
| | | @Override |
| | | public IPage<CustomerTransactionsDetailsVo> customewTransactionsDetails(Page page, Long customerId) { |
| | | return customerMapper.customewTransactionsDetails(page, customerId); |
| | | public IPage<CustomerTransactionsVo> customewTransactions(Page page, Long projectId, String customerName, String contractName) { |
| | | return customerMapper.customewTransactions(page, projectId, customerName, contractName); |
| | | } |
| | | |
| | | @Override |
| | | public IPage<CustomerTransactionsDetailsVo> customewTransactionsDetails(Page page, Long projectId, Long customerId, String contractName) { |
| | | return customerMapper.customewTransactionsDetails(page, projectId, customerId, contractName); |
| | | } |
| | | |
| | | @Override |
| | | public Map<String, Object> transactionsSummary() { |
| | | return customerMapper.transactionsSummary(); |
| | | } |
| | | |
| | | /** |