5 天以前 d3a5c4420a7daf89bc9832f22ca8ed9d7e1adaf9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.ruoyi.sales.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.sales.dto.SalesLedgerProductDto;
import com.ruoyi.sales.dto.ShippingInfoDto;
import com.ruoyi.sales.pojo.ShippingInfo;
 
import java.io.IOException;
import java.math.BigDecimal;
import java.util.List;
import java.util.Map;
 
/**
 * @author :yys
 * @date : 2025/10/22 9:33
 */
public interface ShippingInfoService extends IService<ShippingInfo>{
    IPage<ShippingInfoDto> listPage(Page page, ShippingInfo req);
 
    boolean deductStock(ShippingInfoDto req) throws IOException;
 
    boolean delete(List<Long> ids);
 
    List<ShippingInfo> getShippingInfoByCustomerName(String customerName);
 
    List<SalesLedgerProductDto> getReturnManagementDtoById(Long id);
 
    Map<String ,BigDecimal> getNumberOfSalesLedgerProduct(Long id);
 
    ShippingInfoDto getDateil(Long id);
}