|
@ -1,58 +1,96 @@ |
|
|
<template> |
|
|
<template> |
|
|
<ContentWrap> |
|
|
<ContentWrap> |
|
|
<!-- 搜索工作栏 --> |
|
|
<!-- 搜索工作栏 --> |
|
|
<Search :schema="SupplierdeliverRequestMain.allSchemas.searchSchema" @search="setSearchParams" |
|
|
<Search |
|
|
@reset="setSearchParams" /> |
|
|
:schema="SupplierdeliverRequestMain.allSchemas.searchSchema" |
|
|
|
|
|
@search="setSearchParams" |
|
|
|
|
|
@reset="setSearchParams" |
|
|
|
|
|
/> |
|
|
</ContentWrap> |
|
|
</ContentWrap> |
|
|
|
|
|
|
|
|
<!-- 列表头部 --> |
|
|
<!-- 列表头部 --> |
|
|
<TableHead :HeadButttondata="HeadButttondata" @button-base-click="buttonBaseClick" :routeName="routeName" |
|
|
<TableHead |
|
|
@updataTableColumns="updataTableColumns" @searchFormClick="searchFormClick" |
|
|
:HeadButttondata="HeadButttondata" |
|
|
:allSchemas="SupplierdeliverRequestMain.allSchemas" /> |
|
|
@button-base-click="buttonBaseClick" |
|
|
|
|
|
:routeName="routeName" |
|
|
|
|
|
@updataTableColumns="updataTableColumns" |
|
|
|
|
|
@searchFormClick="searchFormClick" |
|
|
|
|
|
:allSchemas="SupplierdeliverRequestMain.allSchemas" |
|
|
|
|
|
/> |
|
|
|
|
|
|
|
|
<!-- 列表 --> |
|
|
<!-- 列表 --> |
|
|
<ContentWrap> |
|
|
<ContentWrap> |
|
|
<Table :columns="tableColumns" :data="tableObject.tableList" :loading="tableObject.loading" :pagination="{ |
|
|
<Table |
|
|
|
|
|
:columns="tableColumns" |
|
|
|
|
|
:data="tableObject.tableList" |
|
|
|
|
|
:loading="tableObject.loading" |
|
|
|
|
|
:pagination="{ |
|
|
total: tableObject.total |
|
|
total: tableObject.total |
|
|
}" v-model:pageSize="tableObject.pageSize" v-model:currentPage="tableObject.currentPage" |
|
|
}" |
|
|
v-model:sort="tableObject.sort"> |
|
|
v-model:pageSize="tableObject.pageSize" |
|
|
|
|
|
v-model:currentPage="tableObject.currentPage" |
|
|
|
|
|
v-model:sort="tableObject.sort" |
|
|
|
|
|
> |
|
|
<template #number="{ row }"> |
|
|
<template #number="{ row }"> |
|
|
<el-button type="primary" link @click="openDetail(row, '单据号', row.number)"> |
|
|
<el-button type="primary" link @click="openDetail(row, '单据号', row.number)"> |
|
|
<span>{{ row.number }}</span> |
|
|
<span>{{ row.number }}</span> |
|
|
</el-button> |
|
|
</el-button> |
|
|
</template> |
|
|
</template> |
|
|
<template #action="{ row }"> |
|
|
<template #action="{ row }"> |
|
|
<ButtonBase :Butttondata="butttondata(row)" @button-base-click="buttonTableClick($event, row)" /> |
|
|
<ButtonBase |
|
|
|
|
|
:Butttondata="butttondata(row)" |
|
|
|
|
|
@button-base-click="buttonTableClick($event, row)" |
|
|
|
|
|
/> |
|
|
</template> |
|
|
</template> |
|
|
</Table> |
|
|
</Table> |
|
|
</ContentWrap> |
|
|
</ContentWrap> |
|
|
|
|
|
|
|
|
<!-- 表单弹窗:添加/修改 --> |
|
|
<!-- 表单弹窗:添加/修改 --> |
|
|
<BasicForm ref="formRef" @success="getList" :rules="SupplierdeliverRequestMainRules" |
|
|
<BasicForm |
|
|
:formAllSchemas="SupplierdeliverRequestMain.allSchemas" :tableAllSchemas="SupplierdeliverRequestDetail.allSchemas" |
|
|
ref="formRef" |
|
|
:tableFormRules="SupplierdeliverRequestDetailRules" :tableData="tableData" |
|
|
@success="getList" |
|
|
|
|
|
:rules="SupplierdeliverRequestMainRules" |
|
|
|
|
|
:formAllSchemas="SupplierdeliverRequestMain.allSchemas" |
|
|
|
|
|
:tableAllSchemas="SupplierdeliverRequestDetail.allSchemas" |
|
|
|
|
|
:tableFormRules="SupplierdeliverRequestDetailRules" |
|
|
|
|
|
:tableData="tableData" |
|
|
:apiUpdate="SupplierdeliverRequestMainApi.updateSupplierdeliverRequestMain" |
|
|
:apiUpdate="SupplierdeliverRequestMainApi.updateSupplierdeliverRequestMain" |
|
|
:apiCreate="SupplierdeliverRequestMainApi.createSupplierdeliverRequestMain" :isBusiness="true" |
|
|
:apiCreate="SupplierdeliverRequestMainApi.createSupplierdeliverRequestMain" |
|
|
@handleAddTable="handleAddTable" @handleDeleteTable="handleDeleteTable" @searchTableSuccess="searchTableSuccess" |
|
|
:isBusiness="true" |
|
|
@submitForm="submitForm" /> |
|
|
@handleAddTable="handleAddTable" |
|
|
|
|
|
@handleDeleteTable="handleDeleteTable" |
|
|
|
|
|
@searchTableSuccess="searchTableSuccess" |
|
|
|
|
|
@submitForm="submitForm" |
|
|
|
|
|
/> |
|
|
|
|
|
|
|
|
<!-- 详情 --> |
|
|
<!-- 详情 --> |
|
|
<Detail ref="detailRef" :isBasic="false" :allSchemas="SupplierdeliverRequestMain.allSchemas" |
|
|
<Detail |
|
|
|
|
|
ref="detailRef" |
|
|
|
|
|
:isBasic="false" |
|
|
|
|
|
:allSchemas="SupplierdeliverRequestMain.allSchemas" |
|
|
:detailAllSchemas="SupplierdeliverRequestDetail.allSchemas" |
|
|
:detailAllSchemas="SupplierdeliverRequestDetail.allSchemas" |
|
|
:detailAllSchemasRules="SupplierdeliverRequestDetailRules" |
|
|
:detailAllSchemasRules="SupplierdeliverRequestDetailRules" |
|
|
:apiCreate="SupplierdeliverRequestDetailApi.createSupplierdeliverRequestDetail" |
|
|
:apiCreate="SupplierdeliverRequestDetailApi.createSupplierdeliverRequestDetail" |
|
|
:apiUpdate="SupplierdeliverRequestDetailApi.updateSupplierdeliverRequestDetail" |
|
|
:apiUpdate="SupplierdeliverRequestDetailApi.updateSupplierdeliverRequestDetail" |
|
|
:apiPage="SupplierdeliverRequestDetailApi.getSupplierdeliverRequestDetailPage" |
|
|
:apiPage="SupplierdeliverRequestDetailApi.getSupplierdeliverRequestDetailPage" |
|
|
:apiDelete="SupplierdeliverRequestDetailApi.deleteSupplierdeliverRequestDetail" :Echo="Echo" |
|
|
:apiDelete="SupplierdeliverRequestDetailApi.deleteSupplierdeliverRequestDetail" |
|
|
@searchTableSuccessDetail="searchTableSuccessDetail" /> |
|
|
:Echo="Echo" |
|
|
|
|
|
@searchTableSuccessDetail="searchTableSuccessDetail" |
|
|
|
|
|
/> |
|
|
|
|
|
|
|
|
<!-- 导入 --> |
|
|
<!-- 导入 --> |
|
|
<ImportForm ref="importFormRef" url="/wms/supplierdeliver-request-main/import" |
|
|
<ImportForm |
|
|
:importTemplateData="importTemplateData" @success="importSuccess" :updateIsDisable="true" :coverIsDisable="true" |
|
|
ref="importFormRef" |
|
|
:mode="2" /> |
|
|
url="/wms/supplierdeliver-request-main/import" |
|
|
|
|
|
:importTemplateData="importTemplateData" |
|
|
|
|
|
@success="importSuccess" |
|
|
|
|
|
:updateIsDisable="true" |
|
|
|
|
|
:coverIsDisable="true" |
|
|
|
|
|
:mode="2" |
|
|
|
|
|
/> |
|
|
|
|
|
|
|
|
<!-- 打印 --> |
|
|
<!-- 打印 --> |
|
|
<point ref='pointRef' :detailListTableColumns='detailListTableColumns' /> |
|
|
<point ref="pointRef" :detailListTableColumns="detailListTableColumns" /> |
|
|
<!-- <el-dialog v-model="dialogVisible" :title="dialogTitle" width="60%"> |
|
|
<!-- <el-dialog v-model="dialogVisible" :title="dialogTitle" width="60%"> |
|
|
<Table :columns="detailListTableColumns" :data="detatableData.tableList" :loading="detatableData.loading" :pagination="{ |
|
|
<Table :columns="detailListTableColumns" :data="detatableData.tableList" :loading="detatableData.loading" :pagination="{ |
|
|
total: detatableData.total |
|
|
total: detatableData.total |
|
@ -72,7 +110,12 @@ |
|
|
<script setup lang="ts"> |
|
|
<script setup lang="ts"> |
|
|
import download from '@/utils/download' |
|
|
import download from '@/utils/download' |
|
|
import { getAccessToken } from '@/utils/auth' |
|
|
import { getAccessToken } from '@/utils/auth' |
|
|
import { SupplierdeliverRequestMain, SupplierdeliverRequestMainRules, SupplierdeliverRequestDetail, SupplierdeliverRequestDetailRules } from './supplierdeliverRequestMain.data' |
|
|
import { |
|
|
|
|
|
SupplierdeliverRequestMain, |
|
|
|
|
|
SupplierdeliverRequestMainRules, |
|
|
|
|
|
SupplierdeliverRequestDetail, |
|
|
|
|
|
SupplierdeliverRequestDetailRules |
|
|
|
|
|
} from './supplierdeliverRequestMain.data' |
|
|
import * as SupplierdeliverRequestMainApi from '@/api/wms/supplierdeliverRequestMain' |
|
|
import * as SupplierdeliverRequestMainApi from '@/api/wms/supplierdeliverRequestMain' |
|
|
import * as SupplierdeliverRequestDetailApi from '@/api/wms/supplierdeliverRequestDetail' |
|
|
import * as SupplierdeliverRequestDetailApi from '@/api/wms/supplierdeliverRequestDetail' |
|
|
import * as PurchasePlanDetailApi from '@/api/wms/purchasePlanDetail' |
|
|
import * as PurchasePlanDetailApi from '@/api/wms/purchasePlanDetail' |
|
@ -143,7 +186,7 @@ |
|
|
defaultButtons.defaultExportBtn({ hasPermi: 'wms:supplierdeliver-request-main:export' }), // 导出 |
|
|
defaultButtons.defaultExportBtn({ hasPermi: 'wms:supplierdeliver-request-main:export' }), // 导出 |
|
|
defaultButtons.defaultFreshBtn(null), // 刷新 |
|
|
defaultButtons.defaultFreshBtn(null), // 刷新 |
|
|
defaultButtons.defaultFilterBtn(null), // 筛选 |
|
|
defaultButtons.defaultFilterBtn(null), // 筛选 |
|
|
defaultButtons.defaultSetBtn(null), // 设置 |
|
|
defaultButtons.defaultSetBtn(null) // 设置 |
|
|
// { |
|
|
// { |
|
|
// label: '自定义扩展按钮', |
|
|
// label: '自定义扩展按钮', |
|
|
// name: 'zdy', |
|
|
// name: 'zdy', |
|
@ -156,15 +199,20 @@ |
|
|
|
|
|
|
|
|
// 头部按钮事件 |
|
|
// 头部按钮事件 |
|
|
const buttonBaseClick = (val, item) => { |
|
|
const buttonBaseClick = (val, item) => { |
|
|
if (val == 'add') { // 新增 |
|
|
if (val == 'add') { |
|
|
|
|
|
// 新增 |
|
|
openForm('create') |
|
|
openForm('create') |
|
|
} else if (val == 'import') { // 导入 |
|
|
} else if (val == 'import') { |
|
|
|
|
|
// 导入 |
|
|
handleImport() |
|
|
handleImport() |
|
|
} else if (val == 'export') { // 导出 |
|
|
} else if (val == 'export') { |
|
|
|
|
|
// 导出 |
|
|
handleExport() |
|
|
handleExport() |
|
|
} else if (val == 'refresh') { // 刷新 |
|
|
} else if (val == 'refresh') { |
|
|
|
|
|
// 刷新 |
|
|
getList() |
|
|
getList() |
|
|
} else if (val == 'filtrate') { // 筛选 |
|
|
} else if (val == 'filtrate') { |
|
|
|
|
|
// 筛选 |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -185,7 +233,10 @@ |
|
|
defaultButtons.mainListPlanSubBtn({ hide: isShowMainButton(row, ['1']) }), // 提交审批 |
|
|
defaultButtons.mainListPlanSubBtn({ hide: isShowMainButton(row, ['1']) }), // 提交审批 |
|
|
defaultButtons.mainListPlanAppBtn({ hide: isShowMainButton(row, ['2']) }), // 审批通过 |
|
|
defaultButtons.mainListPlanAppBtn({ hide: isShowMainButton(row, ['2']) }), // 审批通过 |
|
|
defaultButtons.mainListPlanTurBtn({ hide: isShowMainButton(row, ['2']) }), // 驳回按钮 |
|
|
defaultButtons.mainListPlanTurBtn({ hide: isShowMainButton(row, ['2']) }), // 驳回按钮 |
|
|
defaultButtons.mainListEditBtn({ hide: isShowMainButton(row, ['1']),hasPermi: 'wms:supplierdeliver-request-main:update' }), // 编辑 |
|
|
defaultButtons.mainListEditBtn({ |
|
|
|
|
|
hide: isShowMainButton(row, ['1']), |
|
|
|
|
|
hasPermi: 'wms:supplierdeliver-request-main:update' |
|
|
|
|
|
}), // 编辑 |
|
|
// defaultButtons.mainListDeleteBtn({ hasPermi: 'wms:supplierdeliver-request-main:delete' }), // 删除 |
|
|
// defaultButtons.mainListDeleteBtn({ hasPermi: 'wms:supplierdeliver-request-main:delete' }), // 删除 |
|
|
{ |
|
|
{ |
|
|
label: '生成标签', |
|
|
label: '生成标签', |
|
@ -195,7 +246,7 @@ |
|
|
icon: '', |
|
|
icon: '', |
|
|
color: '', |
|
|
color: '', |
|
|
hasPermi: '', |
|
|
hasPermi: '', |
|
|
link: true, // 文本展现按钮 |
|
|
link: true // 文本展现按钮 |
|
|
}, |
|
|
}, |
|
|
defaultButtons.mainListPointBtn({ hide: isShowMainButton(row, ['3']) }), // 标签打印 |
|
|
defaultButtons.mainListPointBtn({ hide: isShowMainButton(row, ['3']) }), // 标签打印 |
|
|
defaultButtons.mainListDocumentPrintBtn({ hide: isShowMainButton(row, ['3']) }), // 单据打印 |
|
|
defaultButtons.mainListDocumentPrintBtn({ hide: isShowMainButton(row, ['3']) }), // 单据打印 |
|
@ -208,34 +259,45 @@ |
|
|
icon: '', |
|
|
icon: '', |
|
|
color: '', |
|
|
color: '', |
|
|
hasPermi: '', |
|
|
hasPermi: '', |
|
|
link: true, // 文本展现按钮 |
|
|
link: true // 文本展现按钮 |
|
|
}, |
|
|
} |
|
|
] |
|
|
] |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
// 列表-操作按钮事件 |
|
|
// 列表-操作按钮事件 |
|
|
const buttonTableClick = async (val, row) => { |
|
|
const buttonTableClick = async (val, row) => { |
|
|
if (val == 'mainPurPlanOpe') { // 打开 |
|
|
if (val == 'mainPurPlanOpe') { |
|
|
|
|
|
// 打开 |
|
|
handleOpe(row.id) |
|
|
handleOpe(row.id) |
|
|
} else if (val == 'mainPurPlanClo') {// 关闭 |
|
|
} else if (val == 'mainPurPlanClo') { |
|
|
|
|
|
// 关闭 |
|
|
handleClo(row.id) |
|
|
handleClo(row.id) |
|
|
} else if (val == 'mainPlanSub') { // 提交审批 |
|
|
} else if (val == 'mainPlanSub') { |
|
|
|
|
|
// 提交审批 |
|
|
handleSub(row.id) |
|
|
handleSub(row.id) |
|
|
} else if (val == 'mainPlanApp') { // 审批通过 |
|
|
} else if (val == 'mainPlanApp') { |
|
|
|
|
|
// 审批通过 |
|
|
handleApp(row.id) |
|
|
handleApp(row.id) |
|
|
} else if (val == 'mainPlanTur') { // 驳回按钮 |
|
|
} else if (val == 'mainPlanTur') { |
|
|
|
|
|
// 驳回按钮 |
|
|
handleTur(row.id) |
|
|
handleTur(row.id) |
|
|
} else if (val == 'genRecords') { // 处理 |
|
|
} else if (val == 'genRecords') { |
|
|
|
|
|
// 处理 |
|
|
genRecords(row.id) |
|
|
genRecords(row.id) |
|
|
} else if (val == 'edit') { // 编辑 |
|
|
} else if (val == 'edit') { |
|
|
|
|
|
// 编辑 |
|
|
openForm('update', row) |
|
|
openForm('update', row) |
|
|
} else if (val == 'delete') { // 删除 |
|
|
} else if (val == 'delete') { |
|
|
|
|
|
// 删除 |
|
|
handleDelete(row.id) |
|
|
handleDelete(row.id) |
|
|
} else if (val == 'ssbq') { // 生成标签 |
|
|
} else if (val == 'ssbq') { |
|
|
|
|
|
// 生成标签 |
|
|
handlePoint(row) |
|
|
handlePoint(row) |
|
|
} else if (val == 'point') { // 标签打印 |
|
|
} else if (val == 'point') { |
|
|
|
|
|
// 标签打印 |
|
|
labelPrint(row) |
|
|
labelPrint(row) |
|
|
} else if (val == 'documentPrint') { // 单据打印 |
|
|
} else if (val == 'documentPrint') { |
|
|
|
|
|
// 单据打印 |
|
|
handleDocumentPrint(row.id) |
|
|
handleDocumentPrint(row.id) |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
@ -351,7 +413,9 @@ |
|
|
await message.exportConfirm() |
|
|
await message.exportConfirm() |
|
|
// 发起导出 |
|
|
// 发起导出 |
|
|
exportLoading.value = true |
|
|
exportLoading.value = true |
|
|
const data = await SupplierdeliverRequestMainApi.exportSupplierdeliverRequestMain(setSearchParams) |
|
|
const data = await SupplierdeliverRequestMainApi.exportSupplierdeliverRequestMain( |
|
|
|
|
|
setSearchParams |
|
|
|
|
|
) |
|
|
download.excel(data, '供应商发货申请主.xlsx') |
|
|
download.excel(data, '供应商发货申请主.xlsx') |
|
|
} catch { |
|
|
} catch { |
|
|
} finally { |
|
|
} finally { |
|
@ -360,7 +424,14 @@ |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
const detailTableColumns = ref(SupplierdeliverRequestDetail.allSchemas.tableColumns) |
|
|
const detailTableColumns = ref(SupplierdeliverRequestDetail.allSchemas.tableColumns) |
|
|
const detailListTableColumns = detailTableColumns.value.filter(item => item.label != '操作' && item.label != '创建者' && item.label != '创建时间' && item.label != '最后更新者' && item.label != '最后更新时间') |
|
|
const detailListTableColumns = detailTableColumns.value.filter( |
|
|
|
|
|
(item) => |
|
|
|
|
|
item.label != '操作' && |
|
|
|
|
|
item.label != '创建者' && |
|
|
|
|
|
item.label != '创建时间' && |
|
|
|
|
|
item.label != '最后更新者' && |
|
|
|
|
|
item.label != '最后更新时间' |
|
|
|
|
|
) |
|
|
const dialogVisible = ref(false) |
|
|
const dialogVisible = ref(false) |
|
|
const isShow = ref(false) |
|
|
const isShow = ref(false) |
|
|
const dialogTitle = ref('') |
|
|
const dialogTitle = ref('') |
|
@ -387,11 +458,10 @@ |
|
|
const BASE_URL = import.meta.env.VITE_JMREPORT_BASE_URL |
|
|
const BASE_URL = import.meta.env.VITE_JMREPORT_BASE_URL |
|
|
const src = ref(BASE_URL + '/jmreport/view/897700407827668992?token=' + getAccessToken()) |
|
|
const src = ref(BASE_URL + '/jmreport/view/897700407827668992?token=' + getAccessToken()) |
|
|
|
|
|
|
|
|
const genLabelId = ref(); |
|
|
const genLabelId = ref() |
|
|
// 生成标签 |
|
|
// 生成标签 |
|
|
const pointRef = ref() |
|
|
const pointRef = ref() |
|
|
const handlePoint = async (row) => { |
|
|
const handlePoint = async (row) => { |
|
|
|
|
|
|
|
|
pointRef.value.openPoint(row.id) |
|
|
pointRef.value.openPoint(row.id) |
|
|
} |
|
|
} |
|
|
// 标签打印 |
|
|
// 标签打印 |
|
@ -489,8 +559,7 @@ |
|
|
* tableForm方法 |
|
|
* tableForm方法 |
|
|
*/ |
|
|
*/ |
|
|
const tableFormKeys = {} |
|
|
const tableFormKeys = {} |
|
|
SupplierdeliverRequestDetail.allSchemas.tableFormColumns.forEach(item => { |
|
|
SupplierdeliverRequestDetail.allSchemas.tableFormColumns.forEach((item) => { |
|
|
|
|
|
|
|
|
tableFormKeys[item.field] = item.default ? item.default : '' |
|
|
tableFormKeys[item.field] = item.default ? item.default : '' |
|
|
}) |
|
|
}) |
|
|
const tableData = ref([]) |
|
|
const tableData = ref([]) |
|
@ -507,6 +576,12 @@ |
|
|
// 主子数据 提交 |
|
|
// 主子数据 提交 |
|
|
const submitForm = async (formType, data) => { |
|
|
const submitForm = async (formType, data) => { |
|
|
data.subList = tableData.value // 拼接子表数据参数 |
|
|
data.subList = tableData.value // 拼接子表数据参数 |
|
|
|
|
|
let isHave = data.subList.some((item) => item.produceDate > item.expireDate) |
|
|
|
|
|
if (isHave) { |
|
|
|
|
|
message.error('生产日期不可以大于过期日期') |
|
|
|
|
|
formRef.value.formLoading = false |
|
|
|
|
|
return |
|
|
|
|
|
} |
|
|
try { |
|
|
try { |
|
|
if (formType === 'create') { |
|
|
if (formType === 'create') { |
|
|
await SupplierdeliverRequestMainApi.createSupplierdeliverRequestMain(data) |
|
|
await SupplierdeliverRequestMainApi.createSupplierdeliverRequestMain(data) |
|
|