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.

1238 lines
38 KiB

1 year ago
<template>
<ContentWrap>
<!-- 搜索工作栏 -->
<Search
9 months ago
:schema="[
...SupplierdeliverRequestMain.allSchemas.searchSchema,
...SupplierdeliverRequestDetail.allSchemas.searchSchema
]"
1 year ago
@search="setSearchParams"
@reset="setSearchParams"
/>
</ContentWrap>
<!-- 列表头部 -->
<TableHead
:HeadButttondata="HeadButttondata"
@button-base-click="buttonBaseClick"
:routeName="routeName"
@updataTableColumns="updataTableColumns"
@searchFormClick="searchFormClick"
:allSchemas="SupplierdeliverRequestMain.allSchemas"
:detailAllSchemas="SupplierdeliverRequestDetail.allSchemas"
1 year ago
/>
<!-- 列表 -->
9 months ago
<ContentWrap>
<Table
v-clientTable
1 year ago
: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"
>
9 months ago
<template #asnNumber="{ row }">
<el-button type="primary" link @click="openDetail(row, '发货单号', row.asnNumber)">
<span>{{ row.asnNumber }}</span>
</el-button>
</template>
1 year ago
<template #number="{ row }">
<el-button type="primary" link @click="openDetail(row, '单据号', row.number)">
<span>{{ row.number }}</span>
</el-button>
</template>
9 months ago
<template #action="{ row, $index }">
<ButtonBase
:Butttondata="butttondata(row, $index)"
@button-base-click="buttonTableClick($event, row)"
/>
1 year ago
</template>
</Table>
</ContentWrap>
<!-- 表单弹窗添加/修改 -->
9 months ago
<supplierdeliverBasicForm
ref="supplierdeliverFormRef"
@getList="getList"
></supplierdeliverBasicForm>
<!-- <BasicForm
1 year ago
ref="formRef"
:isOpenSearchTable="true"
1 year ago
@success="getList"
:rules="SupplierdeliverRequestMainRules"
:formAllSchemas="SupplierdeliverRequestMain.allSchemas"
:tableAllSchemas="SupplierdeliverRequestDetail.allSchemas"
:tableFormRules="SupplierdeliverRequestDetailRules"
:tableData="tableData"
:apiUpdate="SupplierdeliverRequestMainApi.updateSupplierdeliverRequestMain"
:apiCreate="SupplierdeliverRequestMainApi.createSupplierdeliverRequestMain"
:isBusiness="true"
@handleAddTable="handleAddTable"
@handleDeleteTable="handleDeleteTable"
@searchTableSuccess="searchTableSuccess"
@submitForm="submitForm"
@formFormDateChange="formFormDateChange"
@onEnter="onEnter"
> -->
<!-- <template v-slot="{row}">
<el-date-picker v-bind:modelValue="row['expireTime']?addDay(row['produceDate'],row['expireTime']).format('YYYY-MM-DD'):'2099-12-31'"
:clearable="true"
style="width: 100%"
:disabled="true"
placeholder="选择日期"/>
</template>
</BasicForm> -->
1 year ago
<!-- 详情 -->
<Detail
ref="detailRef"
9 months ago
:annexTable="[
{
label: '质检明细',
prop: 'uploadFile',
tableName: 'SupplierdeliverInspectionDetail',
hasSubDetail: true, // 附件中是否展示明细表
showPreview: true, // 附件中是否展示预览按钮
fileType: ['pdf', 'jpg', 'png', 'jpeg'],
align: 'left',
//明细表数据
subDetailTableData: {
queryParams: [
{
queryField: 'masterId',
rowField: 'masterId'
}
], // 查询参数
getSubList: SupplierdeliverInspectionDetailApi.getSupplierdeliverInspectionDetailPage, //请求接口
tableColumns: SupplierdeliverInspectionDetail.allSchemas.tableColumns,
tableList: [], //表格数据
total: 1,
pageSize: 10,
currentPage: 1
}
}
9 months ago
]"
1 year ago
:isBasic="false"
:allSchemas="SupplierdeliverRequestMain.allSchemas"
:detailAllSchemas="SupplierdeliverRequestDetail.allSchemas"
:detailAllSchemasRules="SupplierdeliverRequestDetailRules"
:apiCreate="SupplierdeliverRequestDetailApi.createSupplierdeliverRequestDetail"
:apiUpdate="SupplierdeliverRequestDetailApi.updateSupplierdeliverRequestDetail"
:apiPage="SupplierdeliverRequestDetailApi.getSupplierdeliverRequestDetailPage"
:apiDelete="SupplierdeliverRequestDetailApi.deleteSupplierdeliverRequestDetail"
@searchTableSuccessDetail="searchTableSuccessDetail"
/>
<!-- 导入 -->
<ImportForm
ref="importFormRef"
url="/wms/supplierdeliver-request-main/import"
:importTemplateData="importTemplateData"
@success="importSuccess"
:updateIsDisable="true"
:coverIsDisable="true"
:mode="2"
/>
9 months ago
<!-- 创建标签 -->
<BasicForm
1 year ago
ref="formLabelRef"
@success="getList"
:tableAllSchemas="SupplierdeliverRequestDetailLabel.allSchemas"
:tableFormRules="SupplierdeliverRequestDetailRules"
9 months ago
:tableData="detatableData1"
1 year ago
:isBusiness="true"
:isShowButton="false"
@searchTableSuccess="searchTableSuccessLabel"
:isShowReduceButton="false"
9 months ago
@clearInput="clearInput"
:footButttondata="footButttondata"
@footButtonClick="footButtonClick"
9 months ago
@formSelectChange="formSelectChangeLabel"
1 year ago
/>
<!-- 上传质量报告 -->
<BasicForm
ref="ploadQualityReportRef"
@success="getList"
:formAllSchemas="SupplierdeliverInspectionDetail.allSchemas"
:tableAllSchemas="SupplierdeliverInspectionDetail.allSchemas"
:tableFormRules="SupplierdeliverInspectionDetailRules"
:tableData="uploadQualityReportTableData"
@handleAddTable="handleAddQualityReport"
@handleDeleteTable="handleDeleteQualityReport"
@submitForm="submitFormUploadQualityReport"
:isShowReduceButton="false"
:isShowButton="false"
>
<template #SupplierdeliverInspectionDetail>
<span>1111</span>
</template>
</BasicForm>
<!-- 标签打印 -->
9 months ago
<SearchTable width="905px" ref="searchTableRef" @searchTableSuccess="searchTableSuccess1">
11 months ago
<!-- <template #actions>
<el-button type="primary" @click="printAllClick">打印全部</el-button>
</template> -->
</SearchTable>
9 months ago
<labelForm
ref="labelFormRef"
:tableAllSchemas="SupplierdeliverRequestDetailLabel.allSchemas"
@submitForm="submitFormLabel"
/>
1 year ago
</template>
<script setup lang="ts">
import download from '@/utils/download'
import { CACHE_KEY, useCache } from '@/hooks/web/useCache'
import { getAccessToken } from '@/utils/auth'
import { formatDate } from '@/utils/formatTime'
1 year ago
import {
SupplierdeliverRequestMain,
SupplierdeliverRequestDetail,
SupplierdeliverRequestDetailRules,
SupplierdeliverRequestDetailLabel,
9 months ago
SupplierdeliverRequestPackage
1 year ago
} from './supplierdeliverRequestMain.data'
9 months ago
import {
SupplierdeliverInspectionDetail,
SupplierdeliverInspectionDetailRules
} from '../supplierdeliverInspectionDetail/supplierdeliverInspectionDetail.data'
1 year ago
import * as SupplierdeliverRequestMainApi from '@/api/wms/supplierdeliverRequestMain'
import * as SupplierdeliverRequestDetailApi from '@/api/wms/supplierdeliverRequestDetail'
import * as defaultButtons from '@/utils/disposition/defaultButtons'
import * as PurchasePlanDetailApi from '@/api/wms/purchasePlanDetail'
import * as ItembasicApi from '@/api/wms/itembasic'
import * as SupplierdeliverInspectionDetailApi from '@/api/wms/supplierdeliverInspectionDetail'
import * as PackageApi from '@/api/wms/package'
import { PurchasePlanDetail } from '../purchasePlanMain/purchasePlanMain.data'
import * as SupplierApi from '@/api/wms/supplier'
import { Supplier } from '@/views/wms/basicDataManage/supplierManage/supplier/supplier.data'
import supplierdeliverBasicForm from './supplierdeliverBasicForm.vue'
import labelForm from './labelForm.vue'
import { getJmreportBaseUrl } from '@/utils/systemParam'
9 months ago
import { log } from 'console'
1 year ago
// 供应商发货申请
defineOptions({ name: 'SupplierdeliverRequestMain' })
const message = useMessage() // 消息弹窗
const { t } = useI18n() // 国际化
9 months ago
const genLabelId = ref()
1 year ago
const route = useRoute() // 路由信息
const routeName = ref()
routeName.value = route.name
9 months ago
const tableColumns = ref([
...SupplierdeliverRequestMain.allSchemas.tableColumns,
...SupplierdeliverRequestDetail.allSchemas.tableMainColumns
])
1 year ago
// 字段设置 更新主列表字段
const updataTableColumns = (val) => {
tableColumns.value = val
}
const planArriveTimeStr = ref()
// 查询页面返回
const searchTableSuccess = (formField, searchField, val, formRef, type, row) => {
nextTick(() => {
9 months ago
console.log('type:', type)
console.log('formField:', formField)
console.log(formField, searchField, val, formRef, type, row)
1 year ago
if (type == 'tableForm') {
// 明细查询页赋值
// row[formField] = val[0][searchField]
// if (formField == 'poNumber') {
// row['poNumber'] = val[0]['poNumber']
// row['itemCode'] = val[0]['itemCode']
// row['poLine'] = val[0]['poLine']
// row['orderQty'] = val[0]['orderQty']
// row['uom'] = val[0]['uom']
// }
9 months ago
//添加费用明细--点击确定
const itemCodes = []
9 months ago
val.forEach((item) => {
if (tableData.value.find((item1) => item1['id'] == item['id'])) return
const newRow = { ...row }
newRow[formField] = item[searchField]
newRow['poNumber'] = item['poNumber']
newRow['itemCode'] = item['itemCode']
newRow['poLine'] = item['poLine']
newRow['orderQty'] = item['orderQty']
newRow['uom'] = item['uom']
itemCodes.push(item['itemCode'])
tableData.value.push(newRow)
})
//有效期
ItembasicApi.getItembasicPage({
9 months ago
code: itemCodes.join(',')
}).then((res) => {
res.list.forEach((item, index) => {
const findItem = tableData.value.find((item1) => item1['itemCode'] == item['code'])
findItem['expireTime'] = findItem['expireTime']
})
})
1 year ago
} else {
const setV = {}
setV[formField] = val[0][searchField]
9 months ago
if (formField == 'ppNumber') {
//新增--选择完要货计划,自动展示明细
9 months ago
getSearchTableData(val[0]['number'], formField, searchField)
1 year ago
// 设置计划到货时间
9 months ago
let beginTime = val[0]['endTime']
let deliveryDate = formatDate(val[0]['deliveryDate'], 'YYYY-MM-DD')
planArriveTimeStr.value = deliveryDate + ' ' + beginTime + ':00'
setV['planArriveTime'] = new Date(planArriveTimeStr.value).valueOf()
1 year ago
// 清空子表数据
tableData.value = []
}
9 months ago
if (formField == 'supplierCode') {
1 year ago
setV['contactName'] = val[0]['contacts']
setV['contactPhone'] = val[0]['phone']
setV['contactEmail'] = val[0]['email']
}
formRef.setValues(setV)
}
})
}
//供应商代码 回车搜索
9 months ago
const onEnter = async (field, value) => {
console.log(field, value)
formRef.value.opensearchTable(
'supplierCode',
'code',
'供应商信息',
Supplier.allSchemas,
SupplierApi.getSupplierPage,
[
{
key: 'code',
value: value
}
]
)
}
9 months ago
const getSearchTableData = async (number, formField, searchField) => {
const { tableObject, tableMethods } = useTable({
defaultParams: { number },
getListApi: PurchasePlanDetailApi.getPurchasePlanDetailPage // 分页接口
})
// 获得表格的各种操作
9 months ago
const { getList: getList1 } = tableMethods
await getList1()
const tableColumns = PurchasePlanDetail.allSchemas.tableFormColumns
tableColumns.forEach((item) => {
item.width = item.table?.width || 150
})
tableData.value = []
const itemCodes = []
9 months ago
tableObject.tableList.forEach((row) => {
const newRow = JSON.parse(JSON.stringify({ ...tableFormKeys, ...row }))
newRow[formField] = row[searchField]
newRow['poNumber'] = row['poNumber']
newRow['itemCode'] = row['itemCode']
newRow['poLine'] = row['poLine']
newRow['orderQty'] = row['orderQty']
newRow['uom'] = row['uom']
tableData.value.push(newRow)
itemCodes.push(row['itemCode'])
})
//有效期
ItembasicApi.getItembasicPage({
9 months ago
code: itemCodes.join(',')
}).then((res) => {
res.list.forEach((item, index) => {
const findItem = tableData.value.find((item1) => item1['itemCode'] == item['code'])
findItem['expireTime'] = findItem['expireTime']
})
})
}
1 year ago
// 查询页面返回——详情
const searchTableSuccessDetail = (formField, searchField, val, formRef) => {
nextTick(() => {
const setV = {}
setV[formField] = val[0][searchField]
if (formField == 'poNumber') {
setV['poNumber'] = val[0]['poNumber']
setV['itemCode'] = val[0]['itemCode']
setV['poLine'] = val[0]['poLine']
setV['uom'] = val[0]['uom']
setV['orderQty'] = val[0]['orderQty']
}
formRef.setValues(setV)
})
}
// 查询页面返回
const searchTableSuccessLabel = (formField, searchField, val, formRef, type, row) => {
nextTick(() => {
9 months ago
console.log('formField:', formField)
console.log('val:', val)
1 year ago
if (type == 'tableForm') {
// 明细查询页赋值
row[formField] = val[0][searchField]
if (formField == 'packUnit') {
row['packUnit'] = val[0]['packUnit']
10 months ago
row['packName'] = val[0]['packName']
1 year ago
row['packQty'] = val[0]['packQty']
}
if (formField == 'secondPackUnit') {
row['secondPackUnit'] = val[0]['packUnit']
10 months ago
row['secondPackName'] = val[0]['packName']
1 year ago
row['secondPackQty'] = val[0]['packQty']
}
9 months ago
}
1 year ago
})
}
const { tableObject, tableMethods } = useTable({
getListApi: SupplierdeliverRequestDetailApi.getSupplierdeliverRequestDetailPage // 分页接口
1 year ago
})
// 获得表格的各种操作
const { getList, setSearchParams } = tableMethods
// 列表头部按钮
const HeadButttondata = [
defaultButtons.defaultAddBtn({ hasPermi: 'wms:supplierdeliver-request-main:create' }), // 新增
defaultButtons.defaultImportBtn({ hasPermi: 'wms:supplierdeliver-request-main:import' }), // 导入
defaultButtons.defaultExportBtn({ hasPermi: 'wms:supplierdeliver-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') {
// 刷新
9 months ago
if (tableObject.params.filters && tableObject.params.filters.length > 0) {
1 year ago
searchFormClick({
filters: tableObject.params.filters
})
} else {
getList()
}
} else if (val == 'filtrate') {
// 筛选
}
}
// 根据状态返回该按钮是否显示
const isShowMainButton = (row, val) => {
if (val.indexOf(row.status) > -1) {
return false
} else {
return true
}
}
// 根据状态返回该按钮是否显示
const isShowMainButtonLabel = (row, val) => {
if (val.indexOf(row.status) > -1) {
9 months ago
if (row.labelStatus == '2') {
1 year ago
return true
9 months ago
} else {
1 year ago
return false
}
} else {
return true
}
}
10 months ago
// 根据状态返回该按钮是否显示
const isReGenLabelShowMainButtonLabel = (row, val) => {
if (val.indexOf(row.status) > -1) {
9 months ago
if (row.labelStatus == '1') {
10 months ago
return true
9 months ago
} else {
10 months ago
return false
}
} else {
return true
}
}
1 year ago
// 列表-操作按钮
9 months ago
const butttondata = (row, $index) => {
const findIndex = row['masterId']
? tableObject.tableList.findIndex((item) => item['masterId'] == row['masterId'])
: -1
if (findIndex > -1 && findIndex < $index) {
return []
}
1 year ago
return [
9 months ago
defaultButtons.mainListPurchasePlanOpeBtn({
hide: isShowMainButton(row, ['5']),
hasPermi: 'wms:supplierdeliver-request-main:open'
}), // 打开
defaultButtons.mainListPlanUploadQualityReportBtn({
hide: isShowMainButton(row, ['1', '2', '3']),
hasPermi: 'wms:supplierdeliver-request-main:uploadCheck'
}), // 上传质量报告
defaultButtons.mainListPlanSubBtn({
hide: isShowMainButton(row, ['1']),
hasPermi: 'wms:supplierdeliver-request-main:sub'
}), // 提交审批
defaultButtons.mainListPlanAppBtn({
hide: isShowMainButton(row, ['2']),
hasPermi: 'wms:supplierdeliver-request-main:app'
}), // 审批通过
defaultButtons.mainListPlanTurBtn({
hide: isShowMainButton(row, ['2']),
hasPermi: 'wms:supplierdeliver-request-main:rej'
}), // 驳回按钮
1 year ago
defaultButtons.mainListEditBtn({
hide: isShowMainButton(row, ['1']),
hasPermi: 'wms:supplierdeliver-request-main:update'
}), // 编辑
// defaultButtons.mainListDeleteBtn({ hasPermi: 'wms:supplierdeliver-request-main:delete' }), // 删除
{
11 months ago
label: t('ts.生成标签'),
1 year ago
name: 'ssbq',
hide: isShowMainButtonLabel(row, ['3']),
type: 'primary',
icon: '',
color: '',
12 months ago
hasPermi: 'wms:supplierdeliver-request-main:genLabels',
1 year ago
link: true // 文本展现按钮
},
10 months ago
{
label: t('ts.重新生成标签'),
name: 'ressbq',
hide: isReGenLabelShowMainButtonLabel(row, ['3']),
type: 'primary',
icon: '',
color: '',
hasPermi: 'wms:supplierdeliver-request-main:genLabels',
link: true // 文本展现按钮
},
9 months ago
defaultButtons.mainListPointBtn({
hide: isShowMainButton(row, ['3', '8']),
hasPermi: 'wms:supplierdeliver-request-main:printLabel'
}), // 标签打印
1 year ago
//defaultButtons.mainListDocumentPrintBtn({ hide: isShowMainButton(row, ['3','8']) }), // 单据打印
// 生成记录
{
11 months ago
label: t('ts.发货'),
1 year ago
name: 'genRecords',
hide: isShowMainButton(row, ['3']),
type: 'primary',
icon: '',
color: '',
12 months ago
hasPermi: 'wms:supplierdeliver-request-main:genRecords',
1 year ago
link: true // 文本展现按钮
},
9 months ago
defaultButtons.mainListPurchasePlanCloBtn({
hide: isShowMainButton(row, ['1', '2', '4', '3']),
hasPermi: 'wms:supplierdeliver-request-main:close'
}) // 关闭
1 year ago
]
}
9 months ago
const detatableData1 = ref([])
1 year ago
// 列表-操作按钮事件
const buttonTableClick = async (val, row) => {
if (val == 'mainPurPlanOpe') {
// 打开
handleOpe(row.masterId)
1 year ago
} else if (val == 'mainPurPlanClo') {
// 关闭
handleClo(row.masterId)
} else if (val == 'mainPlanUploadQualityReport') {
// 上传质量报告
handleUploadQualityReport(row)
9 months ago
} else if (val == 'mainPlanSub') {
1 year ago
// 提交审批
handleSub(row.masterId)
1 year ago
} else if (val == 'mainPlanApp') {
// 审批通过
handleApp(row.masterId)
1 year ago
} else if (val == 'mainPlanTur') {
// 驳回按钮
handleTur(row.masterId)
1 year ago
} else if (val == 'genRecords') {
// 处理
genRecords(row.masterId)
1 year ago
} else if (val == 'edit') {
// 编辑
openForm('update', row)
} else if (val == 'delete') {
// 删除
handleDelete(row.masterId)
1 year ago
} else if (val == 'ssbq') {
// 生成标签
detatableData.params = {
9 months ago
masterId: row.masterId
}
genLabelId.value = row.masterId
9 months ago
// await getDetailList()
const params1 = {
masterId: row.masterId,
pageSize: '500',
pageNo: '1',
sort: '',
by: 'ASC'
}
await SupplierdeliverRequestDetailApi.getGenerateLabelList(params1).then((res) => {
detatableData1.value = res
detatableData1.value.forEach((item) => {
console.log(item.boxPackaging)
if (item.boxPackaging?.length > 0) {
item.packUnitInitOptions = item.boxPackaging.map((cur) => {
return { label: cur.packName, value: cur.packUnit }
})
}
})
})
formLabelRef.value.open('create', row, null, 'createLabel') //创建标签页面 createLabel 标题
} else if (val == 'ressbq') {
console.log('重新生成标签')
10 months ago
ElMessageBox.confirm(t('ts.重新生成标签会删除上次生成的标签,是否确认继续?'), '提示', {
confirmButtonText: t('ts.确 认'),
cancelButtonText: t('ts.取 消')
9 months ago
})
.then(() => {
SupplierdeliverRequestMainApi.deleteOldLabels(row.masterId).then(async (res) => {
if (res) {
10 months ago
// 生成标签
detatableData.params = {
9 months ago
masterId: row.masterId
10 months ago
}
genLabelId.value = row.masterId
// await getDetailList()
const params1 = {
masterId: row.masterId,
pageSize: '500',
pageNo: '1',
sort: '',
by: 'ASC'
}
await SupplierdeliverRequestDetailApi.getGenerateLabelList(params1).then((res) => {
detatableData1.value = res
detatableData1.value.forEach((item) => {
console.log(item.boxPackaging)
if (item.boxPackaging?.length > 0) {
item.packUnitInitOptions = item.boxPackaging.map((cur) => {
return { label: cur.packName, value: cur.packUnit }
})
}
})
})
9 months ago
formLabelRef.value.open('create', row, null, 'createLabel') //创建标签页面 createLabel 标题
10 months ago
}
9 months ago
})
10 months ago
})
9 months ago
.catch(() => {
10 months ago
console.info('操作取消')
9 months ago
})
1 year ago
} else if (val == 'point') {
// 标签打印
labelPrint(row)
} else if (val == 'documentPrint') {
// 单据打印
handleDocumentPrint(row.masterId)
1 year ago
}
}
const footButttondata = ref([
defaultButtons.formNextStepBtn(null), // BOM下一步
defaultButtons.formCloseBtn(null) // BOM关闭
])
// 下一步
const labelFormRef = ref()
9 months ago
const footButtonClick = async (val) => {
if (val == 'nextStep') {
9 months ago
const validateForm = await formLabelRef.value.tableFormRef.validateForm()
if (!validateForm) {
9 months ago
return
}
const data = JSON.parse(JSON.stringify(detatableData1.value))
9 months ago
labelFormRef.value.openLabel(data)
9 months ago
} else if (val == 'close') {
formLabelRef.value.dialogVisible = false
}
}
9 months ago
// 选择箱规格 拖规格
let tuoList = []
const formSelectChangeLabel = (field, val, row) => {
if (field == 'packUnit') {
let obj = row.boxPackaging.find((item) => item.packUnit == val)
9 months ago
if (obj) {
row.packQty = obj.packQty
} else {
row.packQty = ''
}
row.secondPackUnit = ''
row.secondPackQty = ''
9 months ago
// 获取托规格
9 months ago
const params1 = {
9 months ago
itemCode: row.itemCode,
packUnit: row.packUnit
9 months ago
}
9 months ago
SupplierdeliverRequestDetailApi.getGenerateLabelParentList(params1).then((res) => {
tuoList = res
row.secondPackUnitInitOptions = res.map((cur) => {
return { label: cur.packName, value: cur.packUnit }
})
9 months ago
})
}
9 months ago
// 设置托
if (field == 'secondPackUnit') {
let obj = tuoList.find((item) => item.packUnit == val)
9 months ago
if (obj) {
row.secondPackQty = obj.packQty
} else {
row.secondPackQty = ''
}
9 months ago
}
9 months ago
}
9 months ago
// 获取部门 用于详情 部门回显
1 year ago
const { wsCache } = useCache()
/** 详情操作 */
const detailRef = ref()
const openDetail = (row: any, titleName: any, titleValue: any) => {
9 months ago
const departmentCode = wsCache
.get(CACHE_KEY.DEPT)
.find((account) => account.id == row.departmentCode)?.name
1 year ago
if (departmentCode) row.departmentCode = JSON.parse(JSON.stringify(departmentCode))
9 months ago
detailRef.value.openDetail(row, titleName, titleValue, 'requestSupplierdeliverMain')
1 year ago
}
//添加/修改操作
const formRef = ref()
const supplierdeliverFormRef = ref()
1 year ago
const openForm = async (type: string, row?: number) => {
9 months ago
supplierdeliverFormRef.value.openForm(type, row, defaultSupplierCode.value)
// if(type == "update"){
// SupplierdeliverRequestMain.allSchemas.formSchema.forEach((item) => {
// if(item.field == 'supplierCode'){
// item.componentProps.isSearchList = false
// item.componentProps.disabled = true
// }
// if(item.field == 'ppNumber'){
// item.componentProps.isSearchList = false
// item.componentProps.disabled = true
// }
// if(item.field == 'asnNumber'){
// item.componentProps.disabled = true
// }
// if(item.field == 'planArriveTime'){
// item.componentProps.disabled = true
// }
// })
// }else {
// SupplierdeliverRequestMain.allSchemas.formSchema.forEach((item) => {
// if(item.field == 'supplierCode'){
// item.componentProps.isSearchList = true
// }
// if(item.field == 'ppNumber'){
// item.componentProps.isSearchList = true
// }
// if(item.field == 'asnNumber'){
// item.componentProps.disabled = false
// }
// if(item.field == 'planArriveTime'){
// item.componentProps.disabled = false
// }
// })
// }
// tableData.value = [] // 重置明细数据
// formRef.value.open(type, row)
1 year ago
}
/** 删除按钮操作 */
const handleDelete = async (id: number) => {
try {
// 删除的二次确认
await message.delConfirm()
tableObject.loading = true
// 发起删除
await SupplierdeliverRequestMainApi.deleteSupplierdeliverRequestMain(id)
message.success(t('common.delSuccess'))
// 刷新列表
await getList()
9 months ago
} catch {
} finally {
1 year ago
tableObject.loading = false
}
}
/** 关闭按钮操作 */
const handleClo = async (id: number) => {
try {
// 关闭的二次确认
11 months ago
await message.confirm(t('ts.是否关闭所选中数据?'))
1 year ago
tableObject.loading = true
// 发起关闭
await SupplierdeliverRequestMainApi.cloSupplierdeliverRequestMain(id)
11 months ago
message.success(t('ts.关闭成功!'))
1 year ago
// 刷新列表
await getList()
9 months ago
} catch {
} finally {
1 year ago
tableObject.loading = false
}
}
/** 打开按钮操作 */
const handleOpe = async (id: number) => {
try {
// 打开的二次确认
11 months ago
await message.confirm(t('ts.是否打开所选中数据?'))
1 year ago
tableObject.loading = true
// 发起打开
await SupplierdeliverRequestMainApi.opeSupplierdeliverRequestMain(id)
11 months ago
message.success(t('ts.打开成功!'))
1 year ago
// 刷新列表
await getList()
9 months ago
} catch {
} finally {
1 year ago
tableObject.loading = false
}
}
const ploadQualityReportRef = ref()
const uploadQualityReportTableData = ref([])
9 months ago
const handleAddQualityReport = () => {
const tableFormKeys = {}
SupplierdeliverInspectionDetail.allSchemas.tableFormColumns.forEach((item) => {
tableFormKeys[item.field] = item.default ? item.default : ''
})
uploadQualityReportTableData.value.push(tableFormKeys)
console.log('handleAddQualityReport')
}
9 months ago
const handleDeleteQualityReport = (row, index) => {
uploadQualityReportTableData.value.splice(index, 1)
console.log('handleDeleteQualityReport', row)
}
/** 上传质量报告 */
9 months ago
const handleUploadQualityReport = async (row) => {
console.log('SupplierdeliverInspectionDetail', SupplierdeliverInspectionDetail.allSchemas)
const uploadFile = SupplierdeliverInspectionDetail.allSchemas.formSchema.find(
(item) => item.field == 'uploadFile'
)
if (uploadFile) {
uploadFile['componentProps']['upData']['tableId'] = row.masterId
}
9 months ago
ploadQualityReportRef.value.open(
'create',
null,
{ masterId: row.masterId },
t('ts.上传质检报告'),
t('ts.上传质检报告')
) //创建标签页面 createLabel 标题
const tableFormKeys = {}
SupplierdeliverInspectionDetail.allSchemas.tableFormColumns.forEach((item) => {
tableFormKeys[item.field] = item.default ? item.default : ''
})
9 months ago
await SupplierdeliverInspectionDetailApi.getSupplierdeliverDetailInfo(row.masterId).then(
(res) => {
if (res) {
// console.log("返回结果:",res)
uploadQualityReportTableData.value = res
}
}
9 months ago
)
//uploadQualityReportTableData.value = [tableFormKeys]
}
const submitFormUploadQualityReport = async (formType, data) => {
delete data.number
data.subList = uploadQualityReportTableData.value // 拼接子表数据参数
if (formType === 'create') {
await SupplierdeliverInspectionDetailApi.createSupplierdeliverInspectionDetail(data)
message.success(t('common.createSuccess'))
} else {
await SupplierdeliverInspectionDetailApi.updateSupplierdeliverInspectionDetail(data)
message.success(t('common.updateSuccess'))
}
ploadQualityReportRef.value.dialogVisible = false
getList()
}
1 year ago
/** 提交审批按钮操作 */
const handleSub = async (id: number) => {
try {
// 提交审批的二次确认
11 months ago
await message.confirm(t('ts.是否提交审批所选中数据?'))
1 year ago
tableObject.loading = true
// 发起提交审批
await SupplierdeliverRequestMainApi.subSupplierdeliverRequestMain(id)
11 months ago
message.success(t('ts.提交审批成功!'))
1 year ago
// 刷新列表
await getList()
9 months ago
} catch {
} finally {
1 year ago
tableObject.loading = false
}
}
/** 审批通过按钮操作 */
const handleApp = async (id: number) => {
try {
// 审批通过的二次确认
11 months ago
await message.confirm(t('ts.是否审批通过所选中数据?'))
1 year ago
tableObject.loading = true
// 发起审批通过
await SupplierdeliverRequestMainApi.appSupplierdeliverRequestMain(id)
11 months ago
message.success(t('ts.审批通过成功!'))
1 year ago
// 刷新列表
await getList()
9 months ago
} catch {
} finally {
1 year ago
tableObject.loading = false
}
}
/** 驳回按钮操作 */
const handleTur = async (id: number) => {
try {
// 驳回的二次确认
11 months ago
await message.confirm(t('ts.是否驳回所选中数据?'))
1 year ago
tableObject.loading = true
// 发起驳回
await SupplierdeliverRequestMainApi.rejSupplierdeliverRequestMain(id)
11 months ago
message.success(t('ts.驳回成功!'))
1 year ago
// 刷新列表
await getList()
9 months ago
} catch {
} finally {
1 year ago
tableObject.loading = false
}
}
/** 处理按钮操作 */
const genRecords = async (id: number) => {
let getLoading = null
9 months ago
await SupplierdeliverRequestMainApi.selfCheckReport(id)
.then(async (res) => {
if (!res) {
message.warning(t('ts.请先上传自检报告!'))
return
} else {
1 year ago
// 处理的二次确认
11 months ago
await message.confirm(t('ts.是否处理所选中数据?'))
getLoading = ElLoading.service({
lock: true,
text: 'loading...',
background: 'rgba(0, 0, 0, 0.7)'
})
1 year ago
// 发起处理
9 months ago
SupplierdeliverRequestMainApi.genRecordsSupplierdeliverRequestMain(id)
.then((res) => {
message.success(t('ts.处理成功!'))
console.log('resresresresres', res)
// 刷新列表
getList()
console.log('刷新列表')
getLoading?.close()
// 单据打印
handleDocumentPrint(res)
})
.catch((err) => {
console.log('发起处理', err)
getLoading?.close()
})
1 year ago
}
9 months ago
})
.catch((err) => {
console.log('自检报告校验异常', err)
getLoading?.close()
1 year ago
})
}
/** 导出按钮操作 */
const exportLoading = ref(false) // 导出的加载中
const handleExport = async () => {
try {
// 导出的二次确认
await message.exportConfirm()
// 发起导出
exportLoading.value = true
const data = await SupplierdeliverRequestMainApi.exportSupplierdeliverRequestMain(
tableObject.params
)
11 months ago
download.excel(data, `${'ts.供应商发货申请主'}.xlsx`)
1 year ago
} catch {
} finally {
exportLoading.value = false
}
}
// 生成标签
const isCreateLabel = ref(false)
const formLabelRef = ref()
9 months ago
const { tableObject: detatableData, tableMethods: detatableMethods } = useTable({
getListApi: SupplierdeliverRequestDetailApi.getSupplierdeliverRequestDetailPage
1 year ago
})
9 months ago
detatableData.pageSize = 500
9 months ago
const { getList: getDetailList } = detatableMethods
1 year ago
// 生成标签按钮操作
9 months ago
const submitFormLabel = async (data) => {
1 year ago
try {
9 months ago
const data1 = {
subList: JSON.parse(JSON.stringify(data))
10 months ago
}
9 months ago
data1.subList.forEach((row) => {
if (row.secondPackUnit && row.secondPackQty) {
9 months ago
} else {
9 months ago
row.children = []
let obj = {}
row.packageList.forEach((item) => {
obj = {
xPoNumber: item.xPoNumber,
qtyTwo: item.qtyOne
}
row.children.push(obj)
})
row.packageList = []
row.packageList.push({
isTuo: 0,
children: row.children
})
10 months ago
}
})
console.log(data1)
9 months ago
await message.confirm(t('ts.是否为此数据生成标签?'))
await SupplierdeliverRequestMainApi.genLabel(data1)
isCreateLabel.value = true
message.success(t('ts.创建标签成功'))
getList()
1 year ago
} finally {
formLabelRef.value.formLoading = false
formLabelRef.value.dialogVisible = false
labelFormRef.value.formLoading = false
labelFormRef.value.dialogVisible = false
1 year ago
}
}
9 months ago
const clearInput = async (field, row, index) => {
row[field] = ''
row['secondPackQty'] = ''
SupplierdeliverRequestDetailRules.secondPackQty[0].required = false
}
1 year ago
const BASE_URL = getJmreportBaseUrl()
1 year ago
const src = ref(BASE_URL + '/jmreport/view/922729953438072832?token=' + getAccessToken())
11 months ago
getListApi: PurchasePlanDetailApi.getPurchasePlanDetailPage // 分页接口
1 year ago
// 标签打印
const searchTableRef = ref()
1 year ago
const labelPrint = async (row) => {
tableObject.loading = true
9 months ago
const defaultParams = { moduleName: 'supplier', recordNumber: row.number }
const { tableObject: tableObjectPrint, tableMethods } = useTable({
11 months ago
defaultParams,
9 months ago
getListApi: PackageApi.getLabelDetailPage // 分页接口
11 months ago
})
11 months ago
// 获得表格的各种操作
9 months ago
const { getList: getListPrint } = tableMethods
11 months ago
getListPrint()
tableObject.loading = false
const tableColumns = SupplierdeliverRequestPackage.allSchemas.tableFormColumns
tableColumns.forEach((item) => {
item.width = item.table?.width
})
9 months ago
searchTableRef.value.openData(t('ts.标签信息'), tableObjectPrint, { tableColumns }, true)
}
11 months ago
11 months ago
// 打印全部
9 months ago
const printAllClick = () => {}
11 months ago
12 months ago
// 批量打印--供应商发货申请
const searchTableSuccess1 = async (formField, searchField, val, formRef, type, row) => {
9 months ago
console.log('批量打印', val)
12 months ago
// let rows:any = []
// val.forEach(item=>{
// rows = [...rows,...item.selectionRows.map(item1=>item1.number)]
// })
9 months ago
if (val.length == 0) {
11 months ago
message.warning(t('ts.请先选择要打印的数据'))
return
}
12 months ago
// window.open(src.value + '&asn_number=' + val.map(item1=>item1.number).join(','))
9 months ago
await PackageApi.batchPrintingLable(val.map((item1) => item1.number).join(','))
.then((res) => {
console.log(res)
window.open(src.value + '&asn_number=' + res)
9 months ago
})
.catch((err) => {
console.log(err)
message.error(t('ts.创建标签失败'))
})
1 year ago
}
const print = async () => {
window.open(src.value + '&number=' + detatableData.tableList[0].number)
}
// 单据打印
// const documentSrc = ref(BASE_URL + '/jmreport/view/884680688168280064?token=' + getAccessToken())
const documentSrc = ref(BASE_URL + '/jmreport/view/932556833517789184?token=' + getAccessToken())
const handleDocumentPrint = async (id) => {
window.open(documentSrc.value + '&id=' + id)
}
/**
* tableForm方法
*/
const tableFormKeys = {}
SupplierdeliverRequestDetail.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.findIndex(item)
tableData.value.splice(itemIndex, 1)
1 year ago
}
// 主子数据 提交
const submitForm = async (formType, submitData) => {
9 months ago
let data = { ...submitData }
if (data.masterId) {
data.id = data.masterId
}
1 year ago
data.subList = tableData.value // 拼接子表数据参数
let isHave = data.subList.some((item) => {
9 months ago
console.log('CCCCC', item.expireDate)
if (item.expireDate != null) {
1 year ago
item.produceDate > item.expireDate
}
})
if (isHave) {
11 months ago
message.error(t('ts.生产日期不可以大于过期日期'))
1 year ago
formRef.value.formLoading = false
return
}
try {
if (formType === 'create') {
9 months ago
let planArriveStr = formatDate(data.planArriveTime)
if (planArriveStr > planArriveTimeStr.value) {
let confirmFlag = false
await message
.confirm(`${t('ts.计划到货时间大于')}${planArriveTimeStr.value}${t('ts.是否继续?')}`)
.then(() => {
console.log('选择了OK')
//选择OK
})
.catch(() => {
//选择取消
console.log('选择了cancel')
confirmFlag = true
formRef.value.formLoading = false
return
})
if (confirmFlag) {
return
1 year ago
}
}
9 months ago
if (tableData.value.length <= 0) {
11 months ago
message.warning(t('ts.子表明细不能为空!'))
1 year ago
formRef.value.formLoading = false
9 months ago
return
1 year ago
}
await SupplierdeliverRequestMainApi.createSupplierdeliverRequestMain(data)
message.success(t('common.createSuccess'))
} else {
await SupplierdeliverRequestMainApi.updateSupplierdeliverRequestMain(data)
message.success(t('common.updateSuccess'))
}
formRef.value.dialogVisible = false
// 刷新当前列表
getList()
} finally {
formRef.value.formLoading = false
}
}
/** 导入 */
const importFormRef = ref()
const handleImport = () => {
importFormRef.value.open()
}
// 导入附件弹窗所需的参数
const importTemplateData = reactive({
templateUrl: '',
11 months ago
templateTitle: `${t('ts.供应商发货申请主导入模版')}.xlsx`
1 year ago
})
// 导入成功之后
const importSuccess = () => {
getList()
}
// 筛选提交
const searchFormClick = (searchData) => {
tableObject.params = {
isSearch: true,
filters: searchData.filters
}
getList() // 刷新当前列表
}
9 months ago
const formFormDateChange = (field, val, row, index) => {
if (field == 'produceDate') {
let produceDateStr = formatDate(val, 'YYYYMMDD')
1 year ago
row.batch = produceDateStr
row.supplierBatch = produceDateStr
1 year ago
}
}
9 months ago
const defaultSupplierCode = ref('')
9 months ago
const getDefaultSupplier = async () => {
let supplier = await SupplierApi.getSupplierPageSCP({ isSearch: false })
if (supplier.list && supplier.list.length > 0) {
defaultSupplierCode.value = supplier.list[0]['code']
} else {
defaultSupplierCode.value = ''
9 months ago
}
9 months ago
console.log('defaultSupplierCode', defaultSupplierCode)
}
1 year ago
/** 初始化 **/
onMounted(async () => {
9 months ago
getDefaultSupplier()
1 year ago
getList()
importTemplateData.templateUrl = await SupplierdeliverRequestMainApi.importTemplate()
})
</script>