Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
admin
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
6d9ca290
authored
Feb 05, 2024
by
YunaiV
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
✨
ERP:完成 stock 仓库信息的实现
parent
36a03302
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
468 additions
and
44 deletions
+468
-44
src/api/erp/product/category/index.ts
+6
-12
src/api/erp/product/index.ts
+13
-26
src/api/erp/product/unit/index.ts
+3
-6
src/api/erp/stock/warehouse/index.ts
+59
-0
src/views/erp/stock/warehouse/WarehouseForm.vue
+157
-0
src/views/erp/stock/warehouse/index.vue
+230
-0
No files found.
src/api/erp/product/category/index.ts
View file @
6d9ca290
...
@@ -2,18 +2,12 @@ import request from '@/config/axios'
...
@@ -2,18 +2,12 @@ import request from '@/config/axios'
// ERP 商品分类 VO
// ERP 商品分类 VO
export
interface
ProductCategoryVO
{
export
interface
ProductCategoryVO
{
// 分类编号
id
:
number
// 分类编号
id
:
number
parentId
:
number
// 父分类编号
// 父分类编号
name
:
string
// 分类名称
parentId
:
number
code
:
string
// 分类编码
// 分类名称
sort
:
number
// 分类排序
name
:
string
status
:
number
// 开启状态
// 分类编码
code
:
string
// 分类排序
sort
:
number
// 开启状态
status
:
number
}
}
// ERP 商品分类 API
// ERP 商品分类 API
...
...
src/api/erp/product/index.ts
View file @
6d9ca290
...
@@ -2,32 +2,19 @@ import request from '@/config/axios'
...
@@ -2,32 +2,19 @@ import request from '@/config/axios'
// ERP 产品 VO
// ERP 产品 VO
export
interface
ProductVO
{
export
interface
ProductVO
{
// 产品编号
id
:
number
// 产品编号
id
:
number
name
:
string
// 产品名称
// 产品名称
barCode
:
string
// 产品条码
name
:
string
categoryId
:
number
// 产品类型编号
// 产品条码
unitId
:
number
// 单位编号
barCode
:
string
status
:
number
// 产品状态
// 产品类型编号
standard
:
string
// 产品规格
categoryId
:
number
remark
:
string
// 产品备注
// 单位编号
expiryDay
:
number
// 保质期天数
unitId
:
number
weight
:
number
// 重量(kg)
// 产品状态
purchasePrice
:
number
// 采购价格,单位:元
status
:
number
salePrice
:
number
// 销售价格,单位:元
// 产品规格
minPrice
:
number
// 最低价格,单位:元
standard
:
string
// 产品备注
remark
:
string
// 保质期天数
expiryDay
:
number
// 基础重量(kg)
weight
:
number
// 采购价格,单位:元
purchasePrice
:
number
// 销售价格,单位:元
salePrice
:
number
// 最低价格,单位:元
minPrice
:
number
}
}
// ERP 产品 API
// ERP 产品 API
...
...
src/api/erp/product/unit/index.ts
View file @
6d9ca290
...
@@ -2,12 +2,9 @@ import request from '@/config/axios'
...
@@ -2,12 +2,9 @@ import request from '@/config/axios'
// ERP 产品单位 VO
// ERP 产品单位 VO
export
interface
ProductUnitVO
{
export
interface
ProductUnitVO
{
// 单位编号
id
:
number
// 单位编号
id
:
number
name
:
string
// 单位名字
// 单位名字
status
:
number
// 单位状态
name
:
string
// 单位状态
status
:
number
}
}
// ERP 产品单位 API
// ERP 产品单位 API
...
...
src/api/erp/stock/warehouse/index.ts
0 → 100644
View file @
6d9ca290
import
request
from
'@/config/axios'
// ERP 仓库 VO
export
interface
WarehouseVO
{
id
:
number
// 仓库编号
name
:
string
// 仓库名称
address
:
string
// 仓库地址
sort
:
number
// 排序
remark
:
string
// 备注
principal
:
string
// 负责人
warehousePrice
:
number
// 仓储费,单位:元
truckagePrice
:
number
// 搬运费,单位:元
status
:
number
// 开启状态
defaultStatus
:
boolean
// 是否默认
}
// ERP 仓库 API
export
const
WarehouseApi
=
{
// 查询仓库分页
getWarehousePage
:
async
(
params
:
any
)
=>
{
return
await
request
.
get
({
url
:
`/erp/warehouse/page`
,
params
})
},
// 查询仓库详情
getWarehouse
:
async
(
id
:
number
)
=>
{
return
await
request
.
get
({
url
:
`/erp/warehouse/get?id=`
+
id
})
},
// 新增仓库
createWarehouse
:
async
(
data
:
WarehouseVO
)
=>
{
return
await
request
.
post
({
url
:
`/erp/warehouse/create`
,
data
})
},
// 修改仓库
updateWarehouse
:
async
(
data
:
WarehouseVO
)
=>
{
return
await
request
.
put
({
url
:
`/erp/warehouse/update`
,
data
})
},
// 修改仓库默认状态
updateWarehouseDefaultStatus
:
async
(
id
:
number
,
defaultStatus
:
boolean
)
=>
{
return
await
request
.
put
({
url
:
`/erp/warehouse/update-default-status`
,
params
:
{
id
,
defaultStatus
}
})
},
// 删除仓库
deleteWarehouse
:
async
(
id
:
number
)
=>
{
return
await
request
.
delete
({
url
:
`/erp/warehouse/delete?id=`
+
id
})
},
// 导出仓库 Excel
exportWarehouse
:
async
(
params
)
=>
{
return
await
request
.
download
({
url
:
`/erp/warehouse/export-excel`
,
params
})
}
}
src/views/erp/stock/warehouse/WarehouseForm.vue
0 → 100644
View file @
6d9ca290
<!-- ERP 仓库表单 -->
<
template
>
<Dialog
:title=
"dialogTitle"
v-model=
"dialogVisible"
>
<el-form
ref=
"formRef"
:model=
"formData"
:rules=
"formRules"
label-width=
"100px"
v-loading=
"formLoading"
>
<el-form-item
label=
"仓库名称"
prop=
"name"
>
<el-input
v-model=
"formData.name"
placeholder=
"请输入仓库名称"
/>
</el-form-item>
<el-form-item
label=
"仓库地址"
prop=
"address"
>
<el-input
v-model=
"formData.address"
placeholder=
"请输入仓库地址"
/>
</el-form-item>
<el-form-item
label=
"仓库状态"
prop=
"status"
>
<el-radio-group
v-model=
"formData.status"
>
<el-radio
v-for=
"dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
:key=
"dict.value"
:label=
"dict.value"
>
{{
dict
.
label
}}
</el-radio>
</el-radio-group>
</el-form-item>
<el-form-item
label=
"仓储费"
prop=
"warehousePrice"
>
<el-input-number
v-model=
"formData.warehousePrice"
placeholder=
"请输入仓储费,单位:元/天/KG"
:min=
"0"
:precision=
"2"
class=
"!w-1/1"
/>
</el-form-item>
<el-form-item
label=
"搬运费"
prop=
"truckagePrice"
>
<el-input-number
v-model=
"formData.truckagePrice"
placeholder=
"请输入搬运费,单位:元"
:min=
"0"
:precision=
"2"
class=
"!w-1/1"
/>
</el-form-item>
<el-form-item
label=
"负责人"
prop=
"principal"
>
<el-input
v-model=
"formData.principal"
placeholder=
"请输入负责人"
/>
</el-form-item>
<el-form-item
label=
"排序"
prop=
"sort"
>
<el-input-number
v-model=
"formData.sort"
placeholder=
"请输入排序"
:precision=
"0"
class=
"!w-1/1"
/>
</el-form-item>
<el-form-item
label=
"备注"
prop=
"remark"
>
<el-input
type=
"textarea"
v-model=
"formData.remark"
placeholder=
"请输入备注"
/>
</el-form-item>
</el-form>
<template
#
footer
>
<el-button
@
click=
"submitForm"
type=
"primary"
:disabled=
"formLoading"
>
确 定
</el-button>
<el-button
@
click=
"dialogVisible = false"
>
取 消
</el-button>
</
template
>
</Dialog>
</template>
<
script
setup
lang=
"ts"
>
import
{
getIntDictOptions
,
DICT_TYPE
}
from
'@/utils/dict'
import
{
WarehouseApi
,
WarehouseVO
}
from
'@/api/erp/stock/warehouse'
import
{
CommonStatusEnum
}
from
'@/utils/constants'
/** ERP 仓库表单 */
defineOptions
({
name
:
'WarehouseForm'
})
const
{
t
}
=
useI18n
()
// 国际化
const
message
=
useMessage
()
// 消息弹窗
const
dialogVisible
=
ref
(
false
)
// 弹窗的是否展示
const
dialogTitle
=
ref
(
''
)
// 弹窗的标题
const
formLoading
=
ref
(
false
)
// 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
const
formType
=
ref
(
''
)
// 表单的类型:create - 新增;update - 修改
const
formData
=
ref
({
id
:
undefined
,
name
:
undefined
,
address
:
undefined
,
sort
:
undefined
,
remark
:
undefined
,
principal
:
undefined
,
warehousePrice
:
undefined
,
truckagePrice
:
undefined
,
status
:
undefined
})
const
formRules
=
reactive
({
name
:
[{
required
:
true
,
message
:
'仓库名称不能为空'
,
trigger
:
'blur'
}],
sort
:
[{
required
:
true
,
message
:
'排序不能为空'
,
trigger
:
'blur'
}],
status
:
[{
required
:
true
,
message
:
'开启状态不能为空'
,
trigger
:
'blur'
}]
})
const
formRef
=
ref
()
// 表单 Ref
/** 打开弹窗 */
const
open
=
async
(
type
:
string
,
id
?:
number
)
=>
{
dialogVisible
.
value
=
true
dialogTitle
.
value
=
t
(
'action.'
+
type
)
formType
.
value
=
type
resetForm
()
// 修改时,设置数据
if
(
id
)
{
formLoading
.
value
=
true
try
{
formData
.
value
=
await
WarehouseApi
.
getWarehouse
(
id
)
}
finally
{
formLoading
.
value
=
false
}
}
}
defineExpose
({
open
})
// 提供 open 方法,用于打开弹窗
/** 提交表单 */
const
emit
=
defineEmits
([
'success'
])
// 定义 success 事件,用于操作成功后的回调
const
submitForm
=
async
()
=>
{
// 校验表单
await
formRef
.
value
.
validate
()
// 提交请求
formLoading
.
value
=
true
try
{
const
data
=
formData
.
value
as
unknown
as
WarehouseVO
if
(
formType
.
value
===
'create'
)
{
await
WarehouseApi
.
createWarehouse
(
data
)
message
.
success
(
t
(
'common.createSuccess'
))
}
else
{
await
WarehouseApi
.
updateWarehouse
(
data
)
message
.
success
(
t
(
'common.updateSuccess'
))
}
dialogVisible
.
value
=
false
// 发送操作成功的事件
emit
(
'success'
)
}
finally
{
formLoading
.
value
=
false
}
}
/** 重置表单 */
const
resetForm
=
()
=>
{
formData
.
value
=
{
id
:
undefined
,
name
:
undefined
,
address
:
undefined
,
sort
:
undefined
,
remark
:
undefined
,
principal
:
undefined
,
warehousePrice
:
undefined
,
truckagePrice
:
undefined
,
status
:
CommonStatusEnum
.
ENABLE
}
formRef
.
value
?.
resetFields
()
}
</
script
>
src/views/erp/stock/warehouse/index.vue
0 → 100644
View file @
6d9ca290
<!-- ERP 仓库列表 -->
<
template
>
<ContentWrap>
<!-- 搜索工作栏 -->
<el-form
class=
"-mb-15px"
:model=
"queryParams"
ref=
"queryFormRef"
:inline=
"true"
label-width=
"68px"
>
<el-form-item
label=
"仓库名称"
prop=
"name"
>
<el-input
v-model=
"queryParams.name"
placeholder=
"请输入仓库名称"
clearable
@
keyup
.
enter=
"handleQuery"
class=
"!w-240px"
/>
</el-form-item>
<el-form-item
label=
"仓库状态"
prop=
"status"
>
<el-select
v-model=
"queryParams.status"
placeholder=
"请选择仓库状态"
clearable
class=
"!w-240px"
>
<el-option
v-for=
"dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
:key=
"dict.value"
:label=
"dict.label"
:value=
"dict.value"
/>
</el-select>
</el-form-item>
<el-form-item>
<el-button
@
click=
"handleQuery"
><Icon
icon=
"ep:search"
class=
"mr-5px"
/>
搜索
</el-button>
<el-button
@
click=
"resetQuery"
><Icon
icon=
"ep:refresh"
class=
"mr-5px"
/>
重置
</el-button>
<el-button
type=
"primary"
plain
@
click=
"openForm('create')"
v-hasPermi=
"['erp:warehouse:create']"
>
<Icon
icon=
"ep:plus"
class=
"mr-5px"
/>
新增
</el-button>
<el-button
type=
"success"
plain
@
click=
"handleExport"
:loading=
"exportLoading"
v-hasPermi=
"['erp:warehouse:export']"
>
<Icon
icon=
"ep:download"
class=
"mr-5px"
/>
导出
</el-button>
</el-form-item>
</el-form>
</ContentWrap>
<!-- 列表 -->
<ContentWrap>
<el-table
v-loading=
"loading"
:data=
"list"
:stripe=
"true"
:show-overflow-tooltip=
"true"
>
<el-table-column
label=
"仓库名称"
align=
"center"
prop=
"name"
/>
<el-table-column
label=
"仓库地址"
align=
"center"
prop=
"address"
/>
<el-table-column
label=
"仓储费"
align=
"center"
prop=
"warehousePrice"
/>
<el-table-column
label=
"搬运费"
align=
"center"
prop=
"truckagePrice"
/>
<el-table-column
label=
"负责人"
align=
"center"
prop=
"principal"
/>
<el-table-column
label=
"备注"
align=
"center"
prop=
"remark"
/>
<el-table-column
label=
"排序"
align=
"center"
prop=
"sort"
/>
<el-table-column
label=
"状态"
align=
"center"
prop=
"status"
>
<template
#
default=
"scope"
>
<dict-tag
:type=
"DICT_TYPE.COMMON_STATUS"
:value=
"scope.row.status"
/>
</
template
>
</el-table-column>
<el-table-column
label=
"是否默认"
align=
"center"
prop=
"defaultStatus"
>
<
template
#
default=
"scope"
>
<el-switch
v-model=
"scope.row.defaultStatus"
:active-value=
"true"
:inactive-value=
"false"
@
change=
"handleDefaultStatusChange(scope.row)"
/>
</
template
>
</el-table-column>
<el-table-column
label=
"创建时间"
align=
"center"
prop=
"createTime"
:formatter=
"dateFormatter"
width=
"180px"
/>
<el-table-column
label=
"操作"
align=
"center"
>
<
template
#
default=
"scope"
>
<el-button
link
type=
"primary"
@
click=
"openForm('update', scope.row.id)"
v-hasPermi=
"['erp:warehouse:update']"
>
编辑
</el-button>
<el-button
link
type=
"danger"
@
click=
"handleDelete(scope.row.id)"
v-hasPermi=
"['erp:warehouse:delete']"
>
删除
</el-button>
</
template
>
</el-table-column>
</el-table>
<!-- 分页 -->
<Pagination
:total=
"total"
v-model:page=
"queryParams.pageNo"
v-model:limit=
"queryParams.pageSize"
@
pagination=
"getList"
/>
</ContentWrap>
<!-- 表单弹窗:添加/修改 -->
<WarehouseForm
ref=
"formRef"
@
success=
"getList"
/>
</template>
<
script
setup
lang=
"ts"
>
import
{
getIntDictOptions
,
DICT_TYPE
}
from
'@/utils/dict'
import
{
dateFormatter
}
from
'@/utils/formatTime'
import
download
from
'@/utils/download'
import
{
WarehouseApi
,
WarehouseVO
}
from
'@/api/erp/stock/warehouse'
import
WarehouseForm
from
'./WarehouseForm.vue'
/** ERP 仓库列表 */
defineOptions
({
name
:
'ErpWarehouse'
})
const
message
=
useMessage
()
// 消息弹窗
const
{
t
}
=
useI18n
()
// 国际化
const
loading
=
ref
(
true
)
// 列表的加载中
const
list
=
ref
<
WarehouseVO
[]
>
([])
// 列表的数据
// 列表的总页数
const
total
=
ref
(
0
)
const
queryParams
=
reactive
({
pageNo
:
1
,
pageSize
:
10
,
name
:
undefined
,
status
:
undefined
})
const
queryFormRef
=
ref
()
// 搜索的表单
const
exportLoading
=
ref
(
false
)
// 导出的加载中
/** 查询列表 */
const
getList
=
async
()
=>
{
loading
.
value
=
true
try
{
const
data
=
await
WarehouseApi
.
getWarehousePage
(
queryParams
)
list
.
value
=
data
.
list
total
.
value
=
data
.
total
}
finally
{
loading
.
value
=
false
}
}
/** 搜索按钮操作 */
const
handleQuery
=
()
=>
{
queryParams
.
pageNo
=
1
getList
()
}
/** 重置按钮操作 */
const
resetQuery
=
()
=>
{
queryFormRef
.
value
.
resetFields
()
handleQuery
()
}
/** 添加/修改操作 */
const
formRef
=
ref
()
const
openForm
=
(
type
:
string
,
id
?:
number
)
=>
{
formRef
.
value
.
open
(
type
,
id
)
}
/** 删除按钮操作 */
const
handleDelete
=
async
(
id
:
number
)
=>
{
try
{
// 删除的二次确认
await
message
.
delConfirm
()
// 发起删除
await
WarehouseApi
.
deleteWarehouse
(
id
)
message
.
success
(
t
(
'common.delSuccess'
))
// 刷新列表
await
getList
()
}
catch
{}
}
/** 修改默认状态 */
const
handleDefaultStatusChange
=
async
(
row
:
WarehouseVO
)
=>
{
try
{
// 修改状态的二次确认
const
text
=
row
.
defaultStatus
?
'设置'
:
'取消'
await
message
.
confirm
(
'确认要'
+
text
+
'"'
+
row
.
name
+
'"默认吗?'
)
// 发起修改状态
await
WarehouseApi
.
updateWarehouseDefaultStatus
(
row
.
id
,
row
.
defaultStatus
)
// 刷新列表
await
getList
()
}
catch
(
e
)
{
// 取消后,进行恢复按钮
row
.
defaultStatus
=
!
row
.
defaultStatus
}
}
/** 导出按钮操作 */
const
handleExport
=
async
()
=>
{
try
{
// 导出的二次确认
await
message
.
exportConfirm
()
// 发起导出
exportLoading
.
value
=
true
const
data
=
await
WarehouseApi
.
exportWarehouse
(
queryParams
)
download
.
excel
(
data
,
'ERP 仓库.xls'
)
}
catch
{
}
finally
{
exportLoading
.
value
=
false
}
}
/** 初始化 **/
onMounted
(()
=>
{
getList
()
})
</
script
>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment