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.
564 lines
18 KiB
564 lines
18 KiB
<template>
|
|
<ContentWrap>
|
|
<!-- 搜索工作栏 -->
|
|
<Search :schema="[...IssueRequestMain.allSchemas.searchSchema,...IssueRequestDetail.allSchemas.searchSchema]" @search="setSearchParams" @reset="setSearchParams" />
|
|
</ContentWrap>
|
|
|
|
<!-- 列表头部 -->
|
|
<TableHead
|
|
:HeadButttondata="HeadButttondata"
|
|
@button-base-click="buttonBaseClick"
|
|
:routeName="routeName"
|
|
@updataTableColumns="updataTableColumns"
|
|
@searchFormClick="searchFormClick"
|
|
:allSchemas="IssueRequestMain.allSchemas"
|
|
:detailAllSchemas="IssueRequestDetail.allSchemas"
|
|
/>
|
|
|
|
<!-- 列表 -->
|
|
<ContentWrap>
|
|
<Table v-clientTable
|
|
: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="formRef"
|
|
:isOpenSearchTable="true"
|
|
fieldTableColumn="itemCode"
|
|
@success="getList"
|
|
:rules="IssueRequestMainRules"
|
|
:formAllSchemas="IssueRequestMain.allSchemas"
|
|
:tableAllSchemas="IssueRequestDetail.allSchemas"
|
|
:tableFormRules="IssueRequestDetailRules"
|
|
:tableData="tableData"
|
|
:apiUpdate="IssueRequestMainApi.updateIssueRequestMain"
|
|
:apiCreate="IssueRequestMainApi.createIssueRequestMain"
|
|
:isBusiness="true"
|
|
@handleAddTable="handleAddTable"
|
|
@handleDeleteTable="handleDeleteTable"
|
|
:isShowReduceButtonSelection="true"
|
|
@tableSelectionDelete="tableSelectionDelete"
|
|
@searchTableSuccess="searchTableSuccess"
|
|
@submitForm="submitForm"
|
|
@onEnter="onEnter"
|
|
@onChange="onChange"
|
|
@clearSearchInput="onChange"
|
|
:sumFormDataByTableCustom ="(formRef,formModel,tableData)=>{
|
|
tableData.forEach(item=>{
|
|
item.qty = item.countQty*item.packQty
|
|
})
|
|
}"
|
|
>
|
|
<template #default="{row}">
|
|
<el-input-number disabled v-model="row.qty"></el-input-number>
|
|
</template>
|
|
</BasicForm>
|
|
|
|
<!-- 详情 -->
|
|
<Detail
|
|
ref="detailRef"
|
|
:isBasic="false"
|
|
:allSchemas="IssueRequestMain.allSchemas"
|
|
:detailAllSchemas="IssueRequestDetail.allSchemas"
|
|
:detailAllSchemasRules="IssueRequestDetailRules"
|
|
:apiCreate="IssueRequestDetailApi.createIssueRequestDetail"
|
|
:apiUpdate="IssueRequestDetailApi.updateIssueRequestDetail"
|
|
:apiPage="IssueRequestDetailApi.getIssueRequestDetailPage"
|
|
:apiDelete="IssueRequestDetailApi.deleteIssueRequestDetail"
|
|
@searchTableSuccessDetail="searchTableSuccessDetail"
|
|
:detailValidate="detailValidate"
|
|
/>
|
|
|
|
<!-- 导入 -->
|
|
<ImportForm ref="importFormRef" url="/wms/issue-request-main/import" :importTemplateData="importTemplateData"
|
|
@success="importSuccess" :updateIsDisable="true" :coverIsDisable="true" :mode="2" />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import download from '@/utils/download'
|
|
import * as ProductionlineApi from '@/api/wms/productionline'
|
|
import { Productionline } from '@/views/wms/basicDataManage/factoryModeling/productionline/productionline.data'
|
|
import { CACHE_KEY, useCache } from '@/hooks/web/useCache'
|
|
import { IssueRequestMain,IssueRequestMainRules,IssueRequestDetail,IssueRequestDetailRules } from './issueRequestMain.data'
|
|
import * as IssueRequestMainApi from '@/api/wms/issueRequestMain'
|
|
import * as IssueRequestDetailApi from '@/api/wms/issueRequestDetail'
|
|
import * as defaultButtons from '@/utils/disposition/defaultButtons'
|
|
import * as WorkstationApi from '@/api/wms/workstation'
|
|
|
|
// 发料申请
|
|
defineOptions({ name: 'IssueRequestMain' })
|
|
|
|
const message = useMessage() // 消息弹窗
|
|
const { t } = useI18n() // 国际化
|
|
|
|
const route = useRoute() // 路由信息
|
|
const routeName = ref()
|
|
routeName.value = route.name
|
|
const tableColumns = ref([...IssueRequestMain.allSchemas.tableColumns,...IssueRequestDetail.allSchemas.tableMainColumns])
|
|
|
|
// 字段设置 更新主列表字段
|
|
const updataTableColumns = (val) => {
|
|
tableColumns.value = val
|
|
}
|
|
const onChange = async (field,value) => {
|
|
console.log('onChange',field,value)
|
|
if (field == 'workshopCode') {
|
|
//车间代码
|
|
const setV = {}
|
|
setV['productionLineCode'] = ''
|
|
setV['workStationCode'] = ''
|
|
formRef.value.formRef.setValues(setV)
|
|
}else if(field== 'productionLineCode'){
|
|
//生产线
|
|
const setV = {}
|
|
setV['workStationCode'] = ''
|
|
formRef.value.formRef.setValues(setV)
|
|
}
|
|
}
|
|
|
|
|
|
const onEnter = async (field,value) => {
|
|
if (field == 'productionLineCode') {
|
|
//生产线
|
|
let res = await WorkstationApi.getWorkstationPage({
|
|
productionLineCode:value,
|
|
pageSize: 20,
|
|
pageNo: 1
|
|
})
|
|
if(res&&res.list&&res.list.length>0){
|
|
const setV = {}
|
|
setV['workStationCode'] = res.list[0].code
|
|
formRef.value.formRef.setValues(setV)
|
|
}
|
|
}else if(field == 'workshopCode'){
|
|
//车间代码
|
|
formRef.value.opensearchTable('productionLineCode', 'code', '生产线信息', Productionline.allSchemas, ProductionlineApi.getProductionlinePage,[
|
|
{
|
|
key: 'available',
|
|
value: 'TRUE',
|
|
action: '==',
|
|
isSearch: true,
|
|
isMainValue: false
|
|
},{
|
|
key: 'workshopCode',
|
|
value: value,
|
|
action: '==',
|
|
isSearch: true,
|
|
isMainValue: false
|
|
}])
|
|
}
|
|
}
|
|
// 查询页面返回
|
|
const searchTableSuccess = (formField, searchField, val, formRef, type, row ) => {
|
|
nextTick(async() => {
|
|
if (type == 'tableForm') {
|
|
// 明细查询页赋值
|
|
if (formField == 'itemCode') {
|
|
val.forEach(item=>{
|
|
let tableForm = JSON.parse(JSON.stringify(tableFormKeys))
|
|
if (tableData.value.length > 0) {
|
|
tableForm.productionLineCode = tableData.value[0].productionLineCode
|
|
tableForm.workStationCode = tableData.value[0].workStationCode
|
|
}
|
|
if(tableData.value.find(item1=>item1['itemCode'] == item['itemCode'])) return
|
|
const newRow = JSON.parse(JSON.stringify({...tableForm,...item}))
|
|
newRow['itemCode'] = item['code']
|
|
newRow['uom'] = item['uom']
|
|
tableData.value.push(newRow)
|
|
})
|
|
}else if(formField == 'packUnit'){
|
|
row['packQty'] = val[0]['packQty']
|
|
row[formField] = val[0][searchField]
|
|
} else {
|
|
row[formField] = val[0][searchField]
|
|
}
|
|
} else {
|
|
const setV = {}
|
|
setV[formField] = val[0][searchField]
|
|
if (formField == 'fromWarehouseCode') {
|
|
setV['fromWarehouseCode'] = val[0]['code']
|
|
setV['toWarehouseCode'] = val[0]['code']
|
|
}
|
|
if (formField == 'workshopCode') {
|
|
//车间代码
|
|
setV['productionLineCode'] = ''
|
|
setV['workStationCode'] = ''
|
|
}
|
|
if (formField == 'productionLineCode') {
|
|
//生产线
|
|
let res = await WorkstationApi.getWorkstationPage({
|
|
productionLineCode: val[0][searchField],
|
|
pageSize: 20,
|
|
pageNo: 1
|
|
})
|
|
if(res&&res.list&&res.list.length>0){
|
|
setV['workStationCode'] = res.list[0].code
|
|
}
|
|
}
|
|
formRef.setValues(setV)
|
|
}
|
|
})
|
|
}
|
|
// 查询页面返回——详情
|
|
const searchTableSuccessDetail = (formField, searchField, val, formRef ) => {
|
|
nextTick(() => {
|
|
const setV = {}
|
|
if (formField == 'itemCode') {
|
|
setV['itemCode'] = val[0]['code']
|
|
setV['uom'] = val[0]['uom']
|
|
} else {
|
|
setV[formField] = val[0][searchField]
|
|
}
|
|
formRef.setValues(setV)
|
|
})
|
|
}
|
|
|
|
const { tableObject, tableMethods } = useTable({
|
|
getListApi: IssueRequestDetailApi.getIssueRequestDetailPage // 分页接口
|
|
})
|
|
|
|
// 获得表格的各种操作
|
|
const { getList, setSearchParams } = tableMethods
|
|
|
|
// 列表头部按钮
|
|
const HeadButttondata = [
|
|
defaultButtons.defaultAddBtn({hasPermi:'wms:issue-request-main:create'}), // 新增
|
|
defaultButtons.defaultImportBtn({hasPermi:'wms:issue-request-main:import'}), // 导入
|
|
defaultButtons.defaultExportBtn({hasPermi:'wms:issue-request-main: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') { // 刷新
|
|
if (tableObject.params.filters && tableObject.params.filters.length > 0 ) {
|
|
searchFormClick({
|
|
filters: tableObject.params.filters
|
|
})
|
|
} else {
|
|
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,['1','2','3','4','6']), hasPermi:'wms:issue-request-main:close'}), // 关闭
|
|
defaultButtons.mainListReAddBtn({hide:isShowMainButton(row,['4','5']), hasPermi:'wms:issue-request-main:reAdd'}), // 重新添加
|
|
defaultButtons.mainListSubmitBtn({hide:isShowMainButton(row,['1']), hasPermi:'wms:issue-request-main:submit'}), // 提交审批
|
|
defaultButtons.mainListTurnDownBtn({hide:isShowMainButton(row,['2']), hasPermi:'wms:issue-request-main:refused'}), // 驳回
|
|
defaultButtons.mainListApproveBtn({hide:isShowMainButton(row,['2']), hasPermi:'wms:issue-request-main:handle'}), // 审批通过
|
|
defaultButtons.mainListHandleBtn({hide:isShowMainButton(row,['3','7']), hasPermi:'wms:issue-request-main:update'}), // 处理
|
|
defaultButtons.mainListEditBtn({hide:isShowMainButton(row,['1']), hasPermi:'wms:issue-request-main:update'}), // 编辑
|
|
// defaultButtons.mainListDeleteBtn({hasPermi:'wms:issue-request-main:delete'}), // 删除
|
|
]
|
|
}
|
|
|
|
|
|
|
|
// 列表-操作按钮事件
|
|
const buttonTableClick = async (val, row) => {
|
|
if (val == 'mainClose') { // 关闭
|
|
await message.confirm('确认要关闭吗?')
|
|
tableObject.loading = true
|
|
IssueRequestMainApi.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
|
|
IssueRequestMainApi.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
|
|
IssueRequestMainApi.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
|
|
IssueRequestMainApi.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
|
|
IssueRequestMainApi.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
|
|
IssueRequestMainApi.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.masterId)
|
|
}
|
|
}
|
|
|
|
/** 添加/修改操作 */
|
|
const formRef = ref()
|
|
const openForm =async (type: string, row?: number) => {
|
|
tableData.value = [] // 重置明细数据
|
|
// 编辑时 车间代码不可修改
|
|
if (type == 'update') {
|
|
// 修改 tableform 属性
|
|
IssueRequestMain.allSchemas.formSchema.map(itemColumns => {
|
|
if(itemColumns.field == 'workshopCode') {
|
|
itemColumns.componentProps.isSearchList = false
|
|
itemColumns.componentProps.disabled = true
|
|
}
|
|
})
|
|
} else {
|
|
// 修改 tableform 属性
|
|
IssueRequestMain.allSchemas.formSchema.map(itemColumns => {
|
|
if(itemColumns.field == 'workshopCode') {
|
|
itemColumns.componentProps.isSearchList = true
|
|
itemColumns.componentProps.disabled = false
|
|
}
|
|
})
|
|
}
|
|
formRef.value.open(type, row)
|
|
}
|
|
|
|
// 获取部门 用于详情 部门回显
|
|
const { wsCache } = useCache()
|
|
/** 详情操作 */
|
|
const detailRef = ref()
|
|
const openDetail = (row: any, titleName: any, titleValue: any) => {
|
|
const departmentCode = wsCache.get(CACHE_KEY.DEPT).find((account) => account.id == row.departmentCode)?.name
|
|
if (departmentCode) row.departmentCode = JSON.parse(JSON.stringify(departmentCode))
|
|
detailRef.value.openDetail(row, titleName, titleValue,"requestIssueMain")
|
|
}
|
|
|
|
/** 删除按钮操作 */
|
|
const handleDelete = async (id: number) => {
|
|
try {
|
|
// 删除的二次确认
|
|
await message.delConfirm()
|
|
tableObject.loading = true
|
|
// 发起删除
|
|
await IssueRequestMainApi.deleteIssueRequestMain(id)
|
|
tableObject.loading = false
|
|
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 IssueRequestMainApi.exportIssueRequestMain(tableObject.params)
|
|
download.excel(data, '发料申请主.xlsx')
|
|
} catch {
|
|
} finally {
|
|
exportLoading.value = false
|
|
}
|
|
}
|
|
|
|
/**
|
|
* tableForm方法
|
|
*/
|
|
const tableFormKeys = {}
|
|
IssueRequestDetail.allSchemas.tableFormColumns.forEach(item => {
|
|
tableFormKeys[item.field] = item.default ? item.default : ''
|
|
})
|
|
const tableData = ref([])
|
|
|
|
// 添加明细
|
|
const handleAddTable = () => {
|
|
// 添加明细 已有数据 添加的明细 生产线 工位按照之前数据进行添加
|
|
let tableForm = JSON.parse(JSON.stringify(tableFormKeys))
|
|
if (tableData.value.length > 0) {
|
|
tableForm.productionLineCode = tableData.value[0].productionLineCode
|
|
tableForm.workStationCode = tableData.value[0].workStationCode
|
|
}
|
|
tableData.value.push(tableForm)
|
|
}
|
|
// 删除明细
|
|
const handleDeleteTable = (item, index) => {
|
|
let itemIndex = tableData.value.indexOf(item)
|
|
if(itemIndex>-1){
|
|
tableData.value.splice(itemIndex, 1)
|
|
}
|
|
}
|
|
const tableSelectionDelete = (selection) => {
|
|
tableData.value = tableData.value.filter(item => !selection.includes(item))
|
|
}
|
|
// 主子数据 提交
|
|
const submitForm = async (formType, submitData) => {
|
|
let data = {...submitData}
|
|
if(data.masterId){
|
|
data.id = data.masterId
|
|
}
|
|
data.subList = tableData.value // 拼接子表数据参数
|
|
if(tableData.value.find(item => (item.qty <= 0))) {
|
|
message.warning('数量必须大于0')
|
|
formRef.value.formLoading = false
|
|
return
|
|
}
|
|
// 判断子表中,是否有不同的生产线和工位
|
|
// if (tableData.value.length > 0) {
|
|
// let productionLineCode = tableData.value[0].productionLineCode
|
|
// let workStationCode = tableData.value[0].workStationCode
|
|
// for(var i=0;i<tableData.value.length;i++) {
|
|
// if(productionLineCode !== tableData.value[i].productionLineCode){
|
|
// message.warning('子表数据:生产线存在不同数据,请修改成统一数据!')
|
|
// formRef.value.formLoading = false
|
|
// return;
|
|
// }
|
|
// if(workStationCode !== tableData.value[i].workStationCode){
|
|
// message.warning('子表数据:工位存在不同数据,请修改成统一数据!')
|
|
// formRef.value.formLoading = false
|
|
// return;
|
|
// }
|
|
// }
|
|
// }
|
|
try {
|
|
if (formType === 'create') {
|
|
await IssueRequestMainApi.createIssueRequestMain(data)
|
|
message.success(t('common.createSuccess'))
|
|
} else {
|
|
await IssueRequestMainApi.updateIssueRequestMain(data)
|
|
message.success(t('common.updateSuccess'))
|
|
}
|
|
formRef.value.dialogVisible = false
|
|
// 刷新当前列表
|
|
getList()
|
|
} finally {
|
|
formRef.value.formLoading = false
|
|
}
|
|
}
|
|
|
|
// 子表新增/编辑校验
|
|
const detailValidate = async (data) => {
|
|
// let rs = false
|
|
// TODO: 单一新编/编辑,校验是否与其他子数据存在生产线工位有不同数据情况
|
|
return true
|
|
}
|
|
|
|
/** 导入 */
|
|
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 IssueRequestMainApi.importTemplate()
|
|
})
|
|
</script>
|
|
|