fix:客户管理增加“产品清单”和“销售记录”功能
This commit is contained in:
@@ -50,3 +50,19 @@ export function execute(salseId) {
|
||||
method: 'put'
|
||||
})
|
||||
}
|
||||
|
||||
// 根据客户 id 查询销售产品信息
|
||||
export function getItem(clientId) {
|
||||
return request({
|
||||
url: '/mes/wm/productsalse/getItem/' + clientId,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 根据客户 id 查询销售订单信息
|
||||
export function getSaleRecord(clientId) {
|
||||
return request({
|
||||
url: '/mes/wm/productsalse/getSaleRecord/' + clientId,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user