This commit is contained in:
van
2026-05-19 23:15:08 +08:00
parent a82ae229b3
commit 17c32fa1c3
2 changed files with 126 additions and 4 deletions

View File

@@ -35,6 +35,11 @@ export function listGoofishOrder(query) {
return request({ url: '/jarvis/erpGoofishOrder/list', method: 'get', params: query })
}
/** 日日顺 + 已关联京东:已出库(去重运单等)/待出库 统计,供列表右侧展示 */
export function getGoofishRrsLogisticsStats() {
return request({ url: '/jarvis/erpGoofishOrder/stats/rrsLogistics', method: 'get' })
}
export function getGoofishOrder(id) {
return request({ url: '/jarvis/erpGoofishOrder/' + id, method: 'get' })
}