1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package cn.iocoder.yudao.module.erp.service.statistics;
|
| import java.math.BigDecimal;
| import java.time.LocalDateTime;
|
| /**
| * ERP 采购统计 Service 接口
| *
| * @author 芋道源码
| */
| public interface ErpPurchaseStatisticsService {
|
| /**
| * 获得采购金额
| *
| * 计算逻辑:采购出库的金额 - 采购退货的金额
| *
| * @param beginTime >= 开始时间
| * @param endTime < 结束时间
| * @return 采购金额
| */
| BigDecimal getPurchasePrice(LocalDateTime beginTime, LocalDateTime endTime);
|
| }
|
|