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.
828 lines
27 KiB
828 lines
27 KiB
<template>
|
|
<ContentWrap>
|
|
<!-- 搜索工作栏 -->
|
|
<Search :schema="[...InventorymoveRequestMain.allSchemas.searchSchema,...InventorymoveRequestDetail.allSchemas.searchSchema]" @search="searchList" @reset="searchList" />
|
|
</ContentWrap>
|
|
|
|
<!-- 列表头部 -->
|
|
<TableHead
|
|
:HeadButttondata="HeadButttondata"
|
|
@button-base-click="buttonBaseClick"
|
|
:routeName="routeName"
|
|
@updataTableColumns="updataTableColumns"
|
|
@searchFormClick="searchFormClick"
|
|
:allSchemas="InventorymoveRequestMain.allSchemas"
|
|
:detailAllSchemas="InventorymoveRequestDetail.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="InventorymoveRequestMainRules"
|
|
:formAllSchemas="InventorymoveRequestMain.allSchemas"
|
|
:tableAllSchemas="InventorymoveRequestDetail.allSchemas"
|
|
:tableFormRules="InventorymoveRequestDetailRules"
|
|
:tableData="tableData"
|
|
:apiUpdate="InventorymoveRequestMainApi.updateInventorymoveRequestMain"
|
|
:apiCreate="InventorymoveRequestMainApi.createInventorymoveRequestMain"
|
|
:isBusiness="true"
|
|
@handleAddTable="handleAddTable"
|
|
@handleDeleteTable="handleDeleteTable"
|
|
:isShowReduceButtonSelection="true"
|
|
@tableSelectionDelete="tableSelectionDelete"
|
|
@searchTableSuccess="searchTableSuccess"
|
|
@submitForm="submitForm"
|
|
/>
|
|
|
|
<!-- 详情 -->
|
|
<Detail
|
|
ref="detailRef"
|
|
:isBasic="false"
|
|
:allSchemas="InventorymoveRequestMain.allSchemas"
|
|
:detailAllSchemas="InventorymoveRequestDetail.allSchemas"
|
|
:detailAllSchemasRules="InventorymoveRequestDetailRules"
|
|
:apiCreate="InventorymoveRequestDetailApi.createInventorymoveRequestDetail"
|
|
:apiUpdate="InventorymoveRequestDetailApi.updateInventorymoveRequestDetail"
|
|
:apiPage="InventorymoveRequestDetailApi.getInventorymoveRequestDetailPage"
|
|
:apiDelete="InventorymoveRequestDetailApi.deleteInventorymoveRequestDetail"
|
|
@searchTableSuccessDetail="searchTableSuccessDetail"
|
|
@detailOpenForm="detailOpenForm"
|
|
/>
|
|
|
|
<!-- 导入 -->
|
|
<ImportForm ref="importFormRef" url="/wms/inventorymove-request-main/import" :importTemplateData="importTemplateData"
|
|
@success="importSuccess" :updateIsDisable="true" :coverIsDisable="true" :mode="2" :fromInventoryStatus= "fromInventoryStatus" :toInventoryStatus="toInventoryStatus" />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import download from '@/utils/download'
|
|
import { CACHE_KEY, useCache } from '@/hooks/web/useCache'
|
|
import { InventorymoveRequestMain,InventorymoveRequestMainRules,InventorymoveRequestDetail,InventorymoveRequestDetailRules } from './inventorymoveRequestMain.data'
|
|
import * as InventorymoveRequestMainApi from '@/api/wms/inventorymoveRequestMain'
|
|
import * as InventorymoveRequestDetailApi from '@/api/wms/inventorymoveRequestDetail'
|
|
import * as defaultButtons from '@/utils/disposition/defaultButtons'
|
|
import * as LocationApi from '@/api/wms/location'
|
|
import { formatDate } from '@/utils/formatTime'
|
|
import { usePageLoading } from '@/hooks/web/usePageLoading'
|
|
import * as ruleApi from '@/api/wms/rule/index'
|
|
const { loadStart, loadDone } = usePageLoading()
|
|
// 库存转移申请
|
|
// 只有库存转移申请在使用的
|
|
defineOptions({ name: 'InventorymoveRequestMain' })
|
|
|
|
const message = useMessage() // 消息弹窗
|
|
const { t } = useI18n() // 国际化
|
|
|
|
const route = useRoute() // 路由信息
|
|
const routeName = ref()
|
|
routeName.value = route.name
|
|
const tableColumns = ref([...InventorymoveRequestMain.allSchemas.tableColumns,...InventorymoveRequestDetail.allSchemas.tableMainColumns])
|
|
const businessType = ref()
|
|
|
|
const fromInventoryStatus = ref()
|
|
const toInventoryStatus = ref()
|
|
const importFileName = ref()
|
|
|
|
const { tableObject, tableMethods } = useTable({
|
|
getListApi: InventorymoveRequestDetailApi.getInventorymoveRequestDetailPage // 分页接口
|
|
})
|
|
// 库存移动申请 InventorymoveRequestMain
|
|
// 仅有库存移动申请在使用
|
|
if ( routeName.value == 'InventorymoveRequestMain') {
|
|
tableObject.params = {
|
|
businessType :'Move'
|
|
}
|
|
businessType.value = 'Move'
|
|
importFileName.value = '库存移动申请'
|
|
}
|
|
|
|
|
|
|
|
InventorymoveRequestMain.allSchemas.tableFormColumns.map(item =>{
|
|
if(item.field == 'fromWarehouseCode') {
|
|
if (fromInventoryStatus.value) {
|
|
item.tableForm.searchCondition = [
|
|
{
|
|
key: 'available',
|
|
value: 'TRUE',
|
|
isMainValue: false
|
|
},
|
|
{
|
|
key: 'businessType',
|
|
value: businessType.value,
|
|
isMainValue: false
|
|
},{
|
|
key: 'isIn',
|
|
value: 'out',
|
|
isMainValue: false
|
|
}]
|
|
item.form.componentProps.searchCondition = [
|
|
{
|
|
key: 'available',
|
|
value: 'TRUE',
|
|
isMainValue: false
|
|
},
|
|
{
|
|
key: 'businessType',
|
|
value: businessType.value,
|
|
isMainValue: false
|
|
},{
|
|
key: 'isIn',
|
|
value: 'out',
|
|
isMainValue: false
|
|
}
|
|
]
|
|
} else if (fromInventoryStatus.value == null) {
|
|
item.tableForm.searchCondition = [
|
|
{
|
|
key: 'available',
|
|
value: 'TRUE',
|
|
isMainValue: false
|
|
},
|
|
{
|
|
key: 'businessType',
|
|
value: businessType.value,
|
|
isMainValue: false
|
|
},{
|
|
key: 'isIn',
|
|
value: 'out',
|
|
isMainValue: false
|
|
}]
|
|
item.form.componentProps.searchCondition = [
|
|
{
|
|
key: 'available',
|
|
value: 'TRUE',
|
|
isMainValue: false
|
|
},
|
|
{
|
|
key: 'businessType',
|
|
value: businessType.value,
|
|
isMainValue: false
|
|
},{
|
|
key: 'isIn',
|
|
value: 'out',
|
|
isMainValue: false
|
|
}]
|
|
} else {
|
|
delete item.tableForm.searchCondition
|
|
}
|
|
}
|
|
})
|
|
// 修改 tableform 属性
|
|
InventorymoveRequestDetail.allSchemas.tableFormColumns.map(item => {
|
|
if(item.field == 'itemCode') {
|
|
if (fromInventoryStatus.value) {
|
|
item.tableForm.searchCondition = [
|
|
{
|
|
key: 'businessType',
|
|
value: businessType.value ,
|
|
isMainValue: false
|
|
}]
|
|
item.form.componentProps.searchCondition = [
|
|
{
|
|
key: 'businessType',
|
|
value: businessType.value,
|
|
isMainValue: false
|
|
}
|
|
]
|
|
} else if (fromInventoryStatus.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 (toInventoryStatus.value) {
|
|
item.tableForm.searchCondition = [
|
|
{
|
|
key: 'businessType',
|
|
value: businessType.value,
|
|
isMainValue: false
|
|
},{
|
|
key: 'isIn',
|
|
value: 'in',
|
|
isMainValue: false
|
|
}]
|
|
item.form.componentProps.searchCondition = [
|
|
{
|
|
key: 'businessType',
|
|
value: businessType.value,
|
|
isMainValue: false
|
|
},{
|
|
key: 'isIn',
|
|
value: 'in',
|
|
isMainValue: false
|
|
}]
|
|
}else if (toInventoryStatus.value == null) {
|
|
item.tableForm.searchCondition = [
|
|
{
|
|
key: 'businessType',
|
|
value: businessType.value ,
|
|
isMainValue: false
|
|
},{
|
|
key: 'isIn',
|
|
value: 'in',
|
|
isMainValue: false
|
|
}]
|
|
item.form.componentProps.searchCondition = [
|
|
{
|
|
key: 'businessType',
|
|
value: businessType.value,
|
|
isMainValue: false
|
|
},{
|
|
key: 'isIn',
|
|
value: 'in',
|
|
isMainValue: false
|
|
}]
|
|
}
|
|
}
|
|
})
|
|
|
|
// 字段设置 更新主列表字段
|
|
const updataTableColumns = (val) => {
|
|
tableColumns.value = val
|
|
}
|
|
// 物料隔离-获取到库位默认值
|
|
const getDefaultToLocationCode = async ()=>{
|
|
let searchCondition = []
|
|
InventorymoveRequestDetail.allSchemas.tableFormColumns.map(item => {
|
|
if(item.field == "toLocationCode"){
|
|
searchCondition = item.tableForm.searchCondition
|
|
}
|
|
})
|
|
let params = {}
|
|
searchCondition.forEach(item=>{
|
|
if(item['isMainValue']){
|
|
params[item['key']] = formRef.value.formRef.formModel[item['value']]
|
|
}else{
|
|
params[item['key']] = item['value']
|
|
}
|
|
})
|
|
let res = await LocationApi.selectBusinessTypeToLocation(params)
|
|
if(res&&res.list.length>0){
|
|
tableData.value.forEach(item=>{
|
|
if(!item['toLocationCode']){
|
|
item['toLocationCode'] = res.list[0]['code']
|
|
}
|
|
})
|
|
}
|
|
}
|
|
let fromManagementPrecision = ref('')
|
|
let toManagementPrecision = ref('')
|
|
// 查询页面返回
|
|
const searchTableSuccess = (formField, searchField, val, formRef, type, row ) => {
|
|
nextTick(async() => {
|
|
if (type == 'tableForm') {
|
|
if(formField == 'itemCode'){
|
|
val = val.filter(item=>!tableData.value.find(item1=>item1['itemCode']==item['itemCode']&&item1['fromLocationCode']==item['locationCode']&&item1['fromInventoryStatus']==item['inventoryStatus']))
|
|
if(val.length==0) return
|
|
val.forEach(item=>{
|
|
const newRow = JSON.parse(JSON.stringify({...tableFormKeys,...item}))
|
|
newRow['fromContainerNumber'] = item['containerNumber']
|
|
newRow['itemCode'] = item['itemCode']
|
|
newRow['fromBatch'] = item['batch']
|
|
newRow['fromInventoryStatus'] = item['inventoryStatus']
|
|
newRow['fromLocationCode'] = item['locationCode']
|
|
newRow['uom'] = item['uom']
|
|
newRow['qty'] = item['qty']
|
|
newRow['toInventoryStatus'] = item['inventoryStatus']//库存移动申请
|
|
tableData.value.push(newRow)
|
|
})
|
|
}else if (formField == 'toLocationCode') {
|
|
row[formField] = val[0][searchField]
|
|
await ruleApi.getManagementPrecision({
|
|
itemCodes: [row['itemCode']],
|
|
locationCode:row['fromLocationCode']
|
|
}).then((res) => {
|
|
fromManagementPrecision.value = res[0].ManagementPrecision
|
|
})
|
|
await ruleApi.getManagementPrecision({
|
|
itemCodes: [row['itemCode']],
|
|
locationCode: val[0][searchField]
|
|
}).then((res) => {
|
|
toManagementPrecision.value = res[0].ManagementPrecision
|
|
row.toManagementPrecision = toManagementPrecision.value
|
|
})
|
|
if (toManagementPrecision.value == 'BY_BATCH') {
|
|
if(row['fromBatch']==''){
|
|
row['fromBatchFormItemType'] = 'FormDate'
|
|
row['disabled_fromBatch'] = false
|
|
}
|
|
|
|
} else if (toManagementPrecision.value == 'BY_QUANTITY') {
|
|
//row['fromBatchFormItemType'] = ''
|
|
row['disabled_fromBatch'] = true
|
|
}
|
|
} else {
|
|
row[formField] = val[0][searchField]
|
|
}
|
|
} else {
|
|
const setV = {}
|
|
if (formField == 'fromWarehouseCode') {
|
|
if(InventorymoveRequestDetail.allSchemas.tableFormColumns.find(item => (item.field == 'itemCode')).tableForm.searchCondition.find(item => (item.key == 'warehouseCode')) == undefined){
|
|
InventorymoveRequestDetail.allSchemas.tableFormColumns.find(item => (item.field == 'itemCode')).tableForm.searchCondition.push({
|
|
key: 'warehouseCode',
|
|
value: val[0]["code"],
|
|
isMainValue: false
|
|
})
|
|
} else {
|
|
InventorymoveRequestDetail.allSchemas.tableFormColumns.find(item => (item.field == 'itemCode')).tableForm.searchCondition.find(item => {
|
|
if (item.key == 'warehouseCode') {
|
|
item.value = val[0]["code"]
|
|
}
|
|
})
|
|
}
|
|
}
|
|
setV[formField] = val[0][searchField]
|
|
formRef.setValues(setV)
|
|
}
|
|
})
|
|
}
|
|
// 查询页面返回——详情
|
|
const searchTableSuccessDetail = (formField, searchField, val, formRef) => {
|
|
nextTick(async() => {
|
|
const setV = {}
|
|
if(formField == 'itemCode') {
|
|
setV['fromContainerNumber'] = val[0]['containerNumber']
|
|
setV['itemCode'] = val[0]['itemCode']
|
|
setV['fromBatch'] = val[0]['batch']
|
|
setV['fromInventoryStatus'] = val[0]['inventoryStatus']
|
|
setV['fromLocationCode'] = val[0]['locationCode']
|
|
setV['uom'] = val[0]['uom']
|
|
setV['toInventoryStatus'] = val[0]['inventoryStatus'] //库存移动申请InventorymoveRequestMain
|
|
} else if (formField == 'toLocationCode') {
|
|
setV[formField] = val[0][searchField]
|
|
await ruleApi.getManagementPrecision({
|
|
itemCodes: [formRef.formModel.itemCode],
|
|
locationCode:formRef.formModel.fromLocationCode
|
|
}).then((res) => {
|
|
fromManagementPrecision.value = res[0].ManagementPrecision
|
|
})
|
|
await ruleApi.getManagementPrecision({
|
|
itemCodes: [formRef.formModel.itemCode],
|
|
locationCode: val[0][searchField]
|
|
}).then((res) => {
|
|
toManagementPrecision.value = res[0].ManagementPrecision
|
|
})
|
|
if (fromManagementPrecision.value == 'BY_QUANTITY' && toManagementPrecision.value == 'BY_BATCH') {
|
|
const obj =ref(InventorymoveRequestDetail.allSchemas.formSchema.find(item => (item.field == 'fromBatch')))
|
|
obj.value.component= 'DatePicker'
|
|
obj.value.componentProps.disabled= false
|
|
obj.value.componentProps.type= 'date'
|
|
obj.value.componentProps.valueFormat= 'YYYYMMDD'
|
|
obj.value.componentProps.format = 'YYYYMMDD'
|
|
InventorymoveRequestDetailRules.fromBatch[0].required = true
|
|
} else {
|
|
const obj =ref(InventorymoveRequestDetail.allSchemas.formSchema.find(item => (item.field == 'fromBatch')))
|
|
obj.value.component= 'Input'
|
|
obj.value.componentProps={
|
|
disabled : true
|
|
}
|
|
setV['fromBatch'] =''
|
|
InventorymoveRequestDetailRules.fromBatch[0].required = false
|
|
}
|
|
} else {
|
|
setV[formField] = val[0][searchField]
|
|
}
|
|
formRef.setValues(setV)
|
|
})
|
|
}
|
|
|
|
// 获得表格的各种操作
|
|
const { getList, setSearchParams } = tableMethods
|
|
|
|
// 列表头部按钮
|
|
const HeadButttondata = [
|
|
defaultButtons.defaultAddBtn({hasPermi:`wms:${routeName.value}:create`}), // 新增
|
|
defaultButtons.defaultImportBtn({hasPermi:`wms:${routeName.value}:import`}), // 导入
|
|
defaultButtons.defaultExportBtn({hasPermi:`wms:${routeName.value}: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:${routeName.value}:close`}), // 关闭
|
|
defaultButtons.mainListReAddBtn({hide:isShowMainButton(row,['4','5']),hasPermi:`wms:${routeName.value}:reAdd`}), //重新添加
|
|
defaultButtons.mainListSubmitBtn({hide:isShowMainButton(row,['1']),hasPermi:`wms:${routeName.value}:submit`}), // 提交审批
|
|
defaultButtons.mainListTurnDownBtn({hide:isShowMainButton(row,['2']),hasPermi:`wms:${routeName.value}:refused`}), // 驳回
|
|
defaultButtons.mainListApproveBtn({hide:isShowMainButton(row,['2']),hasPermi:`wms:${routeName.value}:agree`}), // 审批通过
|
|
defaultButtons.mainListHandleBtn({hide:isShowMainButton(row,['3']),hasPermi:`wms:${routeName.value}:handle`}), // 处理
|
|
defaultButtons.mainListEditBtn({hide:isShowMainButton(row,['1']),hasPermi:`wms:${routeName.value}:update`}), // 编辑
|
|
// defaultButtons.mainListDeleteBtn({hasPermi:`wms:${routeName.value}:delete`}), // 删除
|
|
]
|
|
}
|
|
|
|
|
|
|
|
// 列表-操作按钮事件
|
|
const buttonTableClick = async (val, row) => {
|
|
if (val == 'mainClose') { // 关闭
|
|
await message.confirm('确认要关闭吗?')
|
|
tableObject.loading = true
|
|
InventorymoveRequestMainApi.close(row.masterId).then(() => {
|
|
message.success(t('common.updateSuccess'))
|
|
tableObject.loading = false
|
|
buttonBaseClick('refresh',null)
|
|
}).catch(err => {
|
|
tableObject.loading = false
|
|
})
|
|
} else if (val == 'mainReAdd') { // 重新添加
|
|
await message.confirm('确认要重新添加吗?')
|
|
tableObject.loading = true
|
|
InventorymoveRequestMainApi.reAdd(row.masterId).then(() => {
|
|
message.success(t('common.updateSuccess'))
|
|
tableObject.loading = false
|
|
buttonBaseClick('refresh',null)
|
|
}).catch(err => {
|
|
tableObject.loading = false
|
|
})
|
|
} else if (val == 'mainSubmit') { // 提交审批
|
|
await message.confirm('确认要提交审批吗?')
|
|
tableObject.loading = true
|
|
InventorymoveRequestMainApi.submit(row.masterId).then(() => {
|
|
message.success(t('common.updateSuccess'))
|
|
tableObject.loading = false
|
|
buttonBaseClick('refresh',null)
|
|
}).catch(err => {
|
|
tableObject.loading = false
|
|
})
|
|
} else if (val == 'mainTurnDown') { // 驳回
|
|
await message.confirm('确认要驳回吗?')
|
|
tableObject.loading = true
|
|
InventorymoveRequestMainApi.refused(row.masterId).then(() => {
|
|
message.success(t('common.updateSuccess'))
|
|
tableObject.loading = false
|
|
buttonBaseClick('refresh',null)
|
|
}).catch(err => {
|
|
tableObject.loading = false
|
|
})
|
|
} else if (val == 'mainApprove') { // 审批通过
|
|
await message.confirm('确认要审批通过吗?')
|
|
tableObject.loading = true
|
|
InventorymoveRequestMainApi.agree(row.masterId).then(() => {
|
|
message.success(t('common.updateSuccess'))
|
|
tableObject.loading = false
|
|
buttonBaseClick('refresh',null)
|
|
}).catch(err => {
|
|
tableObject.loading = false
|
|
})
|
|
} else if (val == 'mainHandle') { // 处理
|
|
await message.confirm('确认要处理吗?')
|
|
tableObject.loading = true
|
|
InventorymoveRequestMainApi.handle(row.masterId).then(() => {
|
|
message.success(t('common.updateSuccess'))
|
|
tableObject.loading = false
|
|
buttonBaseClick('refresh',null)
|
|
}).catch(err => {
|
|
tableObject.loading = false
|
|
})
|
|
} else if (val == 'edit') { // 编辑
|
|
openForm('update', row)
|
|
} else if (val == 'delete') { // 删除
|
|
handleDelete(row.masterId)
|
|
}
|
|
}
|
|
|
|
/** 添加/修改操作 */
|
|
const formRef = ref()
|
|
const openForm = async (type: string, row?: number) => {
|
|
if (type == 'create') {
|
|
InventorymoveRequestMain.allSchemas.formSchema.forEach(item=>{
|
|
if(item.field == 'fromWarehouseCode'){
|
|
item.componentProps.enterSearch = true
|
|
item.componentProps.isSearchList = true
|
|
item.componentProps.disabled = false
|
|
}
|
|
})
|
|
} else {
|
|
InventorymoveRequestMain.allSchemas.formSchema.forEach(item=>{
|
|
if(item.field == 'fromWarehouseCode'){
|
|
item.componentProps.enterSearch = false
|
|
item.componentProps.isSearchList = false
|
|
item.componentProps.disabled = true
|
|
}
|
|
})
|
|
}
|
|
tableData.value = [] // 重置明细数据
|
|
formRef.value.open(type, row)
|
|
}
|
|
|
|
/**
|
|
* 详情 新增/编辑事件
|
|
*/
|
|
const detailOpenForm =async (type, row) => {
|
|
if(InventorymoveRequestDetail.allSchemas.formSchema.find(item => (item.field == 'itemCode'))?.componentProps?.searchCondition.find(item => (item.key == 'warehouseCode')) == undefined){
|
|
InventorymoveRequestDetail.allSchemas.formSchema.find(item => (item.field == 'itemCode'))?.componentProps?.searchCondition.push({
|
|
key: 'warehouseCode',
|
|
value: fromWarehouseCodeMain.value,
|
|
isMainValue: false
|
|
})
|
|
} else {
|
|
InventorymoveRequestDetail.allSchemas.formSchema.find(item => (item.field == 'itemCode'))?.componentProps?.searchCondition.find(item => {
|
|
if (item.key == 'warehouseCode') {
|
|
item.value = fromWarehouseCodeMain.value
|
|
}
|
|
})
|
|
}
|
|
if (type == 'update') {
|
|
await ruleApi.getManagementPrecision({
|
|
itemCodes: [row['itemCode']],
|
|
locationCode:row['fromLocationCode']
|
|
}).then((res) => {
|
|
fromManagementPrecision.value = res[0].ManagementPrecision
|
|
})
|
|
await ruleApi.getManagementPrecision({
|
|
itemCodes: [row['itemCode']],
|
|
locationCode: row['toLocationCode']
|
|
}).then((res) => {
|
|
toManagementPrecision.value = res[0].ManagementPrecision
|
|
})
|
|
if (fromManagementPrecision.value == 'BY_QUANTITY' && toManagementPrecision.value == 'BY_BATCH') {
|
|
const obj =ref(InventorymoveRequestDetail.allSchemas.formSchema.find(item => (item.field == 'fromBatch')))
|
|
obj.value.component= 'DatePicker'
|
|
obj.value.componentProps.disabled= false
|
|
obj.value.componentProps.type= 'date'
|
|
obj.value.componentProps.valueFormat= 'YYYYMMDD'
|
|
obj.value.componentProps.format= 'YYYYMMDD'
|
|
InventorymoveRequestDetailRules.fromBatch[0].required = true
|
|
} else {
|
|
const obj =ref(InventorymoveRequestDetail.allSchemas.formSchema.find(item => (item.field == 'fromBatch')))
|
|
obj.value.component= 'Input'
|
|
obj.value.componentProps={
|
|
disabled : true
|
|
}
|
|
InventorymoveRequestDetailRules.fromBatch[0].required = false
|
|
}
|
|
}
|
|
}
|
|
|
|
const fromWarehouseCodeMain = ref()
|
|
|
|
// 获取部门 用于详情 部门回显
|
|
const { wsCache } = useCache()
|
|
/** 详情操作 */
|
|
const detailRef = ref()
|
|
const openDetail = (row: any, titleName: any, titleValue: any) => {
|
|
fromWarehouseCodeMain.value = row.fromWarehouseCode
|
|
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,"requestInventorymoveMain")
|
|
}
|
|
|
|
/** 删除按钮操作 */
|
|
const handleDelete = async (id: number) => {
|
|
try {
|
|
// 删除的二次确认
|
|
await message.delConfirm()
|
|
tableObject.loading = true
|
|
// 发起删除
|
|
await InventorymoveRequestMainApi.deleteInventorymoveRequestMain(id)
|
|
message.success(t('common.delSuccess'))
|
|
tableObject.loading = false
|
|
// 刷新列表
|
|
buttonBaseClick('refresh',null)
|
|
} catch {}
|
|
}
|
|
|
|
/** 导出按钮操作 */
|
|
const handleExport = async () => {
|
|
try {
|
|
// 导出的二次确认
|
|
await message.exportConfirm()
|
|
// 发起导出
|
|
loadStart()
|
|
const excelTitle = ref(route.meta.title)
|
|
// 库存移动申请InventorymoveRequestMain
|
|
const data = await InventorymoveRequestMainApi.exportInventorymoveRequestMain(tableObject.params)
|
|
download.excel(data, `【${excelTitle.value}】【${formatDate(new Date())}】.xlsx`)
|
|
} catch {
|
|
} finally {
|
|
loadDone()
|
|
}
|
|
}
|
|
|
|
/**
|
|
* tableForm方法
|
|
*/
|
|
const tableFormKeys = {}
|
|
InventorymoveRequestDetail.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) => {
|
|
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))
|
|
}
|
|
//为true表示子表数据中存在数量为0的数据
|
|
const flag = ref()
|
|
|
|
// 主子数据 提交
|
|
const submitForm = async (formType, submitData) => {
|
|
let data = {...submitData}
|
|
if(data.masterId){
|
|
data.id = data.masterId
|
|
}
|
|
let findLocation = tableData.value.find(item=>item.fromLocationCode&&item.toLocationCode&&item.fromLocationCode==item.toLocationCode)
|
|
if(findLocation){
|
|
message.warning('从库位和到库位不能相同')
|
|
return
|
|
}
|
|
let batchList = tableData.value.filter(item=>item.fromBatchFormItemType&&item.fromBatchFormItemType == 'FormDate' && item.toManagementPrecision == 'BY_BATCH')
|
|
let noBatch = batchList.find(item => !item.fromBatch)
|
|
if(noBatch){
|
|
message.warning(`${noBatch.itemCode}没有填写批次,请填写`)
|
|
return
|
|
}
|
|
data.subList = tableData.value // 拼接子表数据参数
|
|
// let isExist = false
|
|
// tableData.value.forEach(item => {
|
|
// let rs = tableData.value.filter(filterItem => (filterItem.itemCode&&filterItem.itemCode == item.itemCode) )
|
|
// if(rs.length > 1) isExist = true
|
|
// })
|
|
// if (isExist) {
|
|
// formRef.value.formLoading = false
|
|
// isExist = false
|
|
// return message.warning('物料号重复')
|
|
// }
|
|
flag.value = false
|
|
data.subList.forEach(item => {
|
|
if(fromInventoryStatus.value){
|
|
//item.fromInventoryStatus = fromInventoryStatus.value
|
|
item.toInventoryStatus = toInventoryStatus.value
|
|
}
|
|
if(item.qty == 0){
|
|
message.error(`到数量不能为0!`)
|
|
flag.value = true
|
|
return;
|
|
}
|
|
})
|
|
if(flag.value){
|
|
formRef.value.formLoading = false
|
|
return
|
|
}
|
|
formRef.value.formLoading = true
|
|
try {
|
|
if (formType === 'create') {
|
|
await InventorymoveRequestMainApi.createInventorymoveRequestMain(data)
|
|
message.success(t('common.createSuccess'))
|
|
} else {
|
|
await InventorymoveRequestMainApi.updateInventorymoveRequestMain(data)
|
|
message.success(t('common.updateSuccess'))
|
|
}
|
|
formRef.value.dialogVisible = false
|
|
// 刷新当前列表
|
|
if (formType === 'create') {
|
|
getList()
|
|
}else{
|
|
buttonBaseClick('refresh',null)
|
|
}
|
|
} finally {
|
|
formRef.value.formLoading = false
|
|
}
|
|
}
|
|
|
|
/** 导入 */
|
|
const importFormRef = ref()
|
|
const handleImport = () => {
|
|
importFormRef.value.open()
|
|
}
|
|
|
|
// 导入附件弹窗所需的参数
|
|
const importTemplateData = reactive({
|
|
templateUrl: '',
|
|
templateTitle: `【${route.meta.title}】导入模版.xlsx`
|
|
})
|
|
|
|
// 导入成功之后
|
|
const importSuccess = () => {
|
|
getList()
|
|
}
|
|
|
|
// 筛选提交
|
|
const searchFormClick = (searchData) => {
|
|
const cmd = {
|
|
'column':'businessType',
|
|
'action':'==',
|
|
'value':businessType.value
|
|
}
|
|
if (!Array.isArray(searchData.filters)) {
|
|
searchData.filters = [];
|
|
}
|
|
searchData.filters.push(cmd)
|
|
tableObject.params = {
|
|
isSearch: true,
|
|
filters: searchData.filters
|
|
}
|
|
getList() // 刷新当前列表
|
|
}
|
|
|
|
const searchList = (model)=>{
|
|
model.businessType=businessType.value
|
|
setSearchParams(model)
|
|
}
|
|
|
|
/** 初始化 **/
|
|
onMounted(async () => {
|
|
|
|
getList()
|
|
// 库存移动申请InventorymoveRequestMain
|
|
if(routeName.value == "InventorymoveRequestMain"){
|
|
importTemplateData.templateUrl = await InventorymoveRequestMainApi.importTemplate()
|
|
}
|
|
})
|
|
</script>
|
|
|