chenfang
6 months ago
14 changed files with 2273 additions and 2 deletions
@ -0,0 +1,58 @@ |
|||
import request from '@/config/axios' |
|||
|
|||
export interface ContainerDetailRequestVO { |
|||
id: number |
|||
masterId: number |
|||
number: string |
|||
containerNumber: string |
|||
fromLocationCode: string |
|||
toLocationCode: string |
|||
qty: number |
|||
uom: string |
|||
remark: string |
|||
siteId: string |
|||
concurrencyStamp: number |
|||
fromOwnerCode: string |
|||
toOwnerCode: string |
|||
} |
|||
|
|||
// 查询器具管理申请子列表
|
|||
export const getContainerDetailRequestPage = async (params) => { |
|||
if (params.isSearch) { |
|||
delete params.isSearch |
|||
const data = {...params} |
|||
return await request.post({ url: '/wms/container-detail-request/senior', data }) |
|||
} else { |
|||
return await request.get({ url: `/wms/container-detail-request/page`, params }) |
|||
} |
|||
} |
|||
|
|||
// 查询器具管理申请子详情
|
|||
export const getContainerDetailRequest = async (id: number) => { |
|||
return await request.get({ url: `/wms/container-detail-request/get?id=` + id }) |
|||
} |
|||
|
|||
// 新增器具管理申请子
|
|||
export const createContainerDetailRequest = async (data: ContainerDetailRequestVO) => { |
|||
return await request.post({ url: `/wms/container-detail-request/create`, data }) |
|||
} |
|||
|
|||
// 修改器具管理申请子
|
|||
export const c = async (data: ContainerDetailRequestVO) => { |
|||
return await request.put({ url: `/wms/container-detail-request/update`, data }) |
|||
} |
|||
|
|||
// 删除器具管理申请子
|
|||
export const deleteContainerDetailRequest = async (id: number) => { |
|||
return await request.delete({ url: `/wms/container-detail-request/delete?id=` + id }) |
|||
} |
|||
|
|||
// 导出器具管理申请子 Excel
|
|||
export const exportContainerDetailRequest = async (params) => { |
|||
return await request.download({ url: `/wms/container-detail-request/export-excel`, params }) |
|||
} |
|||
|
|||
// 下载用户导入模板
|
|||
export const importTemplate = () => { |
|||
return request.download({ url: '/wms/container-detail-request/get-import-template' }) |
|||
} |
@ -0,0 +1,82 @@ |
|||
import request from '@/config/axios' |
|||
|
|||
export interface ContainerMainRequestVO { |
|||
id: number |
|||
type: string |
|||
available: string |
|||
remark: string |
|||
extraProperties: string |
|||
concurrencyStamp: number |
|||
siteId: string |
|||
} |
|||
|
|||
// 查询器具管理申请主列表
|
|||
export const getContainerMainRequestPage = async (params) => { |
|||
if (params.isSearch) { |
|||
delete params.isSearch |
|||
const data = {...params} |
|||
return await request.post({ url: '/wms/container-main-request/senior', data }) |
|||
} else { |
|||
return await request.get({ url: `/wms/container-main-request/page`, params }) |
|||
} |
|||
} |
|||
|
|||
// 查询器具管理申请主详情
|
|||
export const getContainerMainRequest = async (id: number) => { |
|||
return await request.get({ url: `/wms/container-main-request/get?id=` + id }) |
|||
} |
|||
|
|||
// 新增器具管理申请主
|
|||
export const createContainerMainRequest = async (data: ContainerMainRequestVO) => { |
|||
return await request.post({ url: `/wms/container-main-request/create`, data }) |
|||
} |
|||
|
|||
// 修改器具管理申请主
|
|||
export const updateContainerMainRequest = async (data: ContainerMainRequestVO) => { |
|||
return await request.put({ url: `/wms/container-main-request/update`, data }) |
|||
} |
|||
|
|||
// 删除器具管理申请主
|
|||
export const deleteContainerMainRequest = async (id: number) => { |
|||
return await request.delete({ url: `/wms/container-main-request/delete?id=` + id }) |
|||
} |
|||
|
|||
// 导出器具管理申请主 Excel
|
|||
export const exportContainerMainRequest = async (params) => { |
|||
return await request.download({ url: `/wms/container-main-request/export-excel`, params }) |
|||
} |
|||
|
|||
// 下载用户导入模板
|
|||
export const importTemplate = () => { |
|||
return request.download({ url: '/wms/container-main-request/get-import-template' }) |
|||
} |
|||
|
|||
// 关闭
|
|||
export const close = (id) => { |
|||
return request.put({ url: '/wms/container-main-request/close?id=' + id }) |
|||
} |
|||
|
|||
// 重新添加
|
|||
export const reAdd = (id) => { |
|||
return request.put({ url: '/wms/container-main-request/reAdd?id=' + id }) |
|||
} |
|||
|
|||
// 提交审批
|
|||
export const submit = (id) => { |
|||
return request.put({ url: '/wms/container-main-request/submit?id=' + id }) |
|||
} |
|||
|
|||
// 驳回
|
|||
export const refused = (id) => { |
|||
return request.put({ url: '/wms/container-main-request/refused?id=' + id }) |
|||
} |
|||
|
|||
// 审批通过
|
|||
export const agree = (id) => { |
|||
return request.put({ url: '/wms/container-main-request/agree?id=' + id }) |
|||
} |
|||
|
|||
// 处理
|
|||
export const handle = (id) => { |
|||
return request.put({ url: '/wms/container-main-request/handle?id=' + id }) |
|||
} |
@ -0,0 +1,56 @@ |
|||
import request from '@/config/axios' |
|||
|
|||
export interface ContainerRecordMainVO { |
|||
id: number |
|||
type: string |
|||
number: string |
|||
requestNumber: string |
|||
status: string |
|||
available: string |
|||
remark: string |
|||
extraProperties: string |
|||
concurrencyStamp: number |
|||
siteId: string |
|||
departmentCode: string |
|||
} |
|||
|
|||
// 查询器具管理记录主列表
|
|||
export const getContainerRecordMainPage = async (params) => { |
|||
if (params.isSearch) { |
|||
delete params.isSearch |
|||
const data = {...params} |
|||
return await request.post({ url: '/wms/container-record-main/senior', data }) |
|||
} else { |
|||
return await request.get({ url: `/wms/container-record-main/page`, params }) |
|||
} |
|||
} |
|||
|
|||
// 查询器具管理记录主详情
|
|||
export const getContainerRecordMain = async (id: number) => { |
|||
return await request.get({ url: `/wms/container-record-main/get?id=` + id }) |
|||
} |
|||
|
|||
// 新增器具管理记录主
|
|||
export const createContainerRecordMain = async (data: ContainerRecordMainVO) => { |
|||
return await request.post({ url: `/wms/container-record-main/create`, data }) |
|||
} |
|||
|
|||
// 修改器具管理记录主
|
|||
export const updateContainerRecordMain = async (data: ContainerRecordMainVO) => { |
|||
return await request.put({ url: `/wms/container-record-main/update`, data }) |
|||
} |
|||
|
|||
// 删除器具管理记录主
|
|||
export const deleteContainerRecordMain = async (id: number) => { |
|||
return await request.delete({ url: `/wms/container-record-main/delete?id=` + id }) |
|||
} |
|||
|
|||
// 导出器具管理记录主 Excel
|
|||
export const exportContainerRecordMain = async (params) => { |
|||
return await request.download({ url: `/wms/container-record-main/export-excel`, params }) |
|||
} |
|||
|
|||
// 下载用户导入模板
|
|||
export const importTemplate = () => { |
|||
return request.download({ url: '/wms/container-record-main/get-import-template' }) |
|||
} |
@ -0,0 +1,418 @@ |
|||
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
|||
import { TableColumn } from '@/types/table' |
|||
import { dateFormatter } from '@/utils/formatTime' |
|||
|
|||
import * as BalanceApi from '@/api/wms/balance' |
|||
import { Balance } from '@/views/wms/inventoryManage/balance/balance.data' |
|||
|
|||
import * as LocationApi from '@/api/wms/location' |
|||
import { Location } from '@/views/wms/basicDataManage/factoryModeling/location/location.data' |
|||
|
|||
import * as getRequestsettingApi from '@/api/wms/requestsetting/index' |
|||
|
|||
// 表单校验
|
|||
export const ContainerMainRequestRules = reactive({ |
|||
type:[ |
|||
{ required: true, message: '请选择类型', trigger: 'change' }, |
|||
], |
|||
concurrencyStamp: [required], |
|||
}) |
|||
|
|||
// 获取自动提交自动通过自动执行,跳过任务直接删生成记录的默认值
|
|||
const queryParams = { |
|||
pageSize:10, |
|||
pageNo:1, |
|||
code:'ContainerRequest' |
|||
} |
|||
const data = await getRequestsettingApi.getRequestsettingPage(queryParams) |
|||
const requestsettingData =data?.list[0]||{} |
|||
|
|||
// 获取当前操作人的部门
|
|||
import { useUserStore } from '@/store/modules/user' |
|||
const userStore = useUserStore() |
|||
const userDept = userStore.userSelfInfo.dept |
|||
// id 转str 否则form回显匹配不到
|
|||
userDept.id = userDept.id.toString() |
|||
const userDeptArray:any = [userDept] |
|||
|
|||
export const ContainerMainRequest = useCrudSchemas(reactive<CrudSchema[]>([ |
|||
{ |
|||
label: '单据号', |
|||
field: 'number', |
|||
sort: 'custom', |
|||
isSearch: true, |
|||
isForm: false, |
|||
table: { |
|||
width: 100 |
|||
}, |
|||
},{ |
|||
label: '类型', |
|||
field: 'type', |
|||
sort: 'custom', |
|||
dictType: DICT_TYPE.CONTAIN_MANAGE_TYPE, |
|||
dictClass: 'string', |
|||
isSearch: true, |
|||
isTable: true, |
|||
table: { |
|||
width: 120 |
|||
} |
|||
}, |
|||
{ |
|||
label: '是否可用', |
|||
field: 'available', |
|||
sort: 'custom', |
|||
dictType: DICT_TYPE.TRUE_FALSE, |
|||
dictClass: 'string', |
|||
isForm: false, |
|||
table: { |
|||
width: 150 |
|||
}, |
|||
}, |
|||
{ |
|||
label: '备注', |
|||
field: 'remark', |
|||
sort: 'custom', |
|||
isSearch: true, |
|||
}, |
|||
{ |
|||
label: '部门', |
|||
field: 'departmentCode', |
|||
sort: 'custom', |
|||
isForm: false, |
|||
table: { |
|||
width: 150 |
|||
}, |
|||
isTable:false, |
|||
formatter: (_: Recordable, __: TableColumn, cellValue: number) => { |
|||
return userDeptArray.find((account) => account.id == cellValue)?.name |
|||
}, |
|||
form: { |
|||
value: userDept.id, |
|||
component: 'Select', |
|||
api: () => userDeptArray, |
|||
componentProps: { |
|||
disabled: true, |
|||
optionsAlias: { |
|||
labelField: 'name', |
|||
valueField: 'id' |
|||
} |
|||
} |
|||
} |
|||
}, |
|||
{ |
|||
label: '自动提交', |
|||
field: 'autoCommit', |
|||
dictType: DICT_TYPE.TRUE_FALSE, |
|||
dictClass: 'string', |
|||
isTable: false, |
|||
isForm: false, |
|||
sort: 'custom', |
|||
table: { |
|||
width: 150 |
|||
}, |
|||
form: { |
|||
component: 'Switch', |
|||
value: requestsettingData.autoCommit, |
|||
componentProps: { |
|||
inactiveValue: 'FALSE', |
|||
activeValue: 'TRUE', |
|||
disabled: true |
|||
} |
|||
} |
|||
}, |
|||
{ |
|||
label: '自动通过', |
|||
field: 'autoAgree', |
|||
dictType: DICT_TYPE.TRUE_FALSE, |
|||
dictClass: 'string', |
|||
isTable: false, |
|||
isForm: false, |
|||
sort: 'custom', |
|||
table: { |
|||
width: 150 |
|||
}, |
|||
form: { |
|||
component: 'Switch', |
|||
value: requestsettingData.autoAgree, |
|||
componentProps: { |
|||
inactiveValue: 'FALSE', |
|||
activeValue: 'TRUE', |
|||
disabled: true |
|||
} |
|||
} |
|||
}, |
|||
{ |
|||
label: '自动执行', |
|||
field: 'autoExecute', |
|||
dictType: DICT_TYPE.TRUE_FALSE, |
|||
dictClass: 'string', |
|||
isTable: false, |
|||
isForm: false, |
|||
sort: 'custom', |
|||
table: { |
|||
width: 150 |
|||
}, |
|||
form: { |
|||
component: 'Switch', |
|||
value: requestsettingData.autoExecute, |
|||
componentProps: { |
|||
inactiveValue: 'FALSE', |
|||
activeValue: 'TRUE', |
|||
disabled: true |
|||
} |
|||
} |
|||
}, |
|||
{ |
|||
label: '直接生成记录', |
|||
field: 'directCreateRecord', |
|||
dictType: DICT_TYPE.TRUE_FALSE, |
|||
dictClass: 'string', |
|||
isForm: false, |
|||
isTable: false, |
|||
sort: 'custom', |
|||
table: { |
|||
width: 150 |
|||
}, |
|||
form: { |
|||
component: 'Switch', |
|||
value: requestsettingData.directCreateRecord, |
|||
componentProps: { |
|||
inactiveValue: 'FALSE', |
|||
activeValue: 'TRUE', |
|||
disabled: true |
|||
} |
|||
} |
|||
}, |
|||
{ |
|||
label: '创建时间', |
|||
field: 'createTime', |
|||
sort: 'custom', |
|||
formatter: dateFormatter, |
|||
search: { |
|||
component: 'DatePicker', |
|||
componentProps: { |
|||
valueFormat: 'YYYY-MM-DD HH:mm:ss', |
|||
type: 'daterange', |
|||
defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] |
|||
} |
|||
}, |
|||
table: { |
|||
width: 200 |
|||
}, |
|||
isForm: false, |
|||
}, |
|||
{ |
|||
label: '扩展属性', |
|||
field: 'extraProperties', |
|||
sort: 'custom', |
|||
isForm: false, |
|||
isTable: false |
|||
}, |
|||
{ |
|||
label: '并发乐观锁', |
|||
field: 'concurrencyStamp', |
|||
sort: 'custom', |
|||
form: { |
|||
component: 'InputNumber', |
|||
value: 0 |
|||
}, |
|||
isForm: false, |
|||
isTable: false |
|||
}, |
|||
{ |
|||
label: '地点ID', |
|||
field: 'siteId', |
|||
sort: 'custom', |
|||
isForm: false, |
|||
table: { |
|||
width: 100 |
|||
}, |
|||
}, |
|||
{ |
|||
label: '操作', |
|||
field: 'action', |
|||
isForm: false, |
|||
table: { |
|||
width: 150, |
|||
fixed: 'right' |
|||
} |
|||
} |
|||
])) |
|||
|
|||
// 表单校验
|
|||
export const ContainerDetailRequestRules = reactive({ |
|||
fromLocationCode: [required], |
|||
toLocationCode: [required], |
|||
concurrencyStamp: [required], |
|||
}) |
|||
|
|||
export const ContainerDetailRequest = useCrudSchemas(reactive<CrudSchema[]>([ |
|||
{ |
|||
label: 'id', |
|||
field: 'id', |
|||
sort: 'custom', |
|||
isForm: false, |
|||
isTableForm: false, |
|||
isTable: false |
|||
}, |
|||
{ |
|||
label: '主表ID', |
|||
field: 'masterId', |
|||
sort: 'custom', |
|||
isSearch: true, |
|||
form: { |
|||
component: 'InputNumber', |
|||
value: 0 |
|||
}, |
|||
isForm: false, |
|||
isTableForm: false, |
|||
isTable: false |
|||
}, |
|||
{ |
|||
label: '单据号', |
|||
field: 'number', |
|||
sort: 'custom', |
|||
isSearch: true, |
|||
isForm: false, |
|||
isTableForm: false, |
|||
isTable: false |
|||
}, |
|||
{ |
|||
label: '器具号', |
|||
field: 'containerNumber', |
|||
sort: 'custom', |
|||
tableForm:{ |
|||
isInpuFocusShow: true, // 开启查询弹窗
|
|||
searchListPlaceholder: '请选择器具号', |
|||
searchField: 'itemCode', |
|||
searchTitle: '库存余额信息', |
|||
searchAllSchemas: Balance.allSchemas, |
|||
searchPage: BalanceApi.selectConfigToBalance, |
|||
}, |
|||
form: { |
|||
// labelMessage: '信息提示说明!!!',
|
|||
componentProps: { |
|||
isSearchList: true, // 开启查询弹窗
|
|||
searchListPlaceholder: '请选择器具号', |
|||
searchField: 'itemCode', |
|||
searchTitle: '库存余额信息', |
|||
searchAllSchemas: Balance.allSchemas, |
|||
searchPage: BalanceApi.selectConfigToBalance, |
|||
} |
|||
} |
|||
}, |
|||
{ |
|||
label: '来源库位代码', |
|||
field: 'fromLocationCode', |
|||
sort: 'custom', |
|||
table: { |
|||
width: 150 |
|||
}, |
|||
}, |
|||
{ |
|||
label: '目标库位代码', |
|||
field: 'toLocationCode', |
|||
sort: 'custom', |
|||
table: { |
|||
width: 150 |
|||
}, |
|||
tableForm:{ |
|||
isInpuFocusShow: true, // 开启查询弹窗
|
|||
searchListPlaceholder: '请选择到库位代码', |
|||
searchField: 'code', |
|||
searchTitle: '库位信息', |
|||
searchAllSchemas: Location.allSchemas, |
|||
searchPage: LocationApi.selectBusinessTypeToLocation, |
|||
}, |
|||
form: { |
|||
// labelMessage: '信息提示说明!!!',
|
|||
componentProps: { |
|||
isSearchList: true, // 开启查询弹窗
|
|||
searchListPlaceholder: '请选择到库位代码', |
|||
searchField: 'code', |
|||
searchTitle: '库位信息', |
|||
searchAllSchemas: Location.allSchemas, |
|||
searchPage: LocationApi.selectBusinessTypeToLocation, |
|||
} |
|||
} |
|||
}, |
|||
{ |
|||
label: '数量', |
|||
field: 'qty', |
|||
sort: 'custom', |
|||
}, |
|||
{ |
|||
label: '计量单位', |
|||
field: 'uom', |
|||
sort: 'custom', |
|||
table: { |
|||
width: 120 |
|||
}, |
|||
}, |
|||
{ |
|||
label: '备注', |
|||
field: 'remark', |
|||
sort: 'custom', |
|||
}, |
|||
{ |
|||
label: '创建时间', |
|||
field: 'createTime', |
|||
sort: 'custom', |
|||
formatter: dateFormatter, |
|||
search: { |
|||
component: 'DatePicker', |
|||
componentProps: { |
|||
valueFormat: 'YYYY-MM-DD HH:mm:ss', |
|||
type: 'daterange', |
|||
defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] |
|||
} |
|||
}, |
|||
table: { |
|||
width: 200 |
|||
}, |
|||
isForm: false, |
|||
isTableForm: false |
|||
}, |
|||
{ |
|||
label: '地点ID', |
|||
field: 'siteId', |
|||
sort: 'custom', |
|||
isForm: false, |
|||
isTableForm: false, |
|||
isTable: false |
|||
}, |
|||
{ |
|||
label: '并发乐观锁', |
|||
field: 'concurrencyStamp', |
|||
sort: 'custom', |
|||
isForm: false, |
|||
isTableForm: false, |
|||
isTable: false |
|||
}, |
|||
{ |
|||
label: '从货主代码', |
|||
field: 'fromOwnerCode', |
|||
sort: 'custom', |
|||
isForm: false, |
|||
isTableForm: false, |
|||
isTable: false |
|||
}, |
|||
{ |
|||
label: '到货主代码', |
|||
field: 'toOwnerCode', |
|||
sort: 'custom', |
|||
isForm: false, |
|||
isTableForm: false, |
|||
isTable: false |
|||
}, |
|||
{ |
|||
label: '操作', |
|||
field: 'action', |
|||
isForm: false, |
|||
table: { |
|||
width: 150, |
|||
fixed: 'right' |
|||
} |
|||
} |
|||
])) |
|||
|
@ -0,0 +1,424 @@ |
|||
<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 }"> |
|||
<ButtonBase :Butttondata="butttondata" @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" |
|||
@searchTableSuccess="searchTableSuccess" |
|||
@submitForm="submitForm" |
|||
:isShowButton = isShowButton |
|||
/> |
|||
|
|||
<!-- 详情 --> |
|||
<Detail |
|||
ref="detailRef" |
|||
:isBasic="false" |
|||
:allSchemas="ContainerMainRequest.allSchemas" |
|||
:detailAllSchemas="ContainerDetailRequest.allSchemas" |
|||
:detailAllSchemasRules="ContainerDetailRequestRules" |
|||
:apiCreate="ContainerDetailRequestApi.createContainerDetailRequest" |
|||
:apiUpdate="ContainerDetailRequestApi.createContainerDetailRequest" |
|||
: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: 'ContainerMainRequest' }) |
|||
|
|||
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 == 'scrapContainerMainRequest') { |
|||
tableObject.params = { |
|||
type:'SCRAP' |
|||
} |
|||
// toLocationCode.value = "SCRAP_CONTAIN" |
|||
businessType.value = 'ScrapContainerMenageRequest' |
|||
importFileName.value = '器具报废申请' |
|||
} else if ( routeName.value == 'returnContainerMain') { |
|||
tableObject.params = { |
|||
type:'RETURN' |
|||
} |
|||
// fromLocationCode.value = null |
|||
// toLocationCode.value = "NULL_CONTAIN" |
|||
businessType.value = 'ReturnContainerMenageRequest' |
|||
importFileName.value = '器具返回申请' |
|||
} else if ( routeName.value == 'moveContainerMainRequest') { |
|||
tableObject.params = { |
|||
type:'MOVE' |
|||
} |
|||
// fromLocationCode.value = null |
|||
// toLocationCode.value = null |
|||
businessType.value = 'MoveContainerMenageRequest' |
|||
importFileName.value = '器具转移申请' |
|||
} else if ( routeName.value == 'deliverContainerMainRequest') { |
|||
tableObject.params = { |
|||
type: 'DELIVER', |
|||
} |
|||
// fromLocationCode.value = null |
|||
// toLocationCode.value = null |
|||
businessType.value = 'DeliverContainerMainRequest' |
|||
importFileName.value = '器具发运申请' |
|||
} else if( routeName.value == 'containerMainRequest'){ |
|||
businessType.value = 'ContainerMenageRequest' |
|||
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]['code'] |
|||
row['uom'] = val[0]['uom'] |
|||
}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]['itemCode'] |
|||
setV['fromLocationNumber'] = val[0]['locationNumber'] |
|||
}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 butttondata = (row,$index) => { |
|||
const findIndex = row['masterId']?tableObject.tableList.findIndex(item=>item['masterId'] == row['masterId']):-1 |
|||
if(findIndex>0&&findIndex<$index){ |
|||
return [] |
|||
} |
|||
return [ |
|||
defaultButtons.mainListCloseBtn({hide:isShowMainButton(row,['1','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 == '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) |
|||
} |
|||
|
|||
// form表单提交 |
|||
const submitForm = async (formType,data) => { |
|||
data.subList = tableData.value // 拼接子表数据参数 |
|||
data.subList.forEach(item => { |
|||
if(item.qty == 0){ |
|||
message.error(`到数量不能为0!`) |
|||
flag.value = true |
|||
return; |
|||
} |
|||
}) |
|||
try { |
|||
if (formType === 'create') { |
|||
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 |
|||
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> |
@ -0,0 +1,111 @@ |
|||
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
|||
import { dateFormatter } from '@/utils/formatTime' |
|||
|
|||
// 表单校验
|
|||
export const ContainerRecordMainRules = reactive({ |
|||
available: [required], |
|||
concurrencyStamp: [required], |
|||
}) |
|||
|
|||
export const ContainerRecordMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|||
{ |
|||
label: 'id', |
|||
field: 'id', |
|||
sort: 'custom', |
|||
isForm: false, |
|||
}, |
|||
{ |
|||
label: '类型', |
|||
field: 'type', |
|||
sort: 'custom', |
|||
dictType: DICT_TYPE.CONTAIN_MANAGE_TYPE, |
|||
dictClass: 'string', |
|||
isSearch: true, |
|||
}, |
|||
{ |
|||
label: '单据号', |
|||
field: 'number', |
|||
sort: 'custom', |
|||
isSearch: true, |
|||
}, |
|||
{ |
|||
label: '申请单号', |
|||
field: 'requestNumber', |
|||
sort: 'custom', |
|||
isSearch: true, |
|||
}, |
|||
{ |
|||
label: '状态', |
|||
field: 'status', |
|||
sort: 'custom', |
|||
isSearch: true, |
|||
form: { |
|||
component: 'Radio' |
|||
}, |
|||
}, |
|||
{ |
|||
label: '是否可用', |
|||
field: 'available', |
|||
sort: 'custom', |
|||
isSearch: true, |
|||
}, |
|||
{ |
|||
label: '备注', |
|||
field: 'remark', |
|||
sort: 'custom', |
|||
isSearch: true, |
|||
}, |
|||
{ |
|||
label: '扩展属性', |
|||
field: 'extraProperties', |
|||
sort: 'custom', |
|||
isSearch: true, |
|||
}, |
|||
{ |
|||
label: '并发乐观锁', |
|||
field: 'concurrencyStamp', |
|||
sort: 'custom', |
|||
isSearch: true, |
|||
form: { |
|||
component: 'InputNumber', |
|||
value: 0 |
|||
}, |
|||
}, |
|||
{ |
|||
label: '地点ID', |
|||
field: 'siteId', |
|||
sort: 'custom', |
|||
isSearch: true, |
|||
}, |
|||
{ |
|||
label: '创建时间', |
|||
field: 'createTime', |
|||
sort: 'custom', |
|||
formatter: dateFormatter, |
|||
isSearch: true, |
|||
search: { |
|||
component: 'DatePicker', |
|||
componentProps: { |
|||
valueFormat: 'YYYY-MM-DD HH:mm:ss', |
|||
type: 'daterange', |
|||
defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] |
|||
} |
|||
}, |
|||
isForm: false, |
|||
}, |
|||
{ |
|||
label: '部门', |
|||
field: 'departmentCode', |
|||
sort: 'custom', |
|||
isSearch: true, |
|||
}, |
|||
{ |
|||
label: '操作', |
|||
field: 'action', |
|||
isForm: false, |
|||
table: { |
|||
width: 150, |
|||
fixed: 'right' |
|||
} |
|||
} |
|||
])) |
@ -0,0 +1,244 @@ |
|||
<template> |
|||
<ContentWrap> |
|||
<!-- 搜索工作栏 --> |
|||
<Search :schema="ContainerRecordMain.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" /> |
|||
</ContentWrap> |
|||
|
|||
<!-- 列表头部 --> |
|||
<TableHead |
|||
:HeadButttondata="HeadButttondata" |
|||
@button-base-click="buttonBaseClick" |
|||
:routeName="routeName" |
|||
@updataTableColumns="updataTableColumns" |
|||
@searchFormClick="searchFormClick" |
|||
:allSchemas="ContainerRecordMain.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 #code="{row}"> |
|||
<el-button type="primary" link @click="openDetail(row, '代码', row.code)"> |
|||
<span>{{ row.code }}</span> |
|||
</el-button> |
|||
</template> |
|||
<template #action="{ row }"> |
|||
<ButtonBase :Butttondata="butttondata" @button-base-click="buttonTableClick($event,row)" /> |
|||
</template> |
|||
</Table> |
|||
</ContentWrap> |
|||
|
|||
<!-- 表单弹窗:添加/修改 --> |
|||
<BasicForm |
|||
ref="basicFormRef" |
|||
@success="formsSuccess" |
|||
:rules="ContainerRecordMainRules" |
|||
:formAllSchemas="ContainerRecordMain.allSchemas" |
|||
:apiUpdate="ContainerRecordMainApi.updateContainerRecordMain" |
|||
:apiCreate="ContainerRecordMainApi.createContainerRecordMain" |
|||
@searchTableSuccess="searchTableSuccess" |
|||
:isBusiness="false" |
|||
/> |
|||
|
|||
<!-- 详情 --> |
|||
<Detail ref="detailRef" :isBasic="true" :allSchemas="ContainerRecordMain.allSchemas" /> |
|||
|
|||
<!-- 导入 --> |
|||
<ImportForm ref="importFormRef" url="/wms/container-record-main/import" :importTemplateData="importTemplateData" @success="importSuccess" /> |
|||
</template> |
|||
|
|||
<script setup lang="ts"> |
|||
import download from '@/utils/download' |
|||
import { ContainerRecordMain,ContainerRecordMainRules } from './containerRecordMain.data' |
|||
import * as ContainerRecordMainApi from '@/api/wms/containerRecordMain' |
|||
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: 'ContainerRecordMain' }) |
|||
|
|||
const message = useMessage() // 消息弹窗 |
|||
const { t } = useI18n() // 国际化 |
|||
|
|||
const route = useRoute() // 路由信息 |
|||
const routeName = ref() |
|||
routeName.value = route.name |
|||
const tableColumns = ref(ContainerRecordMain.allSchemas.tableColumns) |
|||
|
|||
// 查询页面返回 |
|||
const searchTableSuccess = (formField, searchField, val, formRef) => { |
|||
nextTick(() => { |
|||
const setV = {} |
|||
setV[formField] = val[0][searchField] |
|||
formRef.setValues(setV) |
|||
}) |
|||
} |
|||
|
|||
// 字段设置 更新主列表字段 |
|||
const updataTableColumns = (val) => { |
|||
tableColumns.value = val |
|||
} |
|||
|
|||
const { tableObject, tableMethods } = useTable({ |
|||
getListApi: ContainerRecordMainApi.getContainerRecordMainPage // 分页接口 |
|||
}) |
|||
|
|||
// 获得表格的各种操作 |
|||
const { getList, setSearchParams } = tableMethods |
|||
|
|||
// 列表头部按钮 |
|||
const HeadButttondata = [ |
|||
defaultButtons.defaultAddBtn({hasPermi:'wms:containerRecordMain:create'}), // 新增 |
|||
defaultButtons.defaultImportBtn({hasPermi:'wms:containerRecordMain:import'}), // 导入 |
|||
defaultButtons.defaultExportBtn({hasPermi:'wms:containerRecordMain: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 butttondata = [ |
|||
defaultButtons.mainListEditBtn({hasPermi:'wms:containerRecordMain:update'}), // 编辑 |
|||
defaultButtons.mainListDeleteBtn({hasPermi:'wms:containerRecordMain:delete'}), // 删除 |
|||
] |
|||
|
|||
// 列表-操作按钮事件 |
|||
const buttonTableClick = async (val, row) => { |
|||
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) |
|||
} |
|||
|
|||
// form表单提交 |
|||
const formsSuccess = async (formType,data) => { |
|||
var isHave =ContainerRecordMain.allSchemas.formSchema.some(function (item) { |
|||
return item.field === 'activeTime' || item.field === 'expireTime'; |
|||
}); |
|||
if(isHave){ |
|||
if(data.activeTime && data.expireTime && data.activeTime >=data.expireTime){ |
|||
message.error('失效时间要大于生效时间') |
|||
return; |
|||
} |
|||
} |
|||
if(data.activeTime==0)data.activeTime = null; |
|||
if(data.expireTime==0)data.expireTime = null; |
|||
if (formType === 'create') { |
|||
await ContainerRecordMainApi.createContainerRecordMain(data) |
|||
message.success(t('common.createSuccess')) |
|||
} else { |
|||
await ContainerRecordMainApi.updateContainerRecordMain(data) |
|||
message.success(t('common.updateSuccess')) |
|||
} |
|||
basicFormRef.value.dialogVisible = false |
|||
getList() |
|||
} |
|||
|
|||
/** 详情操作 */ |
|||
const detailRef = ref() |
|||
const openDetail = (row: any, titleName: any, titleValue: any) => { |
|||
detailRef.value.openDetail(row, titleName, titleValue, 'basicContainerRecordMain') |
|||
} |
|||
|
|||
/** 删除按钮操作 */ |
|||
const handleDelete = async (id: number) => { |
|||
try { |
|||
// 删除的二次确认 |
|||
await message.delConfirm() |
|||
// 发起删除 |
|||
await ContainerRecordMainApi.deleteContainerRecordMain(id) |
|||
message.success(t('common.delSuccess')) |
|||
// 刷新列表 |
|||
await getList() |
|||
} catch {} |
|||
} |
|||
|
|||
/** 导出按钮操作 */ |
|||
const exportLoading = ref(false) // 导出的加载中 |
|||
const handleExport = async () => { |
|||
try { |
|||
// 导出的二次确认 |
|||
await message.exportConfirm() |
|||
// 发起导出 |
|||
exportLoading.value = true |
|||
const data = await ContainerRecordMainApi.exportContainerRecordMain(tableObject.params) |
|||
download.excel(data, '器具管理记录主.xlsx') |
|||
} catch { |
|||
} finally { |
|||
exportLoading.value = false |
|||
} |
|||
} |
|||
|
|||
/** 导入 */ |
|||
const importFormRef = ref() |
|||
const handleImport = () => { |
|||
importFormRef.value.open() |
|||
} |
|||
// 导入附件弹窗所需的参数 |
|||
const importTemplateData = reactive({ |
|||
templateUrl: '', |
|||
templateTitle: '器具管理记录主导入模版.xlsx' |
|||
}) |
|||
// 导入成功之后 |
|||
const importSuccess = () => { |
|||
getList() |
|||
} |
|||
|
|||
// 筛选提交 |
|||
const searchFormClick = (searchData) => { |
|||
tableObject.params = { |
|||
isSearch: true, |
|||
filters: searchData.filters |
|||
} |
|||
getList() // 刷新当前列表 |
|||
} |
|||
|
|||
/** 初始化 **/ |
|||
onMounted(async () => { |
|||
getList() |
|||
importTemplateData.templateUrl = await ContainerRecordMainApi.importTemplate() |
|||
}) |
|||
|
|||
</script> |
@ -0,0 +1,385 @@ |
|||
<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 }"> |
|||
<ButtonBase :Butttondata="butttondata" @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" |
|||
@searchTableSuccess="searchTableSuccess" |
|||
@submitForm="submitForm" |
|||
:isShowButton = isShowButton |
|||
/> |
|||
|
|||
<!-- 详情 --> |
|||
<Detail |
|||
ref="detailRef" |
|||
:isBasic="false" |
|||
:allSchemas="ContainerMainRequest.allSchemas" |
|||
:detailAllSchemas="ContainerDetailRequest.allSchemas" |
|||
:detailAllSchemasRules="ContainerDetailRequestRules" |
|||
:apiCreate="ContainerDetailRequestApi.createContainerDetailRequest" |
|||
:apiUpdate="ContainerDetailRequestApi.createContainerDetailRequest" |
|||
: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 './initialContainerMainRequest.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: 'initialContainerMainRequest' }) |
|||
|
|||
const message = useMessage() // 消息弹窗 |
|||
const { t } = useI18n() // 国际化 |
|||
const businessType = 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 == 'initialContainerMainRequest') { |
|||
tableObject.params = { |
|||
type:'INITIAL' |
|||
} |
|||
businessType.value = 'InitialContainerManageRequest' |
|||
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]['code'] |
|||
row['uom'] = val[0]['uom'] |
|||
}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 => { |
|||
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 butttondata = (row,$index) => { |
|||
const findIndex = row['masterId']?tableObject.tableList.findIndex(item=>item['masterId'] == row['masterId']):-1 |
|||
if(findIndex>0&&findIndex<$index){ |
|||
return [] |
|||
} |
|||
return [ |
|||
defaultButtons.mainListCloseBtn({hide:isShowMainButton(row,['1','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 butttondata = [ |
|||
// defaultButtons.mainListEditBtn({hasPermi:'wms:container-main-request:update'}), // 编辑 |
|||
// defaultButtons.mainListDeleteBtn({hasPermi:'wms:container-main-request:delete'}), // 删除 |
|||
// ] |
|||
|
|||
// 列表-操作按钮事件 |
|||
const buttonTableClick = async (val, row) => { |
|||
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) |
|||
} |
|||
|
|||
//为true表示子表数据中存在数量为0的数据 |
|||
const flag = ref() |
|||
|
|||
// form表单提交 |
|||
const submitForm = async (formType,data) => { |
|||
data.subList = tableData.value // 拼接子表数据参数 |
|||
data.subList.forEach(item => { |
|||
if(item.qty == 0){ |
|||
message.error(`到数量不能为0!`) |
|||
flag.value = true |
|||
return; |
|||
} |
|||
}) |
|||
try { |
|||
if (formType === 'create') { |
|||
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 |
|||
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> |
|||
./initialContainerMainRequest.data |
@ -0,0 +1,446 @@ |
|||
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
|||
import { TableColumn } from '@/types/table' |
|||
import { dateFormatter } from '@/utils/formatTime' |
|||
|
|||
import * as BalanceApi from '@/api/wms/balance' |
|||
import { Balance } from '@/views/wms/inventoryManage/balance/balance.data' |
|||
|
|||
import * as LocationApi from '@/api/wms/location' |
|||
import { Location } from '@/views/wms/basicDataManage/factoryModeling/location/location.data' |
|||
|
|||
import * as ItembasicApi from '@/api/wms/itembasic' |
|||
import { Itembasic } from '@/views/wms/basicDataManage/itemManage/itembasic/itembasic.data' |
|||
|
|||
import * as getRequestsettingApi from '@/api/wms/requestsetting/index' |
|||
|
|||
// 表单校验
|
|||
export const ContainerMainRequestRules = reactive({ |
|||
type:[ |
|||
{ required: true, message: '请选择类型', trigger: 'change' }, |
|||
], |
|||
concurrencyStamp: [required], |
|||
}) |
|||
|
|||
// 获取自动提交自动通过自动执行,跳过任务直接删生成记录的默认值
|
|||
const queryParams = { |
|||
pageSize:10, |
|||
pageNo:1, |
|||
code:'ContainerRequest' |
|||
} |
|||
const data = await getRequestsettingApi.getRequestsettingPage(queryParams) |
|||
const requestsettingData =data?.list[0]||{} |
|||
|
|||
// 获取当前操作人的部门
|
|||
import { useUserStore } from '@/store/modules/user' |
|||
import { ItemBasic } from '@/utils/disposition/formFields' |
|||
const userStore = useUserStore() |
|||
const userDept = userStore.userSelfInfo.dept |
|||
// id 转str 否则form回显匹配不到
|
|||
userDept.id = userDept.id.toString() |
|||
const userDeptArray:any = [userDept] |
|||
|
|||
export const ContainerMainRequest = useCrudSchemas(reactive<CrudSchema[]>([ |
|||
{ |
|||
label: '单据号', |
|||
field: 'number', |
|||
sort: 'custom', |
|||
isSearch: true, |
|||
isForm: false, |
|||
table: { |
|||
width: 100 |
|||
}, |
|||
}, |
|||
{ |
|||
label: '状态', |
|||
field: 'status', |
|||
dictType: DICT_TYPE.REQUEST_STATUS, |
|||
dictClass: 'string', |
|||
isSearch: true, |
|||
isForm: false, |
|||
isTable: true, |
|||
sort: 'custom', |
|||
table: { |
|||
width: 150 |
|||
}, |
|||
form: { |
|||
value: '1', |
|||
componentProps: { |
|||
disabled: true |
|||
} |
|||
} |
|||
}, |
|||
{ |
|||
label: '类型', |
|||
field: 'type', |
|||
sort: 'custom', |
|||
dictType: DICT_TYPE.CONTAIN_MANAGE_TYPE, |
|||
dictClass: 'string', |
|||
isSearch: true, |
|||
isTable: true, |
|||
table: { |
|||
width: 120 |
|||
} |
|||
}, |
|||
{ |
|||
label: '是否可用', |
|||
field: 'available', |
|||
sort: 'custom', |
|||
dictType: DICT_TYPE.TRUE_FALSE, |
|||
dictClass: 'string', |
|||
isForm: false, |
|||
table: { |
|||
width: 150 |
|||
}, |
|||
}, |
|||
{ |
|||
label: '备注', |
|||
field: 'remark', |
|||
sort: 'custom', |
|||
isSearch: true, |
|||
}, |
|||
{ |
|||
label: '部门', |
|||
field: 'departmentCode', |
|||
sort: 'custom', |
|||
isForm: false, |
|||
table: { |
|||
width: 150 |
|||
}, |
|||
isTable:false, |
|||
formatter: (_: Recordable, __: TableColumn, cellValue: number) => { |
|||
return userDeptArray.find((account) => account.id == cellValue)?.name |
|||
}, |
|||
form: { |
|||
value: userDept.id, |
|||
component: 'Select', |
|||
api: () => userDeptArray, |
|||
componentProps: { |
|||
disabled: true, |
|||
optionsAlias: { |
|||
labelField: 'name', |
|||
valueField: 'id' |
|||
} |
|||
} |
|||
} |
|||
}, |
|||
{ |
|||
label: '自动提交', |
|||
field: 'autoCommit', |
|||
dictType: DICT_TYPE.TRUE_FALSE, |
|||
dictClass: 'string', |
|||
isTable: false, |
|||
isForm: false, |
|||
sort: 'custom', |
|||
table: { |
|||
width: 150 |
|||
}, |
|||
form: { |
|||
component: 'Switch', |
|||
value: requestsettingData.autoCommit, |
|||
componentProps: { |
|||
inactiveValue: 'FALSE', |
|||
activeValue: 'TRUE', |
|||
disabled: true |
|||
} |
|||
} |
|||
}, |
|||
{ |
|||
label: '自动通过', |
|||
field: 'autoAgree', |
|||
dictType: DICT_TYPE.TRUE_FALSE, |
|||
dictClass: 'string', |
|||
isTable: false, |
|||
isForm: false, |
|||
sort: 'custom', |
|||
table: { |
|||
width: 150 |
|||
}, |
|||
form: { |
|||
component: 'Switch', |
|||
value: requestsettingData.autoAgree, |
|||
componentProps: { |
|||
inactiveValue: 'FALSE', |
|||
activeValue: 'TRUE', |
|||
disabled: true |
|||
} |
|||
} |
|||
}, |
|||
{ |
|||
label: '自动执行', |
|||
field: 'autoExecute', |
|||
dictType: DICT_TYPE.TRUE_FALSE, |
|||
dictClass: 'string', |
|||
isTable: false, |
|||
isForm: false, |
|||
sort: 'custom', |
|||
table: { |
|||
width: 150 |
|||
}, |
|||
form: { |
|||
component: 'Switch', |
|||
value: requestsettingData.autoExecute, |
|||
componentProps: { |
|||
inactiveValue: 'FALSE', |
|||
activeValue: 'TRUE', |
|||
disabled: true |
|||
} |
|||
} |
|||
}, |
|||
{ |
|||
label: '直接生成记录', |
|||
field: 'directCreateRecord', |
|||
dictType: DICT_TYPE.TRUE_FALSE, |
|||
dictClass: 'string', |
|||
isForm: false, |
|||
isTable: false, |
|||
sort: 'custom', |
|||
table: { |
|||
width: 150 |
|||
}, |
|||
form: { |
|||
component: 'Switch', |
|||
value: requestsettingData.directCreateRecord, |
|||
componentProps: { |
|||
inactiveValue: 'FALSE', |
|||
activeValue: 'TRUE', |
|||
disabled: true |
|||
} |
|||
} |
|||
}, |
|||
{ |
|||
label: '创建时间', |
|||
field: 'createTime', |
|||
sort: 'custom', |
|||
formatter: dateFormatter, |
|||
search: { |
|||
component: 'DatePicker', |
|||
componentProps: { |
|||
valueFormat: 'YYYY-MM-DD HH:mm:ss', |
|||
type: 'daterange', |
|||
defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] |
|||
} |
|||
}, |
|||
table: { |
|||
width: 200 |
|||
}, |
|||
isForm: false, |
|||
}, |
|||
{ |
|||
label: '扩展属性', |
|||
field: 'extraProperties', |
|||
sort: 'custom', |
|||
isForm: false, |
|||
isTable: false |
|||
}, |
|||
{ |
|||
label: '并发乐观锁', |
|||
field: 'concurrencyStamp', |
|||
sort: 'custom', |
|||
form: { |
|||
component: 'InputNumber', |
|||
value: 0 |
|||
}, |
|||
isForm: false, |
|||
isTable: false |
|||
}, |
|||
{ |
|||
label: '地点ID', |
|||
field: 'siteId', |
|||
sort: 'custom', |
|||
isForm: false, |
|||
table: { |
|||
width: 100 |
|||
}, |
|||
}, |
|||
{ |
|||
label: '操作', |
|||
field: 'action', |
|||
isForm: false, |
|||
table: { |
|||
width: 150, |
|||
fixed: 'right' |
|||
} |
|||
} |
|||
])) |
|||
|
|||
// 表单校验
|
|||
export const ContainerDetailRequestRules = reactive({ |
|||
fromLocationCode: [required], |
|||
toLocationCode: [required], |
|||
concurrencyStamp: [required], |
|||
}) |
|||
|
|||
export const ContainerDetailRequest = useCrudSchemas(reactive<CrudSchema[]>([ |
|||
{ |
|||
label: 'id', |
|||
field: 'id', |
|||
sort: 'custom', |
|||
isForm: false, |
|||
isTableForm: false, |
|||
isTable: false |
|||
}, |
|||
{ |
|||
label: '主表ID', |
|||
field: 'masterId', |
|||
sort: 'custom', |
|||
isSearch: true, |
|||
form: { |
|||
component: 'InputNumber', |
|||
value: 0 |
|||
}, |
|||
isForm: false, |
|||
isTableForm: false, |
|||
isTable: false |
|||
}, |
|||
{ |
|||
label: '单据号', |
|||
field: 'number', |
|||
sort: 'custom', |
|||
isSearch: true, |
|||
isForm: false, |
|||
isTableForm: false, |
|||
isTable: false |
|||
}, |
|||
{ |
|||
label: '器具号', |
|||
field: 'containerNumber', |
|||
sort: 'custom', |
|||
tableForm:{ |
|||
isInpuFocusShow: true, // 开启查询弹窗
|
|||
searchListPlaceholder: '请选择器具号', |
|||
searchField: 'itemCode', |
|||
searchTitle: '器具信息', |
|||
searchAllSchemas: Itembasic.allSchemas, |
|||
searchPage: ItembasicApi.selectConfigToItembasic, |
|||
}, |
|||
form: { |
|||
// labelMessage: '信息提示说明!!!',
|
|||
componentProps: { |
|||
isSearchList: true, // 开启查询弹窗
|
|||
searchListPlaceholder: '请选择器具号', |
|||
searchField: 'itemCode', |
|||
searchTitle: '器具信息', |
|||
searchAllSchemas: Itembasic.allSchemas, |
|||
searchPage: ItembasicApi.selectConfigToItembasic, |
|||
} |
|||
} |
|||
}, |
|||
{ |
|||
label: '目标库位代码', |
|||
field: 'toLocationCode', |
|||
sort: 'custom', |
|||
table: { |
|||
width: 150 |
|||
}, |
|||
tableForm:{ |
|||
isInpuFocusShow: true, // 开启查询弹窗
|
|||
searchListPlaceholder: '请选择到库位代码', |
|||
searchField: 'code', |
|||
searchTitle: '库位信息', |
|||
searchAllSchemas: Location.allSchemas, |
|||
searchPage: LocationApi.selectBusinessTypeToLocation, |
|||
}, |
|||
form: { |
|||
// labelMessage: '信息提示说明!!!',
|
|||
componentProps: { |
|||
isSearchList: true, // 开启查询弹窗
|
|||
searchListPlaceholder: '请选择到库位代码', |
|||
searchField: 'code', |
|||
searchTitle: '库位信息', |
|||
searchAllSchemas: Location.allSchemas, |
|||
searchPage: LocationApi.selectBusinessTypeToLocation, |
|||
} |
|||
} |
|||
}, |
|||
{ |
|||
label: '到数量', |
|||
field: 'toQty', |
|||
sort: 'custom', |
|||
}, |
|||
{ |
|||
label: '计量单位', |
|||
field: 'uom', |
|||
dictType: DICT_TYPE.UOM, |
|||
dictClass: 'string', |
|||
isTable: true, |
|||
sort: 'custom', |
|||
table: { |
|||
width: 150 |
|||
}, |
|||
tableForm: { |
|||
type: 'Select', |
|||
disabled: true |
|||
}, |
|||
form: { |
|||
componentProps: { |
|||
disabled: true |
|||
} |
|||
} |
|||
}, |
|||
{ |
|||
label: '备注', |
|||
field: 'remark', |
|||
sort: 'custom', |
|||
}, |
|||
{ |
|||
label: '创建时间', |
|||
field: 'createTime', |
|||
sort: 'custom', |
|||
formatter: dateFormatter, |
|||
search: { |
|||
component: 'DatePicker', |
|||
componentProps: { |
|||
valueFormat: 'YYYY-MM-DD HH:mm:ss', |
|||
type: 'daterange', |
|||
defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] |
|||
} |
|||
}, |
|||
table: { |
|||
width: 200 |
|||
}, |
|||
isForm: false, |
|||
isTableForm: false |
|||
}, |
|||
{ |
|||
label: '地点ID', |
|||
field: 'siteId', |
|||
sort: 'custom', |
|||
isForm: false, |
|||
isTableForm: false, |
|||
isTable: false |
|||
}, |
|||
{ |
|||
label: '并发乐观锁', |
|||
field: 'concurrencyStamp', |
|||
sort: 'custom', |
|||
isForm: false, |
|||
isTableForm: false, |
|||
isTable: false |
|||
}, |
|||
{ |
|||
label: '从货主代码', |
|||
field: 'fromOwnerCode', |
|||
sort: 'custom', |
|||
isForm: false, |
|||
isTableForm: false, |
|||
isTable: false |
|||
}, |
|||
{ |
|||
label: '到货主代码', |
|||
field: 'toOwnerCode', |
|||
sort: 'custom', |
|||
isForm: false, |
|||
isTableForm: false, |
|||
isTable: false |
|||
}, |
|||
{ |
|||
label: '操作', |
|||
field: 'action', |
|||
isForm: false, |
|||
table: { |
|||
width: 150, |
|||
fixed: 'right' |
|||
} |
|||
} |
|||
])) |
|||
|
Loading…
Reference in new issue