You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
522 lines
17 KiB
522 lines
17 KiB
<template>
|
|
<ContentWrap>
|
|
<!-- 搜索工作栏 -->
|
|
<Search :schema="ContainerMainRequest.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" />
|
|
</ContentWrap>
|
|
|
|
<!-- 列表头部 -->
|
|
<TableHead
|
|
:HeadButttondata="HeadButttondata"
|
|
@button-base-click="buttonBaseClick"
|
|
:routeName="routeName"
|
|
@updataTableColumns="updataTableColumns"
|
|
@searchFormClick="searchFormClick"
|
|
:allSchemas="ContainerMainRequest.allSchemas"
|
|
:detailAllSchemas="ContainerDetailRequest.allSchemas"
|
|
/>
|
|
|
|
<!-- 列表 -->
|
|
<ContentWrap>
|
|
<Table
|
|
:columns="tableColumns"
|
|
:data="tableObject.tableList"
|
|
:loading="tableObject.loading"
|
|
:pagination="{
|
|
total: tableObject.total
|
|
}"
|
|
v-model:pageSize="tableObject.pageSize"
|
|
v-model:currentPage="tableObject.currentPage"
|
|
v-model:sort="tableObject.sort"
|
|
>
|
|
<template #number="{row}">
|
|
<el-button type="primary" link @click="openDetail(row, '单据号', row.number)">
|
|
<span>{{ row.number }}</span>
|
|
</el-button>
|
|
</template>
|
|
<template #action="{ row,$index }">
|
|
<ButtonBase :Butttondata="butttondata(row,$index)" @button-base-click="buttonTableClick($event,row)" />
|
|
</template>
|
|
</Table>
|
|
</ContentWrap>
|
|
|
|
<!-- 表单弹窗:添加/修改 -->
|
|
<BasicForm
|
|
ref="basicFormRef"
|
|
@success="getList"
|
|
:rules="ContainerMainRequestRules"
|
|
:formAllSchemas="ContainerMainRequest.allSchemas"
|
|
:tableAllSchemas="ContainerDetailRequest.allSchemas"
|
|
:tableFormRules="ContainerDetailRequestRules"
|
|
:tableData="tableData"
|
|
:apiUpdate="ContainerMainRequestApi.updateContainerMainRequest"
|
|
:apiCreate="ContainerMainRequestApi.createContainerMainRequest"
|
|
:isBusiness="true"
|
|
fromeWhere="ContainerMainRequest"
|
|
@handleAddTable="handleAddTable"
|
|
@handleDeleteTable="handleDeleteTable"
|
|
:isShowReduceButtonSelection="true"
|
|
@tableSelectionDelete="tableSelectionDelete"
|
|
@searchTableSuccess="searchTableSuccess"
|
|
@submitForm="submitForm"
|
|
:isShowButton = isShowButton
|
|
/>
|
|
|
|
<!-- 详情 -->
|
|
<Detail
|
|
ref="detailRef"
|
|
:isBasic="false"
|
|
:allSchemas="ContainerMainRequest.allSchemas"
|
|
:detailAllSchemas="ContainerDetailRequest.allSchemas"
|
|
:detailAllSchemasRules="ContainerDetailRequestRules"
|
|
:apiCreate="ContainerDetailRequestApi.createContainerDetailRequest"
|
|
:apiUpdate="ContainerDetailRequestApi.updateContainerDetailRequest"
|
|
:apiPage="ContainerDetailRequestApi.getContainerDetailRequestPage"
|
|
:apiDelete="ContainerDetailRequestApi.deleteContainerDetailRequest"
|
|
fromeWhere="ContainerDetailRequest"
|
|
@searchTableSuccessDetail="searchTableSuccessDetail"
|
|
:detailButtonIsShowAdd="trueFalse"
|
|
:detailButtonIsShowDelete="trueFalse"
|
|
/>
|
|
|
|
<!-- 导入 -->
|
|
<ImportForm ref="importFormRef" url="/wms/container-main-request/import" :importTemplateData="importTemplateData" @success="importSuccess" />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import download from '@/utils/download'
|
|
import { ContainerMainRequest,ContainerMainRequestRules,ContainerDetailRequest,ContainerDetailRequestRules } from './containerMainRequest.data'
|
|
import * as ContainerMainRequestApi from '@/api/wms/containerMainRequest'
|
|
import * as ContainerDetailRequestApi from '@/api/wms/containerDetailRequest'
|
|
import * as defaultButtons from '@/utils/disposition/defaultButtons'
|
|
import TableHead from '@/components/TableHead/src/TableHead.vue'
|
|
import ImportForm from '@/components/ImportForm/src/ImportForm.vue'
|
|
import Detail from '@/components/Detail/src/Detail.vue'
|
|
|
|
defineOptions({ name: 'ContainerManageRequest' })
|
|
|
|
const message = useMessage() // 消息弹窗
|
|
const { t } = useI18n() // 国际化
|
|
const businessType = ref()
|
|
const fromLocationCode = ref()
|
|
const toLocationCode = ref()
|
|
const importFileName = ref()
|
|
const route = useRoute() // 路由信息
|
|
const routeName = ref()
|
|
routeName.value = route.name
|
|
const tableColumns = ref(ContainerMainRequest.allSchemas.tableColumns)
|
|
console.log(99 , routeName.value)
|
|
const { tableObject, tableMethods } = useTable({
|
|
getListApi: ContainerDetailRequestApi.getContainerDetailRequestPage // 分页接口
|
|
})
|
|
// 判断 路由名称 进行条件过滤
|
|
/**
|
|
*
|
|
*/
|
|
if ( routeName.value == 'ReturnContainerManageRequest') {
|
|
tableObject.params = {
|
|
type:'RETURN'
|
|
}
|
|
ContainerMainRequest.allSchemas.formSchema.forEach(item=>{
|
|
if(item.field == 'type'){
|
|
item.value = "RETURN"
|
|
}});
|
|
businessType.value = 'ReturnContainerManage'
|
|
importFileName.value = '器具返回申请'
|
|
} else if ( routeName.value == 'MoveContainerManageRequest') {
|
|
tableObject.params = {
|
|
type:'MOVE'
|
|
}
|
|
ContainerMainRequest.allSchemas.formSchema.forEach(item=>{
|
|
if(item.field == 'type'){
|
|
item.value = "MOVE"
|
|
}});
|
|
businessType.value = 'MoveContainerManage'
|
|
importFileName.value = '器具转移申请'
|
|
} else if ( routeName.value == 'DeliverContainerManageRequest') {
|
|
tableObject.params = {
|
|
type: 'DELIVER',
|
|
}
|
|
//主表字段赋值
|
|
ContainerMainRequest.allSchemas.formSchema.forEach(item=>{
|
|
if(item.field == 'type'){
|
|
item.value = "DELIVER"
|
|
}});
|
|
businessType.value = 'DeliverContainerManage'
|
|
importFileName.value = '器具发运申请'
|
|
} else if( routeName.value == 'ContainerManageRequest'){
|
|
businessType.value = 'ContainerManage'
|
|
importFileName.value = '器具管理申请'
|
|
}
|
|
|
|
//定义 展示子表数据时是否显示新增/修改/删除按钮
|
|
const trueFalse = ref(false)
|
|
// 查询页面返回
|
|
const searchTableSuccess = (formField, searchField, val, formRef, type, row) => {
|
|
nextTick(() => {
|
|
if (type == 'tableForm') {
|
|
if(formField == 'containerNumber') {
|
|
row['containerNumber'] = val[0]['itemCode']
|
|
row['uom'] = val[0]['uom']
|
|
row['fromLocationCode'] = val[0]['locationCode']
|
|
row['fromInventoryStatus'] = val[0]['inventoryStatus']
|
|
}else if(formField == 'toLocationCode'){
|
|
row['toLocationCode'] = val[0]['code']
|
|
}else {
|
|
row[formField] = val[0][searchField]
|
|
}
|
|
}
|
|
const setV = {}
|
|
setV[formField] = val[0][searchField]
|
|
formRef.setValues(setV)
|
|
})
|
|
}
|
|
|
|
// 查询页面返回——详情
|
|
const searchTableSuccessDetail = (formField, searchField, val, formRef ) => {
|
|
nextTick(() => {
|
|
const setV = {}
|
|
if(formField == 'containerNumber') {
|
|
setV['containerNumber'] = val[0]['code']
|
|
setV['uom'] = val[0]['uom']
|
|
}else if(formField == 'toLocationCode'){
|
|
setV['toLocationCode'] = val[0]['code']
|
|
}else {
|
|
setV[formField] = val[0][searchField]
|
|
}
|
|
formRef.setValues(setV)
|
|
})
|
|
}
|
|
|
|
// 修改 tableform 属性
|
|
ContainerDetailRequest.allSchemas.tableFormColumns.map(item => {
|
|
console.log(businessType.value+99999999);
|
|
|
|
if(item.field == 'containerNumber') {
|
|
if (fromLocationCode.value == null) {
|
|
item.tableForm.searchCondition = [
|
|
{
|
|
key: 'businessType',
|
|
value: businessType.value ,
|
|
isMainValue: false
|
|
}
|
|
]
|
|
item.form.componentProps.searchCondition = [
|
|
{
|
|
key: 'businessType',
|
|
value: businessType.value,
|
|
isMainValue: false
|
|
}
|
|
]
|
|
} else {
|
|
delete item.tableForm.searchCondition
|
|
}
|
|
}
|
|
if(item.field == "toLocationCode"){
|
|
if (toLocationCode.value) {
|
|
item.tableForm.searchCondition = [
|
|
{
|
|
key: 'businessType',
|
|
value: businessType.value,
|
|
isMainValue: false
|
|
}]
|
|
item.form.componentProps.searchCondition = [
|
|
{
|
|
key: 'businessType',
|
|
value: businessType.value,
|
|
isMainValue: false
|
|
}]
|
|
}else if (toLocationCode.value == null) {
|
|
item.tableForm.searchCondition = [
|
|
{
|
|
key: 'businessType',
|
|
value: businessType.value ,
|
|
isMainValue: false
|
|
}]
|
|
item.form.componentProps.searchCondition = [
|
|
{
|
|
key: 'businessType',
|
|
value: businessType.value,
|
|
isMainValue: false
|
|
}]
|
|
}
|
|
}
|
|
})
|
|
|
|
// 字段设置 更新主列表字段
|
|
const updataTableColumns = (val) => {
|
|
tableColumns.value = val
|
|
}
|
|
|
|
// 获得表格的各种操作
|
|
const { getList, setSearchParams } = tableMethods
|
|
|
|
// 列表头部按钮
|
|
const HeadButttondata = [
|
|
defaultButtons.defaultAddBtn({hasPermi:'wms:container-main-request:create'}), // 新增
|
|
defaultButtons.defaultImportBtn({hasPermi:'wms:container-main-request:import'}), // 导入
|
|
defaultButtons.defaultExportBtn({hasPermi:'wms:container-main-request:export'}), // 导出
|
|
defaultButtons.defaultFreshBtn(null), // 刷新
|
|
defaultButtons.defaultFilterBtn(null), // 筛选
|
|
defaultButtons.defaultSetBtn(null), // 设置
|
|
// {
|
|
// label: '自定义扩展按钮',
|
|
// name: 'zdy',
|
|
// hide: false,
|
|
// type: 'primary',
|
|
// icon: 'Select',
|
|
// color: ''
|
|
// },
|
|
]
|
|
|
|
// 头部按钮事件
|
|
const buttonBaseClick = (val, item) => {
|
|
if (val == 'add') { // 新增
|
|
openForm('create')
|
|
} else if (val == 'import') { // 导入
|
|
handleImport()
|
|
} else if (val == 'export') { // 导出
|
|
handleExport()
|
|
} else if (val == 'refresh') { // 刷新
|
|
getList()
|
|
} else if (val == 'filtrate') { // 筛选
|
|
} else { // 其他按钮
|
|
console.log('其他按钮', item)
|
|
}
|
|
}
|
|
|
|
// 根据状态返回该按钮是否显示
|
|
const isShowMainButton = (row,val) => {
|
|
if (val.indexOf(row.status) > -1) {
|
|
return false
|
|
} else {
|
|
return true
|
|
}
|
|
}
|
|
|
|
// 列表-操作按钮
|
|
const butttondata = (row,$index) => {
|
|
const findIndex = row['masterId']?tableObject.tableList.findIndex(item=>item['masterId'] == row['masterId']):-1
|
|
if(findIndex>-1&&findIndex<$index){
|
|
return []
|
|
}
|
|
return [
|
|
defaultButtons.mainListCloseBtn({hide:isShowMainButton(row,['2','3','4','6']),hasPermi:'wms:container-main-request:close'}), // 关闭
|
|
defaultButtons.mainListReAddBtn({hide:isShowMainButton(row,['4','5']),hasPermi:'wms:container-main-request:reAdd'}), //重新添加
|
|
defaultButtons.mainListSubmitBtn({hide:isShowMainButton(row,['1']),hasPermi:'wms:container-main-request:submit'}), // 提交审批
|
|
defaultButtons.mainListTurnDownBtn({hide:isShowMainButton(row,['2']),hasPermi:'wms:container-main-request:refused'}), // 驳回
|
|
defaultButtons.mainListApproveBtn({hide:isShowMainButton(row,['2']),hasPermi:'wms:container-main-request:agree'}), // 审批通过
|
|
defaultButtons.mainListHandleBtn({hide:isShowMainButton(row,['3']),hasPermi:'wms:container-main-request:handle'}), // 处理
|
|
defaultButtons.mainListEditBtn({hide:isShowMainButton(row,['1']),hasPermi:'wms:container-main-request:update'}), // 编辑
|
|
// defaultButtons.mainListDeleteBtn({hasPermi:'wms:container-main-request:delete'}), // 删除
|
|
]
|
|
}
|
|
|
|
// 列表-操作按钮事件
|
|
const buttonTableClick = async (val, row) => {
|
|
if (val == 'mainClose') { // 关闭
|
|
await message.confirm('确认要关闭吗?')
|
|
tableObject.loading = true
|
|
ContainerMainRequestApi.close(row.masterId).then(() => {
|
|
message.success(t('common.updateSuccess'))
|
|
tableObject.loading = false
|
|
getList()
|
|
}).catch(err => {
|
|
tableObject.loading = false
|
|
console.log(err)
|
|
})
|
|
} else if (val == 'mainReAdd') { // 重新添加
|
|
await message.confirm('确认要重新添加吗?')
|
|
tableObject.loading = true
|
|
ContainerMainRequestApi.reAdd(row.masterId).then(() => {
|
|
message.success(t('common.updateSuccess'))
|
|
tableObject.loading = false
|
|
getList()
|
|
}).catch(err => {
|
|
tableObject.loading = false
|
|
console.log(err)
|
|
})
|
|
} else if (val == 'mainSubmit') { // 提交审批
|
|
await message.confirm('确认要提交审批吗?')
|
|
tableObject.loading = true
|
|
ContainerMainRequestApi.submit(row.masterId).then(() => {
|
|
message.success(t('common.updateSuccess'))
|
|
tableObject.loading = false
|
|
getList()
|
|
}).catch(err => {
|
|
tableObject.loading = false
|
|
console.log(err)
|
|
})
|
|
} else if (val == 'mainTurnDown') { // 驳回
|
|
await message.confirm('确认要驳回吗?')
|
|
tableObject.loading = true
|
|
ContainerMainRequestApi.refused(row.masterId).then(() => {
|
|
message.success(t('common.updateSuccess'))
|
|
tableObject.loading = false
|
|
getList()
|
|
}).catch(err => {
|
|
tableObject.loading = false
|
|
console.log(err)
|
|
})
|
|
} else if (val == 'mainApprove') { // 审批通过
|
|
await message.confirm('确认要审批通过吗?')
|
|
tableObject.loading = true
|
|
ContainerMainRequestApi.agree(row.masterId).then(() => {
|
|
message.success(t('common.updateSuccess'))
|
|
tableObject.loading = false
|
|
getList()
|
|
}).catch(err => {
|
|
tableObject.loading = false
|
|
console.log(err)
|
|
})
|
|
} else if (val == 'mainHandle') { // 处理
|
|
await message.confirm('确认要处理吗?')
|
|
tableObject.loading = true
|
|
ContainerMainRequestApi.handle(row.masterId).then(() => {
|
|
message.success(t('common.updateSuccess'))
|
|
tableObject.loading = false
|
|
getList()
|
|
}).catch(err => {
|
|
tableObject.loading = false
|
|
console.log(err)
|
|
})
|
|
} else if (val == 'edit') { // 编辑
|
|
openForm('update', row)
|
|
} else if (val == 'delete') { // 删除
|
|
handleDelete(row.id)
|
|
}
|
|
}
|
|
|
|
/** 添加/修改操作 */
|
|
const basicFormRef = ref()
|
|
const openForm = (type: string, row?: any) => {
|
|
basicFormRef.value.open(type, row)
|
|
}
|
|
|
|
const isShowButton = ref(true)
|
|
|
|
/**
|
|
* tableForm方法
|
|
*/
|
|
const tableFormKeys = {}
|
|
ContainerDetailRequest.allSchemas.tableFormColumns.forEach(item => {
|
|
tableFormKeys[item.field] = item.default ? item.default : ''
|
|
})
|
|
const tableData = ref([])
|
|
|
|
// 添加明细
|
|
const handleAddTable = () => {
|
|
tableData.value.push(JSON.parse(JSON.stringify(tableFormKeys)))
|
|
}
|
|
// 删除明细
|
|
const handleDeleteTable = (item, index) => {
|
|
tableData.value.splice(index, 1)
|
|
}
|
|
const tableSelectionDelete = (selection) => {
|
|
tableData.value = tableData.value.filter(item => !selection.includes(item))
|
|
}
|
|
//为true表示子表数据中存在数量为0的数据
|
|
const flag = ref()
|
|
|
|
// form表单提交
|
|
const submitForm = async (formType,data) => {
|
|
data.subList = tableData.value // 拼接子表数据参数
|
|
data.subList.forEach(item => {
|
|
if(item.toQty == 0){
|
|
message.error(`到数量不能为0!`)
|
|
flag.value = true
|
|
return;
|
|
}
|
|
})
|
|
try {
|
|
if (formType === 'create') {
|
|
data.businessType = businessType.value
|
|
await ContainerMainRequestApi.createContainerMainRequest(data)
|
|
message.success(t('common.createSuccess'))
|
|
} else {
|
|
await ContainerMainRequestApi.updateContainerMainRequest(data)
|
|
message.success(t('common.updateSuccess'))
|
|
}
|
|
basicFormRef.value.dialogVisible = false
|
|
getList()
|
|
} finally {
|
|
basicFormRef.value.formLoading = false
|
|
}
|
|
}
|
|
|
|
/** 详情操作 */
|
|
const detailRef = ref()
|
|
const openDetail = (row: any, titleName: any, titleValue: any) => {
|
|
detailRef.value.openDetail(row, titleName, titleValue, 'basicContainerMainRequest')
|
|
}
|
|
|
|
/** 删除按钮操作 */
|
|
const handleDelete = async (id: number) => {
|
|
try {
|
|
// 删除的二次确认
|
|
await message.delConfirm()
|
|
// 发起删除
|
|
await ContainerMainRequestApi.deleteContainerMainRequest(id)
|
|
message.success(t('common.delSuccess'))
|
|
// 刷新列表
|
|
await getList()
|
|
} catch {}
|
|
}
|
|
|
|
/** 导出按钮操作 */
|
|
const exportLoading = ref(false) // 导出的加载中
|
|
const handleExport = async () => {
|
|
try {
|
|
// 导出的二次确认
|
|
await message.exportConfirm()
|
|
// 发起导出
|
|
exportLoading.value = true
|
|
if(routeName.value == 'ReturnContainerManageRequest'){
|
|
const data = await ContainerMainRequestApi.exportReturnContainerMainRequest(tableObject.params)
|
|
download.excel(data, '器具返回申请.xlsx')
|
|
}else if ( routeName.value == 'MoveContainerManageRequest') {
|
|
const data = await ContainerMainRequestApi.exportMoveContainerMainRequest(tableObject.params)
|
|
download.excel(data, '器具转移申请.xlsx')
|
|
}else if ( routeName.value == 'DeliverContainerManageRequest') {
|
|
const data = await ContainerMainRequestApi.exportDeliverContainerMainRequest(tableObject.params)
|
|
download.excel(data, '器具发运申请.xlsx')
|
|
}else{
|
|
const data = await ContainerMainRequestApi.exportContainerMainRequest(tableObject.params)
|
|
download.excel(data, '器具管理申请.xlsx')
|
|
}
|
|
} catch {
|
|
} finally {
|
|
exportLoading.value = false
|
|
}
|
|
}
|
|
|
|
/** 导入 */
|
|
const importFormRef = ref()
|
|
const handleImport = () => {
|
|
importFormRef.value.open()
|
|
}
|
|
// 导入附件弹窗所需的参数
|
|
const importTemplateData = reactive({
|
|
templateUrl: '',
|
|
templateTitle: 'importFileName.xlsx'
|
|
})
|
|
// 导入成功之后
|
|
const importSuccess = () => {
|
|
getList()
|
|
}
|
|
|
|
// 筛选提交
|
|
const searchFormClick = (searchData) => {
|
|
tableObject.params = {
|
|
isSearch: true,
|
|
filters: searchData.filters
|
|
}
|
|
getList() // 刷新当前列表
|
|
}
|
|
|
|
/** 初始化 **/
|
|
onMounted(async () => {
|
|
getList()
|
|
importTemplateData.templateUrl = await ContainerMainRequestApi.importTemplate()
|
|
})
|
|
|
|
</script>
|
|
|