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.
637 lines
21 KiB
637 lines
21 KiB
<template>
|
|
<ContentWrap>
|
|
<!-- 搜索工作栏 -->
|
|
<Search :schema="UnplannedreceiptRequestMain.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" />
|
|
</ContentWrap>
|
|
|
|
<!-- 列表头部 -->
|
|
<TableHead
|
|
:HeadButttondata="HeadButttondata"
|
|
@button-base-click="buttonBaseClick"
|
|
:routeName="routeName"
|
|
@updataTableColumns="updataTableColumns"
|
|
@searchFormClick="searchFormClick"
|
|
:allSchemas="UnplannedreceiptRequestMain.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(row)" @button-base-click="buttonTableClick($event,row)" />
|
|
</template>
|
|
</Table>
|
|
</ContentWrap>
|
|
|
|
<!-- 表单弹窗:添加/修改 -->
|
|
<BasicForm
|
|
ref="formRef"
|
|
@success="getList"
|
|
:rules="UnplannedreceiptRequestMainRules"
|
|
:formAllSchemas="UnplannedreceiptRequestMain.allSchemas"
|
|
:tableAllSchemas="UnplannedreceiptRequestDetail.allSchemas"
|
|
:tableFormRules="UnplannedreceiptRequestDetailRules"
|
|
:tableData="tableData"
|
|
:apiUpdate="UnplannedreceiptRequestMainApi.updateUnplannedreceiptRequestMain"
|
|
:apiCreate="UnplannedreceiptRequestMainApi.createUnplannedreceiptRequestMain"
|
|
:isBusiness="true"
|
|
@handleAddTable="handleAddTable"
|
|
@handleDeleteTable="handleDeleteTable"
|
|
@searchTableSuccess="searchTableSuccess"
|
|
@submitForm="submitForm"
|
|
@inputNumberChange="inputNumberChange"
|
|
/>
|
|
|
|
<!-- 详情 -->
|
|
<Detail
|
|
ref="detailRef"
|
|
:isBasic="false"
|
|
:allSchemas="UnplannedreceiptRequestMain.allSchemas"
|
|
:detailAllSchemas="UnplannedreceiptRequestDetail.allSchemas"
|
|
:detailAllSchemasRules="UnplannedreceiptRequestDetailRules"
|
|
:apiCreate="UnplannedreceiptRequestDetailApi.createUnplannedreceiptRequestDetail"
|
|
:apiUpdate="UnplannedreceiptRequestDetailApi.updateUnplannedreceiptRequestDetail"
|
|
:apiPage="UnplannedreceiptRequestDetailApi.getUnplannedreceiptRequestDetailPage"
|
|
:apiDelete="UnplannedreceiptRequestDetailApi.deleteUnplannedreceiptRequestDetail"
|
|
:Echo="Echo"
|
|
@searchTableSuccessDetail="searchTableSuccessDetail"
|
|
:detailValidate="detailValidate"
|
|
@detailBasicFormOnChange="qtyOnChange"
|
|
/>
|
|
|
|
<!-- 创建标签 -->
|
|
<BasicForm
|
|
ref="formLabelRef"
|
|
@success="getList"
|
|
:tableAllSchemas="detailListTableColumns"
|
|
:tableFormRules="UnplannedreceiptRequestDetailLabelRules"
|
|
:tableData="detatableData.tableList"
|
|
:isBusiness="true"
|
|
:isShowButton="false"
|
|
@handleAddTable="handleAddTable"
|
|
@handleDeleteTable="handleDeleteTable"
|
|
@searchTableSuccess="searchTableSuccess"
|
|
@submitForm="submitFormLabel"
|
|
|
|
/>
|
|
|
|
<!-- 导入 -->
|
|
<ImportForm ref="importFormRef" url="/wms/unplannedreceipt-request-main/import" :importTemplateData="importTemplateData"
|
|
@success="importSuccess" :updateIsDisable="true" :coverIsDisable="true" :mode="2" />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import download from '@/utils/download'
|
|
import {
|
|
UnplannedreceiptRequestMain,
|
|
UnplannedreceiptRequestMainRules,
|
|
UnplannedreceiptRequestDetail,
|
|
UnplannedreceiptRequestDetailRules,
|
|
UnplannedreceiptRequestDetailLabelRules, UnplannedreceiptRequestDetailLabel
|
|
} from './unplannedreceiptRequestMain.data'
|
|
import * as UnplannedreceiptRequestMainApi from '@/api/wms/unplannedreceiptRequestMain'
|
|
import * as UnplannedreceiptRequestDetailApi from '@/api/wms/unplannedreceiptRequestDetail'
|
|
import * as defaultButtons from '@/utils/disposition/defaultButtons'
|
|
import {
|
|
ProductionreturnRequestDetailLabel, ProductionreturnRequestDetailLabelRules
|
|
} from "@/views/wms/issueManage/productionreturn/productionreturnRequestMain/productionreturnRequestMain.data";
|
|
import * as ProductionreturnRequestDetailApi from "@/api/wms/productionreturnRequestDetail";
|
|
import * as ItembasicApi from "@/api/wms/itembasic";
|
|
import * as PackageApi from "@/api/wms/package";
|
|
import {UnplannedreceiptRequestDetailVO} from "@/api/wms/unplannedreceiptRequestDetail";
|
|
import { formatTime } from '@/utils/index'
|
|
|
|
// 计划外入库申请
|
|
defineOptions({ name: 'UnplannedreceiptRequestMain' })
|
|
|
|
const message = useMessage() // 消息弹窗
|
|
const { t } = useI18n() // 国际化
|
|
|
|
const route = useRoute() // 路由信息
|
|
const routeName = ref()
|
|
routeName.value = route.name
|
|
const tableColumns = ref(UnplannedreceiptRequestMain.allSchemas.tableColumns)
|
|
|
|
//创建标签
|
|
const detailListTableColumns = UnplannedreceiptRequestDetailLabel.allSchemas
|
|
const isCreateLabel = ref(false)
|
|
const formLabelRef = ref()
|
|
const labelType = ref('') // 标签类别 采购还是制造等
|
|
const { tableObject: detatableData, tableMethods: detatableMethods } =useTable({
|
|
getListApi: UnplannedreceiptRequestDetailApi.getUnplannedreceiptRequestDetailPage
|
|
})
|
|
const { getList:getDetailList } = detatableMethods
|
|
|
|
// 字段设置 更新主列表字段
|
|
const updataTableColumns = (val) => {
|
|
tableColumns.value = val
|
|
}
|
|
|
|
// 判断 物料类型是否与其他物料类型一致
|
|
const isItemType = async (itemCode, labelTypeParams) => {
|
|
let isType = false
|
|
const labelTypeOld = JSON.parse(JSON.stringify(labelType.value))
|
|
await ItembasicApi.getItembasicPage({
|
|
pageSize: 10,
|
|
pageNo: 1,
|
|
code: itemCode,
|
|
sort: '',
|
|
by: 'ASC',
|
|
}).then(res => {
|
|
if (res.list.length > 0) {
|
|
// 判断物料 可采购 可制造
|
|
if (res.list[0].enableMake == "FALSE") {
|
|
labelType.value = 'cg'
|
|
if (labelTypeParams == 'cg') {
|
|
isType = true
|
|
}
|
|
} else {
|
|
labelType.value = 'zz'
|
|
if (labelTypeParams == 'zz') {
|
|
isType = true
|
|
}
|
|
}
|
|
if(labelTypeParams == '') isType = true
|
|
}
|
|
})
|
|
// 当第二次选择为不同类型时 类型要重置到第一次选择的结果
|
|
if (!isType) labelType.value = labelTypeOld
|
|
return isType
|
|
}
|
|
|
|
// 查询页面返回
|
|
const searchTableSuccess = (formField, searchField, val, formRef, type, row ) => {
|
|
nextTick(async () => {
|
|
if (type == 'tableForm') {
|
|
// 明细查询页赋值
|
|
if(formField == 'toLocationCode'){
|
|
row['toLocationCode'] = val[0]['code']
|
|
} else if(formField == 'itemCode'){
|
|
const isType = await isItemType(val[0]['code'], labelType.value)
|
|
if(!isType){
|
|
message.warning('当前物料可制造与其他数据不一致,请重新选择!')
|
|
} else {
|
|
row['itemCode'] = val[0]['code']
|
|
row['uom'] = val[0]['uom']
|
|
}
|
|
} else {
|
|
row[formField] = val[0][searchField]
|
|
}
|
|
} else {
|
|
const setV = {}
|
|
setV[formField] = val[0][searchField]
|
|
formRef.setValues(setV)
|
|
}
|
|
})
|
|
}
|
|
// 查询页面返回——详情
|
|
const searchTableSuccessDetail = (formField, searchField, val, formRef ) => {
|
|
nextTick(() => {
|
|
const setV = {}
|
|
setV[formField] = val[0][searchField]
|
|
if(formField == 'toLocationCode'){
|
|
setV['toLocationCode'] = val[0]['code']
|
|
}
|
|
if(formField == 'itemCode'){
|
|
setV['itemCode'] = val[0]['code']
|
|
setV['uom'] = val[0]['uom']
|
|
}
|
|
formRef.setValues(setV)
|
|
})
|
|
}
|
|
|
|
// 子表新增的时候选择表格之后需要会显得字段
|
|
// const Echo = ['ppNumber','poLine', 'batch', 'altBatch', 'itemCode', 'itemName', 'itemDesc1', 'itemDesc2', 'projectCode', 'qty', 'uom']
|
|
const Echo = []
|
|
|
|
const { tableObject, tableMethods } = useTable({
|
|
getListApi: UnplannedreceiptRequestMainApi.getUnplannedreceiptRequestMainPage // 分页接口
|
|
})
|
|
|
|
// 获得表格的各种操作
|
|
const { getList, setSearchParams } = tableMethods
|
|
|
|
// 列表头部按钮
|
|
const HeadButttondata = [
|
|
defaultButtons.defaultAddBtn({hasPermi:'wms:unplannedreceipt-request-main:create'}), // 新增
|
|
defaultButtons.defaultImportBtn({hasPermi:'wms:unplannedreceipt-request-main:import'}), // 导入
|
|
defaultButtons.defaultExportBtn({hasPermi:'wms:unplannedreceipt-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) => {
|
|
return [
|
|
defaultButtons.mainListCloseBtn({hide:isShowMainButton(row,['1','2','3','4']),hasPermi:'wms:unplannedreceipt-request-main:close'}), // 关闭
|
|
defaultButtons.mainListReAddBtn({hide:isShowMainButton(row,['5']),hasPermi:'wms:unplannedreceipt-request-main:reAdd'}), // 重新添加
|
|
defaultButtons.mainListSubmitBtn({hide:isShowMainButton(row,['1']),hasPermi:'wms:unplannedreceipt-request-main:submit'}), // 提交审批
|
|
defaultButtons.mainListTurnDownBtn({hide:isShowMainButton(row,['2']),hasPermi:'wms:unplannedreceipt-request-main:refused'}), // 驳回
|
|
defaultButtons.mainListApproveBtn({hide:isShowMainButton(row,['2']),hasPermi:'wms:unplannedreceipt-request-main:agree'}), // 审批通过
|
|
defaultButtons.mainListHandleBtn({hide:isShowMainButton(row,['3']),hasPermi:'wms:unplannedreceipt-request-main:handle'}), // 处理
|
|
defaultButtons.mainListEditBtn({hide:isShowMainButton(row,['1']),hasPermi:'wms:unplannedreceipt-request-main:update'}), // 编辑
|
|
// defaultButtons.mainListDeleteBtn({hasPermi:'wms:unplannedreceipt-request-main:delete'}), // 删除
|
|
{
|
|
label: '创建标签',
|
|
name: 'cjbq',
|
|
hide: isShowMainButton(row,['3']),
|
|
type: 'primary',
|
|
icon: '',
|
|
color: '',
|
|
hasPermi: '',
|
|
link: true, // 文本展现按钮
|
|
},
|
|
]
|
|
}
|
|
|
|
// 列表-操作按钮事件
|
|
const buttonTableClick = async (val, row) => {
|
|
console.log("val",val)
|
|
if (val == 'mainClose') { // 关闭
|
|
console.log('列表-操作按钮事件-关闭')
|
|
handleClose(row.id)
|
|
} else if (val == 'mainReAdd') { // 重新添加
|
|
console.log('列表-操作按钮事件-重新添加')
|
|
handleReAdd(row.id)
|
|
} else if (val == 'mainSubmit') { // 提交审批
|
|
console.log('列表-操作按钮事件-提交审批')
|
|
handleSubmit(row.id)
|
|
} else if (val == 'mainTurnDown') { // 驳回
|
|
console.log('列表-操作按钮事件-驳回')
|
|
handleRefused(row.id)
|
|
} else if (val == 'mainApprove') { // 审批通过
|
|
console.log('列表-操作按钮事件-审批通过')
|
|
handleAgree(row.id)
|
|
} else if (val == 'mainHandle') { // 处理
|
|
console.log('列表-操作按钮事件-处理')
|
|
handleHandle(row.id)
|
|
} else if (val == 'edit') { // 编辑
|
|
openForm('update', row)
|
|
} else if (val == 'delete') { // 删除
|
|
handleDelete(row.id)
|
|
} else if( val == 'cjbq'){// 创建标签
|
|
// 判断 是否已创建标签
|
|
let isCreateLabel = false
|
|
await PackageApi.getPackagePage({
|
|
requestNumber: row.number
|
|
}).then(res => {
|
|
if (res) {
|
|
if (res.list.length > 0) isCreateLabel = true
|
|
}
|
|
})
|
|
if (isCreateLabel) {
|
|
message.warning('已创建过标签!!!')
|
|
return
|
|
}
|
|
console.log("列表-操作按钮事件-创建标签")
|
|
detatableData.params = {
|
|
masterId:row.id
|
|
}
|
|
await getDetailList()
|
|
// 判断 是否已创建标签
|
|
if (detatableData.tableList[0].packingNumber) {
|
|
message.warning('已创建过标签!!!')
|
|
return
|
|
}
|
|
// 打开创建标签页面
|
|
// dialogVisible.value = true
|
|
formLabelRef.value.open('create', row)
|
|
detatableData.tableList.map((item) => {
|
|
// 查询物料类型 原料 只能选择 供应商代码 半成品成品其他 只能选择 生产线
|
|
ItembasicApi.getItembasicPage({
|
|
pageSize: 10,
|
|
pageNo: 1,
|
|
code: item.itemCode,
|
|
sort: '',
|
|
by: 'ASC',
|
|
}).then(res => {
|
|
if (res.list.length > 0) {
|
|
// 判断物料 可采购 可制造
|
|
if (res.list[0].enableMake == "FALSE") {
|
|
// 修改 tableform 属性
|
|
detailListTableColumns.tableFormColumns.map(item => {
|
|
if(item.field == 'productionLineCodePackage') {
|
|
item.tableForm.isInpuFocusShow = false
|
|
item.tableForm.disabled = true
|
|
UnplannedreceiptRequestDetailLabelRules.productionLineCodePackage[0].required = false
|
|
}
|
|
if(item.field == 'supplierItemCode') {
|
|
item.tableForm.isInpuFocusShow = true
|
|
item.tableForm.disabled = false
|
|
UnplannedreceiptRequestDetailLabelRules.supplierItemCode[0].required = true
|
|
}
|
|
})
|
|
} else {
|
|
// 修改 tableform 属性
|
|
detailListTableColumns.tableFormColumns.map(item => {
|
|
if(item.field == 'supplierItemCode') {
|
|
item.tableForm.isInpuFocusShow = false
|
|
item.tableForm.disabled = true
|
|
UnplannedreceiptRequestDetailLabelRules.supplierItemCode[0].required = false
|
|
}
|
|
if(item.field == 'productionLineCodePackage') {
|
|
item.tableForm.isInpuFocusShow = true
|
|
item.tableForm.disabled = false
|
|
UnplannedreceiptRequestDetailLabelRules.productionLineCodePackage[0].required = true
|
|
}
|
|
})
|
|
}
|
|
} else {
|
|
message.warning('没有查询到物料代码:【' + item.itemCode + '】')
|
|
return
|
|
}
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
/** 关闭按钮操作 */
|
|
const handleClose = async (id: number) => {
|
|
await message.confirm(t('common.confirmColse'))
|
|
tableObject.loading = true
|
|
await UnplannedreceiptRequestMainApi.closeUnplannedreceiptRequestMain(id)
|
|
message.success(t('common.closeSuccess'))
|
|
tableObject.loading = false
|
|
await getList()
|
|
}
|
|
|
|
/** 重新添加按钮操作 */
|
|
const handleReAdd = async (id: number) => {
|
|
await message.confirm(t('common.confirmReAdd'))
|
|
tableObject.loading = true
|
|
await UnplannedreceiptRequestMainApi.reAddUnplannedreceiptRequestMain(id)
|
|
message.success(t('common.reAddSuccess'))
|
|
tableObject.loading = false
|
|
await getList()
|
|
}
|
|
|
|
/** 提交按钮操作 */
|
|
const handleSubmit = async (id: number) => {
|
|
await message.confirm(t('common.confirmSubmit'))
|
|
tableObject.loading = true
|
|
await UnplannedreceiptRequestMainApi.submitUnplannedreceiptRequestMain(id)
|
|
message.success(t('common.submitSuccess'))
|
|
tableObject.loading = false
|
|
await getList()
|
|
}
|
|
|
|
/** 审批驳回按钮操作 */
|
|
const handleRefused = async (id: number) => {
|
|
await message.confirm(t('common.confirmRefused'))
|
|
tableObject.loading = true
|
|
await UnplannedreceiptRequestMainApi.refusedUnplannedreceiptRequestMain(id)
|
|
message.success(t('common.refusedSuccess'))
|
|
tableObject.loading = false
|
|
await getList()
|
|
}
|
|
|
|
/** 审批通过按钮操作 */
|
|
const handleAgree = async (id: number) => {
|
|
await message.confirm(t('common.confirmAgree'))
|
|
tableObject.loading = true
|
|
await UnplannedreceiptRequestMainApi.agreeUnplannedreceiptRequestMain(id)
|
|
message.success(t('common.agreeSuccess'))
|
|
tableObject.loading = false
|
|
await getList()
|
|
}
|
|
|
|
/** 处理按钮操作 */
|
|
const handleHandle = async (id: number) => {
|
|
await message.confirm(t('common.confirmHandle'))
|
|
tableObject.loading = true
|
|
await UnplannedreceiptRequestMainApi.handleUnplannedreceiptRequestMain(id)
|
|
message.success(t('common.handleSuccess'))
|
|
tableObject.loading = false
|
|
await getList()
|
|
}
|
|
|
|
/** 添加/修改操作 */
|
|
const formRef = ref()
|
|
const openForm =async (type: string, row?: number) => {
|
|
tableData.value = [] // 重置明细数据
|
|
formRef.value.open(type, row)
|
|
}
|
|
|
|
/** 详情操作 */
|
|
const detailRef = ref()
|
|
const openDetail = (row: any, titleName: any, titleValue: any) => {
|
|
detailRef.value.openDetail(row, titleName, titleValue,'requestUnplannedreceiptMain')
|
|
}
|
|
|
|
/** 删除按钮操作 */
|
|
const handleDelete = async (id: number) => {
|
|
try {
|
|
// 删除的二次确认
|
|
await message.delConfirm()
|
|
tableObject.loading = true
|
|
// 发起删除
|
|
await UnplannedreceiptRequestMainApi.deleteUnplannedreceiptRequestMain(id)
|
|
message.success(t('common.delSuccess'))
|
|
tableObject.loading = false
|
|
// 刷新列表
|
|
await getList()
|
|
} catch {}
|
|
}
|
|
|
|
/** 导出按钮操作 */
|
|
const exportLoading = ref(false) // 导出的加载中
|
|
const handleExport = async () => {
|
|
try {
|
|
// 导出的二次确认
|
|
await message.exportConfirm()
|
|
// 发起导出
|
|
exportLoading.value = true
|
|
const data = await UnplannedreceiptRequestMainApi.exportUnplannedreceiptRequestMain(tableObject.params)
|
|
download.excel(data, '计划外入库申请主.xlsx')
|
|
} catch {
|
|
} finally {
|
|
exportLoading.value = false
|
|
}
|
|
}
|
|
|
|
/**
|
|
* tableForm方法
|
|
*/
|
|
const tableFormKeys = {}
|
|
UnplannedreceiptRequestDetail.allSchemas.tableFormColumns.forEach(item => {
|
|
tableFormKeys[item.field] = item.default ? item.default : ''
|
|
})
|
|
const tableData = ref([])
|
|
|
|
// 添加明细
|
|
const handleAddTable = () => {
|
|
let tfk = JSON.parse(JSON.stringify(tableFormKeys))
|
|
tfk.batch = formatTime(new Date(), 'yyyyMMdd')
|
|
tableData.value.push(tfk)
|
|
}
|
|
// 删除明细
|
|
const handleDeleteTable = (item, index) => {
|
|
tableData.value.splice(index, 1)
|
|
}
|
|
|
|
// 主子数据 提交
|
|
const submitForm = async (formType, data) => {
|
|
data.subList = tableData.value // 拼接子表数据参数
|
|
try {
|
|
if (formType === 'create') {
|
|
console.log("【计划外入库子列表】",data.subList)
|
|
if(data.subList.length == 0){
|
|
message.warning("请添加子列表数据")
|
|
return;
|
|
}
|
|
let flag = false;
|
|
data.subList.forEach((item) => {
|
|
if(item.qty == 0){
|
|
message.warning("数量不能为0")
|
|
flag = true;
|
|
return;
|
|
}
|
|
})
|
|
if(flag){
|
|
formRef.value.formLoading = false
|
|
return
|
|
}
|
|
await UnplannedreceiptRequestMainApi.createUnplannedreceiptRequestMain(data)
|
|
message.success(t('common.createSuccess'))
|
|
} else {
|
|
await UnplannedreceiptRequestMainApi.updateUnplannedreceiptRequestMain(data)
|
|
message.success(t('common.updateSuccess'))
|
|
}
|
|
formRef.value.dialogVisible = false
|
|
// 刷新当前列表
|
|
getList()
|
|
} finally {
|
|
formRef.value.formLoading = false
|
|
}
|
|
}
|
|
|
|
// 子表新增/编辑校验
|
|
const detailValidate = (data) => {
|
|
let tag = false;
|
|
if(data.qty <= 0){
|
|
message.warning('数量必须大于0')
|
|
tag = false;
|
|
return tag;
|
|
}else {
|
|
tag = true;
|
|
return tag;
|
|
}
|
|
}
|
|
|
|
/** 导入 */
|
|
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() // 刷新当前列表
|
|
}
|
|
|
|
// 创建标签
|
|
const submitFormLabel = async (formType, data) => {
|
|
try {
|
|
detatableData.tableList.forEach(async (item) => {
|
|
await PackageApi.createPackageLabel(item).then(res => {
|
|
isCreateLabel.value = true
|
|
message.success('创建标签成功')
|
|
}).catch(err => {
|
|
isCreateLabel.value = false
|
|
console.log(err)
|
|
message.error('创建标签失败')
|
|
})
|
|
})
|
|
} finally {
|
|
formLabelRef.value.formLoading = false
|
|
formLabelRef.value.dialogVisible = false
|
|
}
|
|
}
|
|
|
|
const inputNumberChange = (field, index, row, val) => {
|
|
if(field == 'qty' || field == 'singlePrice'){
|
|
row.amount = row.qty * row.singlePrice
|
|
}
|
|
}
|
|
const qtyOnChange = (field,val) =>{
|
|
if(field == 'qty' || field == 'singlePrice'){
|
|
detailRef.value.formRef.formRef.formModel.amount = detailRef.value.formRef.formRef.formModel.qty * detailRef.value.formRef.formRef.formModel.singlePrice
|
|
}
|
|
}
|
|
|
|
/** 初始化 **/
|
|
onMounted(async () => {
|
|
getList()
|
|
importTemplateData.templateUrl = await UnplannedreceiptRequestMainApi.importTemplate()
|
|
})
|
|
</script>
|
|
|