|
@@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
import org.apache.ibatis.annotations.Param;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
+import org.jeecg.modules.saleCode.entity.SaleQuotation;
|
|
import org.jeecg.modules.saleCode.entity.SaleQuotationProduct;
|
|
import org.jeecg.modules.saleCode.entity.SaleQuotationProduct;
|
|
import org.jeecg.modules.saleCode.mapper.SaleQuotationProductMapper;
|
|
import org.jeecg.modules.saleCode.mapper.SaleQuotationProductMapper;
|
|
import org.jeecg.modules.saleCode.service.ISaleQuotationProductService;
|
|
import org.jeecg.modules.saleCode.service.ISaleQuotationProductService;
|
|
@@ -32,6 +33,11 @@ public class SaleQuotationProductServiceImpl extends ServiceImpl<SaleQuotationPr
|
|
return saleQuotationProductMapper.selectByMainId(mainId);
|
|
return saleQuotationProductMapper.selectByMainId(mainId);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public List<SaleQuotation> selectHisByInfo(String quotationCustomer, String productId) {
|
|
|
|
+ return saleQuotationProductMapper.selectHisByInfo(quotationCustomer,productId);
|
|
|
|
+ }
|
|
|
|
+
|
|
@Override
|
|
@Override
|
|
public IPage<SaleQuotationAlert> saleQuotationDetailsAlert(Page<SaleQuotationAlert> page, QueryWrapper<SaleQuotationAlert> queryWrapper) {
|
|
public IPage<SaleQuotationAlert> saleQuotationDetailsAlert(Page<SaleQuotationAlert> page, QueryWrapper<SaleQuotationAlert> queryWrapper) {
|
|
return saleQuotationProductMapper.saleQuotationDetailsAlert(page, queryWrapper);
|
|
return saleQuotationProductMapper.saleQuotationDetailsAlert(page, queryWrapper);
|