Commit 89bee94e authored by 王飞龙's avatar 王飞龙

库存管理 药品和出库table页

parent 708f41d7
...@@ -41,7 +41,7 @@ export function getDrug(id) { ...@@ -41,7 +41,7 @@ export function getDrug(id) {
// 查询药品入库存信息 // 查询药品入库存信息
export function getDrugInventory(query) { export function getDrugInventory(query) {
return request({ return request({
url: '/finance/stock/drug/detail/listAllByDrugId', url: '/finance/stock/drug/detail/list',
method: 'get', method: 'get',
params: query params: query
}) })
...@@ -53,11 +53,13 @@ export function getDrugInventoryDetail(id) { ...@@ -53,11 +53,13 @@ export function getDrugInventoryDetail(id) {
method: 'get' method: 'get'
}) })
} }
// // 查询药品库存信息
// export function getDrugInventory1(drugId) { // 详情药品入库
// return request({ export function addQty(data) {
// url: '/finance/stock/drug/detail/listAllByDrugId', return request({
// method: 'get', url: '/finance/stock/drug/manage/addQty',
// }) method: 'post',
// } data: data
})
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment