eight
2024-08-28 2bc74ebfec4a30beddc66fd55be4947e5f7cf498
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
import request from '@/config/axios'
 
// ERP 采购全局统计 VO
export interface ErpPurchaseSummaryRespVO {
  todayPrice: number // 今日采购金额
  yesterdayPrice: number // 昨日采购金额
  monthPrice: number // 本月采购金额
  yearPrice: number // 今年采购金额
}
 
// ERP 采购时间段统计 VO
export interface ErpPurchaseTimeSummaryRespVO {
  time: string // 时间
  price: number // 采购金额
}
 
// ERP 采购统计 API
export const PurchaseStatisticsApi = {
  // 获得采购统计
  getPurchaseSummary: async (): Promise<ErpPurchaseSummaryRespVO> => {
    return await request.get({ url: `/erp/purchase-statistics/summary` })
  },
 
  // 获得采购时间段统计
  getPurchaseTimeSummary: async (): Promise<ErpPurchaseTimeSummaryRespVO[]> => {
    return await request.get({ url: `/erp/purchase-statistics/time-summary` })
  }
}