Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
M
mini-wms
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Members
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
周海峰
mini-wms
Commits
7103082c
Commit
7103082c
authored
Dec 04, 2025
by
yubin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
inventory
parent
c5a04317
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
61 行增加
和
0 行删除
+61
-0
ruoyi-admin-vue/src/api/inventory/inventory.js
+61
-0
ruoyi-admin-vue/src/components/materialsSeletor.vue
+0
-0
ruoyi-admin-vue/src/views/inventory/orders/OutboundOrderFormWithItems.vue
+0
-0
没有找到文件。
ruoyi-admin-vue/src/api/inventory/inventory.js
0 → 100644
View file @
7103082c
import
request
from
'@/utils/request'
// 查询库存列表
export
function
listInventory
(
query
)
{
return
request
({
url
:
'/inventory/inventory/list'
,
method
:
'get'
,
params
:
query
})
}
// 查询库存详细
export
function
getInventory
(
id
)
{
return
request
({
url
:
'/inventory/inventory/'
+
id
,
method
:
'get'
})
}
// 新增库存
export
function
addInventory
(
data
)
{
return
request
({
url
:
'/inventory/inventory'
,
method
:
'post'
,
data
:
data
})
}
// 修改库存
export
function
updateInventory
(
data
)
{
return
request
({
url
:
'/inventory/inventory'
,
method
:
'put'
,
data
:
data
})
}
// 删除库存
export
function
delInventory
(
id
)
{
return
request
({
url
:
'/inventory/inventory/'
+
id
,
method
:
'delete'
})
}
// 批量删除库存
export
function
delInventoryByIds
(
ids
)
{
return
request
({
url
:
'/inventory/inventory/'
+
ids
,
method
:
'delete'
})
}
// 根据物料ID查询库存
export
function
listInventoryByMaterialId
(
materialId
)
{
return
request
({
url
:
'/inventory/inventory/listByMaterialId'
,
method
:
'get'
,
params
:
{
materialId
:
materialId
}
})
}
ruoyi-admin-vue/src/components/materialsSeletor.vue
0 → 100644
View file @
7103082c
差异被折叠。
点击展开。
ruoyi-admin-vue/src/views/inventory/orders/OutboundOrderFormWithItems.vue
0 → 100644
View file @
7103082c
差异被折叠。
点击展开。
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论