parent
94943df4f9
commit
86ffb5a9c9
@ -0,0 +1,40 @@ |
|||||||
|
import request from '@/config/axios' |
||||||
|
// 查询列表
|
||||||
|
export const getWarehousePage = async (params) => { |
||||||
|
return await request.get({ url: '/admin-api/crm/erp-warehouse/page', params }) |
||||||
|
} |
||||||
|
|
||||||
|
// 新增
|
||||||
|
export const createWarehouse = async (data) => { |
||||||
|
return await request.post({ url: '/admin-api/crm/erp-warehouse/create', data: data }) |
||||||
|
} |
||||||
|
|
||||||
|
// 修改
|
||||||
|
export const updateWarehouse = async (params) => { |
||||||
|
return await request.put({ url: '/admin-api/crm/erp-warehouse/update', data: params }) |
||||||
|
} |
||||||
|
|
||||||
|
// 删除
|
||||||
|
export const deleteWarehouse = async (id) => { |
||||||
|
return await request.delete({ url: '/admin-api/crm/erp-warehouse/delete?id=' + id }) |
||||||
|
} |
||||||
|
|
||||||
|
// 获取仓库
|
||||||
|
export const getWarehouse = async (id) => { |
||||||
|
return await request.get({ url: '/admin-api/crm/erp-warehouse/get?id=' + id }) |
||||||
|
} |
||||||
|
|
||||||
|
// 获取仓库列表
|
||||||
|
export const getSimpleWarehouseList = async () => { |
||||||
|
return await request.get({ url: '/admin-api/crm/erp-warehouse/simple-list' }) |
||||||
|
} |
||||||
|
|
||||||
|
// 获取库存
|
||||||
|
export const getInventoryList = async (params) => { |
||||||
|
return await request.get({ url: '/admin-api/crm/erp-inventory/page', params }) |
||||||
|
} |
||||||
|
|
||||||
|
// 获取库存变动记录
|
||||||
|
export const getInventoryRecord = async (params) => { |
||||||
|
return await request.get({ url: '/admin-api/crm/erp-inventory-record/page', params }) |
||||||
|
} |
@ -0,0 +1,103 @@ |
|||||||
|
<template> |
||||||
|
<Dialog :title="dialogTitle" v-model="dialogVisible" width="500px"> |
||||||
|
<el-form |
||||||
|
ref="formRef" |
||||||
|
v-loading="formLoading" |
||||||
|
:model="formData" |
||||||
|
:rules="formRules" |
||||||
|
label-width="80px" |
||||||
|
> |
||||||
|
<el-form-item label="仓库名称" prop="warehouseName"> |
||||||
|
<el-input v-model="formData.warehouseName" placeholder="请输入仓库名称" /> |
||||||
|
</el-form-item> |
||||||
|
<el-form-item label="排序" prop="sort"> |
||||||
|
<el-input v-model="formData.sort" placeholder="请输入排序" type="number" :min="0" /> |
||||||
|
</el-form-item> |
||||||
|
<el-form-item label="备注" prop="remark"> |
||||||
|
<el-input |
||||||
|
type="textarea" |
||||||
|
v-model="formData.remark" |
||||||
|
placeholder="请输入备注" |
||||||
|
:autosize="{ minRows: 4, maxRows: 8 }" |
||||||
|
/> |
||||||
|
</el-form-item> |
||||||
|
</el-form> |
||||||
|
<template #footer> |
||||||
|
<el-button :disabled="formLoading" type="primary" @click="submitForm">确 定</el-button> |
||||||
|
<el-button @click="dialogVisible = false">取 消</el-button> |
||||||
|
</template> |
||||||
|
</Dialog> |
||||||
|
</template> |
||||||
|
<script name="DialogWarehouse" setup> |
||||||
|
import * as WarehouseApi from '@/api/mall/warehouse' |
||||||
|
|
||||||
|
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({ |
||||||
|
name: '', |
||||||
|
sort: 1, |
||||||
|
remark: '' |
||||||
|
}) |
||||||
|
const formRules = reactive({ |
||||||
|
warehouseName: [{ required: true, message: '名称不能为空', trigger: 'blur' }] |
||||||
|
}) |
||||||
|
const formRef = ref() // 表单 Ref |
||||||
|
|
||||||
|
/** 打开弹窗 */ |
||||||
|
const open = async (type, id) => { |
||||||
|
dialogVisible.value = true |
||||||
|
dialogTitle.value = type == 'update' ? '修改仓库' : '新增仓库' |
||||||
|
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 () => { |
||||||
|
// 校验表单 |
||||||
|
if (!formRef.value) return |
||||||
|
const valid = await formRef.value.validate() |
||||||
|
if (!valid) return |
||||||
|
// 提交请求 |
||||||
|
formLoading.value = true |
||||||
|
try { |
||||||
|
if (formType.value === 'create') { |
||||||
|
await WarehouseApi.createWarehouse(formData.value) |
||||||
|
message.success(t('common.createSuccess')) |
||||||
|
} else { |
||||||
|
await WarehouseApi.updateWarehouse(formData.value) |
||||||
|
message.success(t('common.updateSuccess')) |
||||||
|
} |
||||||
|
dialogVisible.value = false |
||||||
|
// 发送操作成功的事件 |
||||||
|
emit('success') |
||||||
|
} finally { |
||||||
|
formLoading.value = false |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
/** 重置表单 */ |
||||||
|
const resetForm = () => { |
||||||
|
formData.value = { |
||||||
|
name: '', |
||||||
|
sort: 1, |
||||||
|
remark: '' |
||||||
|
} |
||||||
|
formRef.value?.resetFields() |
||||||
|
} |
||||||
|
</script> |
@ -1,37 +1,18 @@ |
|||||||
// import { CrudSchema } from '@/hooks/web/useCrudSchemas'
|
|
||||||
|
|
||||||
// CrudSchema:https://doc.iocoder.cn/vue3/crud-schema/
|
|
||||||
const crudSchemas = reactive([ |
const crudSchemas = reactive([ |
||||||
{ |
{ |
||||||
label: '产品名称', |
label: '产品名称', |
||||||
field: 'name', |
field: 'productName', |
||||||
isSearch: true, |
|
||||||
isTable: true |
isTable: true |
||||||
}, |
}, |
||||||
{ |
{ |
||||||
label: '规格名称', |
label: '规格名称', |
||||||
field: 'specsName', |
field: 'specsName', |
||||||
isSearch: true, |
|
||||||
isTable: true |
isTable: true |
||||||
}, |
}, |
||||||
{ |
{ |
||||||
label: '仓库', |
label: '仓库', |
||||||
field: 'warehouse', |
field: 'warehouseName', |
||||||
isSearch: true, |
isTable: true |
||||||
isTable: true, |
|
||||||
search: { |
|
||||||
component: 'Select', |
|
||||||
api: () => [ |
|
||||||
{ label: '自营仓', value: 1 }, |
|
||||||
{ label: '供应商仓', value: 2 } |
|
||||||
], |
|
||||||
componentProps: { |
|
||||||
optionsAlias: { |
|
||||||
labelField: 'label', |
|
||||||
valueField: 'value' |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
} |
} |
||||||
]) |
]) |
||||||
export const { allSchemas } = useCrudSchemas(crudSchemas) |
export const { allSchemas } = useCrudSchemas(crudSchemas) |
||||||
|
@ -1,90 +1,150 @@ |
|||||||
<template> |
<template> |
||||||
<div> |
<div> |
||||||
<Search |
<el-form inline :model="searchForm" class="-mb-15px" label-width="0"> |
||||||
:schema="allSchemas.searchSchema" |
<el-form-item> |
||||||
labelWidth="0" |
<el-select |
||||||
@search="setSearchParams" |
v-model="searchForm.productId" |
||||||
@reset="setSearchParams" |
placeholder="选择产品" |
||||||
/> |
clearable |
||||||
|
filterable |
||||||
|
@change="changeProd" |
||||||
|
> |
||||||
|
<el-option |
||||||
|
v-for="item in opts.product" |
||||||
|
:key="item.productId" |
||||||
|
:label="item.productName" |
||||||
|
:value="item.productId" |
||||||
|
/> |
||||||
|
</el-select> |
||||||
|
</el-form-item> |
||||||
|
<el-form-item> |
||||||
|
<el-select |
||||||
|
v-model="searchForm.specsId" |
||||||
|
placeholder="选择规格" |
||||||
|
clearable |
||||||
|
filterable |
||||||
|
:disabled="!searchForm.productId" |
||||||
|
> |
||||||
|
<el-option |
||||||
|
v-for="item in opts.spec" |
||||||
|
:key="item.specsId" |
||||||
|
:label="item.specsName" |
||||||
|
:value="item.specsId" |
||||||
|
/> |
||||||
|
</el-select> |
||||||
|
</el-form-item> |
||||||
|
<el-form-item> |
||||||
|
<el-select v-model="searchForm.warehouseId" placeholder="仓库" clearable filterable> |
||||||
|
<el-option |
||||||
|
v-for="item in opts.warehouse" |
||||||
|
:key="item.warehouseId" |
||||||
|
:label="item.warehouseName" |
||||||
|
:value="item.warehouseId" |
||||||
|
/> |
||||||
|
</el-select> |
||||||
|
</el-form-item> |
||||||
|
<el-form-item> |
||||||
|
<el-button @click="handleSearch"> 搜索 </el-button> |
||||||
|
<el-button @click="resetQuery"> 重置 </el-button> |
||||||
|
</el-form-item> |
||||||
|
</el-form> |
||||||
|
|
||||||
<el-table class="mt-20px" :data="tableList" border> |
<el-table class="mt-20px" :data="tableList" border> |
||||||
<el-table-column type="index" width="50px" /> |
<el-table-column type="index" width="50px" /> |
||||||
<el-table-column prop="" label="产品名称" /> |
<el-table-column prop="" label="产品名称" /> |
||||||
<el-table-column prop="" label="规格" /> |
<el-table-column prop="" label="规格" /> |
||||||
<el-table-column prop="" label="变动类型" /> |
<el-table-column label="变动类型"> |
||||||
<el-table-column prop="" label="数量" /> |
<template #default="{ row }"> |
||||||
<el-table-column prop="" label="金额" /> |
{{ ['', '入库', '出库'][row.changeType] }} |
||||||
<el-table-column prop="" label="变动时间" /> |
</template> |
||||||
<el-table-column prop="" label="变动人员" /> |
</el-table-column> |
||||||
|
<el-table-column prop="num" label="数量" /> |
||||||
|
<el-table-column prop="money" label="金额" /> |
||||||
|
<el-table-column prop="changeTime" label="变动时间" :formatter="dateFormatter" /> |
||||||
|
<el-table-column prop="changeUser" label="变动人员" /> |
||||||
<el-table-column prop="" label="所属仓库" /> |
<el-table-column prop="" label="所属仓库" /> |
||||||
<el-table-column prop="" label="备注" /> |
<el-table-column prop="remark" label="备注" /> |
||||||
</el-table> |
</el-table> |
||||||
<Pagination |
<Pagination |
||||||
v-model:limit="searchForm.pageSize" |
v-model:limit="searchForm.pageSize" |
||||||
v-model:page="searchForm.currentPage" |
v-model:page="searchForm.pageNo" |
||||||
:total="total" |
:total="total" |
||||||
@pagination="getList" |
@pagination="getList" |
||||||
/> |
/> |
||||||
</div> |
</div> |
||||||
</template> |
</template> |
||||||
|
|
||||||
<script setup> |
<script setup name="InventoryDetail"> |
||||||
const crudSchemas = ref([ |
import { dateFormatter } from '@/utils/formatTime' |
||||||
{ |
import { getSimpleWarehouseList, getInventoryRecord } from '@/api/mall/warehouse' |
||||||
label: '仓库名称', |
import { getSimpleProductList } from '@/api/mall/product' |
||||||
field: 'warehouse', |
|
||||||
isSearch: true, |
|
||||||
search: { |
|
||||||
component: 'Select', |
|
||||||
api: () => [ |
|
||||||
{ label: '自营仓', value: 1 }, |
|
||||||
{ label: '供应商仓', value: 2 } |
|
||||||
], |
|
||||||
componentProps: { |
|
||||||
optionsAlias: { |
|
||||||
labelField: 'label', |
|
||||||
valueField: 'value' |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
label: '变动类型', |
|
||||||
field: 'type', |
|
||||||
isSearch: true, |
|
||||||
search: { |
|
||||||
component: 'Select', |
|
||||||
api: () => [ |
|
||||||
{ label: '入库', value: 1 }, |
|
||||||
{ label: '出库', value: 2 }, |
|
||||||
{ label: '售后', value: 3 } |
|
||||||
], |
|
||||||
componentProps: { |
|
||||||
optionsAlias: { |
|
||||||
labelField: 'label', |
|
||||||
valueField: 'value' |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
]) |
|
||||||
const { allSchemas } = useCrudSchemas(crudSchemas.value) |
|
||||||
|
|
||||||
const searchForm = ref({ |
const searchForm = ref({ |
||||||
pageSize: 20, |
pproductId: undefined, |
||||||
currentPage: 1 |
specsId: undefined, |
||||||
|
warehouseId: undefined, |
||||||
|
pageNo: 1, |
||||||
|
pageSize: 20 |
||||||
}) |
}) |
||||||
|
|
||||||
const tableList = ref([]) |
const opts = ref({ |
||||||
|
product: [], |
||||||
|
spec: [], |
||||||
|
warehouse: [] |
||||||
|
}) |
||||||
|
|
||||||
|
const loading = ref(false) |
||||||
const total = ref(0) |
const total = ref(0) |
||||||
|
const tableList = ref([]) |
||||||
|
|
||||||
|
function resetQuery() { |
||||||
|
searchForm.value = { |
||||||
|
productId: undefined, |
||||||
|
specsId: undefined, |
||||||
|
warehouseId: undefined, |
||||||
|
pageNo: 1, |
||||||
|
pageSize: 20 |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
function getList() { |
function getOptions() { |
||||||
tableList.value = [] |
getSimpleProductList().then((data) => { |
||||||
|
opts.value.product = data |
||||||
|
}) |
||||||
|
getSimpleWarehouseList().then((data) => { |
||||||
|
opts.value.warehouse = data |
||||||
|
}) |
||||||
} |
} |
||||||
|
|
||||||
function setSearchParams() { |
function handleSearch() { |
||||||
tableList.value = [] |
searchForm.value.pageNo = 1 |
||||||
|
getList() |
||||||
} |
} |
||||||
|
|
||||||
|
function changeProd(val) { |
||||||
|
if (val) { |
||||||
|
opts.value.spec = opts.value.product.find((it) => it.productId == val).productSpecList |
||||||
|
} else { |
||||||
|
opts.value.spec = [] |
||||||
|
} |
||||||
|
searchForm.value.specsId = undefined |
||||||
|
} |
||||||
|
|
||||||
|
async function getList() { |
||||||
|
loading.value = true |
||||||
|
try { |
||||||
|
const data = await getInventoryRecord(searchForm.value) |
||||||
|
tableList.value = data.list |
||||||
|
total.value = data.total |
||||||
|
} finally { |
||||||
|
loading.value = false |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
onMounted(() => { |
||||||
|
getOptions() |
||||||
|
handleSearch() |
||||||
|
}) |
||||||
</script> |
</script> |
||||||
|
|
||||||
<style lang="scss" scoped></style> |
<style lang="scss" scoped></style> |
||||||
|
@ -1,75 +1,115 @@ |
|||||||
<template> |
<template> |
||||||
<div> |
<div> |
||||||
<!-- 搜索工作栏 --> |
<el-form inline :model="searchForm" class="-mb-15px" label-width="0" @submit.prevent> |
||||||
<Search |
<el-form-item> |
||||||
:schema="allSchemas.searchSchema" |
<el-input |
||||||
labelWidth="0" |
v-model="searchForm.warehouseName" |
||||||
@search="setSearchParams" |
placeholder="仓库名称" |
||||||
@reset="setSearchParams" |
@keyup.enter="handleSearch" |
||||||
/> |
/> |
||||||
<!-- 列表 --> |
</el-form-item> |
||||||
<SSTable |
<el-form-item> |
||||||
class="mt-20px" |
<el-button @click="handleSearch"> 搜索 </el-button> |
||||||
v-model:tableObject="tableObject" |
<el-button @click="resetQuery"> 重置 </el-button> |
||||||
:tableColumns="allSchemas.tableColumns" |
<el-button type="primary" @click="openForm('create', null)"> 新增 </el-button> |
||||||
@get-list="getTableList" |
</el-form-item> |
||||||
> |
</el-form> |
||||||
<el-table-column type="index" width="80px" /> |
|
||||||
<el-table-column |
<el-table class="mt-20px" :data="tableList" border> |
||||||
v-for="item in allSchemas.tableColumns" |
<el-table-column type="index" width="50px" /> |
||||||
:key="item.field" |
<el-table-column prop="warehouseName" label="仓库名称" /> |
||||||
:prop="item.field" |
<el-table-column prop="sort" label="排序" /> |
||||||
:label="item.label" |
<el-table-column prop="remark" label="备注" /> |
||||||
/> |
<el-table-column label="操作" width="120px"> |
||||||
<el-table-column label="操作" width="200px"> |
|
||||||
<template #default="{ row }"> |
<template #default="{ row }"> |
||||||
<el-button type="primary" text :disabled="row.default">修改</el-button> |
<el-button |
||||||
<el-button type="danger" text :disabled="row.default" @click="remove(row)" |
type="primary" |
||||||
>删除</el-button |
style="padding: 0" |
||||||
|
text |
||||||
|
@click="openForm('update', row.warehouseId)" |
||||||
> |
> |
||||||
|
修改 |
||||||
|
</el-button> |
||||||
|
<el-button type="danger" style="padding: 0" text @click="handleRemove(row.warehouseId)"> |
||||||
|
删除 |
||||||
|
</el-button> |
||||||
</template> |
</template> |
||||||
</el-table-column> |
</el-table-column> |
||||||
</SSTable> |
</el-table> |
||||||
|
<Pagination |
||||||
|
v-model:limit="searchForm.pageSize" |
||||||
|
v-model:page="searchForm.pageNo" |
||||||
|
:total="total" |
||||||
|
@pagination="getList" |
||||||
|
/> |
||||||
|
<DialogWarehouse ref="warehouseDialog" @success="handleSearch" /> |
||||||
</div> |
</div> |
||||||
</template> |
</template> |
||||||
|
|
||||||
<script setup> |
<script setup name="Warehouse"> |
||||||
const crudSchemas = ref([ |
import DialogWarehouse from './DialogWarehouse.vue' |
||||||
{ |
import * as WarehouseApi from '@/api/mall/warehouse' |
||||||
label: '仓库名称', |
|
||||||
field: 'name', |
|
||||||
isSearch: true, |
|
||||||
isTable: true |
|
||||||
} |
|
||||||
]) |
|
||||||
|
|
||||||
const { allSchemas } = useCrudSchemas(crudSchemas.value) |
const message = useMessage() // 消息弹窗 |
||||||
|
const { t } = useI18n() // 国际化 |
||||||
|
|
||||||
const tableObject = ref({ |
const searchForm = ref({ |
||||||
tableList: [], |
warehouseName: undefined, |
||||||
loading: false, |
pageNo: 1, |
||||||
total: 1, |
pageSize: 20 |
||||||
pageSize: 20, |
|
||||||
currentPage: 1 |
|
||||||
}) |
}) |
||||||
|
|
||||||
function setSearchParams() { |
const loading = ref(false) |
||||||
tableObject.value.tableList = [ |
const total = ref(0) |
||||||
{ name: '自营仓', default: true }, |
const tableList = ref([]) |
||||||
{ name: '供应商仓', default: true } |
|
||||||
] |
function resetQuery() { |
||||||
|
searchForm.value = { |
||||||
|
warehouseName: undefined, |
||||||
|
pageNo: 1, |
||||||
|
pageSize: 20 |
||||||
|
} |
||||||
} |
} |
||||||
|
|
||||||
function getTableList() { |
function handleSearch() { |
||||||
tableObject.value.tableList = [ |
searchForm.value.pageNo = 1 |
||||||
{ name: '自营仓', default: true }, |
getList() |
||||||
{ name: '供应商仓', default: true } |
|
||||||
] |
|
||||||
} |
} |
||||||
|
|
||||||
function remove(row) { |
async function getList() { |
||||||
console.log(row) |
loading.value = true |
||||||
|
try { |
||||||
|
const data = await WarehouseApi.getWarehousePage(searchForm.value) |
||||||
|
tableList.value = data.list |
||||||
|
total.value = data.total |
||||||
|
} finally { |
||||||
|
loading.value = false |
||||||
|
} |
||||||
} |
} |
||||||
|
|
||||||
|
const warehouseDialog = ref() |
||||||
|
|
||||||
|
function openForm(type, id) { |
||||||
|
warehouseDialog.value.open(type, id) |
||||||
|
} |
||||||
|
|
||||||
|
async function handleRemove(id) { |
||||||
|
try { |
||||||
|
// 删除的二次确认 |
||||||
|
await message.delConfirm() |
||||||
|
// 发起删除 |
||||||
|
await WarehouseApi.deleteWarehouse(id) |
||||||
|
message.success(t('common.delSuccess')) |
||||||
|
// 刷新列表 |
||||||
|
await getList() |
||||||
|
} catch (err) { |
||||||
|
console.log(err) |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
onMounted(() => { |
||||||
|
handleSearch() |
||||||
|
}) |
||||||
</script> |
</script> |
||||||
|
|
||||||
<style lang="scss" scoped></style> |
<style lang="scss" scoped></style> |
||||||
|
Loading…
Reference in new issue