|
|
@ -2,7 +2,10 @@ |
|
|
|
<ContentWrap> |
|
|
|
<!-- 搜索工作栏 --> |
|
|
|
<Search |
|
|
|
:schema="Q3.allSchemas.searchSchema" |
|
|
|
:schema="[ |
|
|
|
...InspectionQ3Main.allSchemas.searchSchema, |
|
|
|
...InspectionQ3Detail.allSchemas.searchSchema |
|
|
|
]" |
|
|
|
@search="setSearchParams" |
|
|
|
@reset="setSearchParams" |
|
|
|
/> |
|
|
@ -15,12 +18,14 @@ |
|
|
|
:routeName="routeName" |
|
|
|
@updataTableColumns="updataTableColumns" |
|
|
|
@searchFormClick="searchFormClick" |
|
|
|
:allSchemas="Q3.allSchemas" |
|
|
|
:allSchemas="InspectionQ3Main.allSchemas" |
|
|
|
:detailAllSchemas="InspectionQ3Detail.allSchemas" |
|
|
|
/> |
|
|
|
|
|
|
|
<!-- 列表 --> |
|
|
|
<ContentWrap> |
|
|
|
<Table |
|
|
|
v-clientTable |
|
|
|
:columns="tableColumns" |
|
|
|
:data="tableObject.tableList" |
|
|
|
:loading="tableObject.loading" |
|
|
@ -32,13 +37,13 @@ |
|
|
|
v-model:sort="tableObject.sort" |
|
|
|
> |
|
|
|
<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> |
|
|
|
</el-button> |
|
|
|
</template> |
|
|
|
<template #action="{ row }"> |
|
|
|
<template #action="{ row, $index }"> |
|
|
|
<ButtonBase |
|
|
|
:Butttondata="butttondata(row)" |
|
|
|
:Butttondata="butttondata(row, $index)" |
|
|
|
@button-base-click="buttonTableClick($event, row)" |
|
|
|
/> |
|
|
|
</template> |
|
|
@ -47,45 +52,75 @@ |
|
|
|
|
|
|
|
<!-- 表单弹窗:添加/修改 --> |
|
|
|
<BasicForm |
|
|
|
ref="basicFormRef" |
|
|
|
@success="formsSuccess" |
|
|
|
:rules="Q3Rules" |
|
|
|
:formAllSchemas="Q3.allSchemas" |
|
|
|
:apiUpdate="Q3Api.updateQ3" |
|
|
|
:apiCreate="Q3Api.createQ3" |
|
|
|
ref="formRef" |
|
|
|
:isOpenSearchTable="true" |
|
|
|
fieldTableColumn="itemCode" |
|
|
|
@success="getList" |
|
|
|
:rules="InspectionQ3MainRules" |
|
|
|
:formAllSchemas="InspectionQ3Main.allSchemas" |
|
|
|
:tableAllSchemas="InspectionQ3Detail.allSchemas" |
|
|
|
:tableFormRules="InspectionQ3DetailRules" |
|
|
|
:tableData="tableData" |
|
|
|
:apiUpdate="InspectionQ3MainApi.updateInspectionQ3Main" |
|
|
|
:apiCreate="InspectionQ3MainApi.createInspectionQ3Main" |
|
|
|
:isBusiness="true" |
|
|
|
@handleAddTable="handleAddTable" |
|
|
|
@handleDeleteTable="handleDeleteTable" |
|
|
|
:isShowReduceButtonSelection="true" |
|
|
|
@tableSelectionDelete="tableSelectionDelete" |
|
|
|
@searchTableSuccess="searchTableSuccess" |
|
|
|
:isBusiness="false" |
|
|
|
@onChange="onChange" |
|
|
|
/> |
|
|
|
@submitForm="submitForm" |
|
|
|
@inputNumberChange="inputNumberChange" |
|
|
|
:sumFormDataByTableCustom=" |
|
|
|
(formRef, formModel, tableData) => { |
|
|
|
tableData.forEach((item) => { |
|
|
|
item.qty = item.countQty * item.packQty |
|
|
|
}) |
|
|
|
} |
|
|
|
" |
|
|
|
> |
|
|
|
<!-- <template #default="{row}"> |
|
|
|
<el-input-number disabled v-model="row.qty"></el-input-number> |
|
|
|
</template> --> |
|
|
|
</BasicForm> |
|
|
|
|
|
|
|
<!-- 详情 --> |
|
|
|
<Detail ref="detailRef" :isBasic="true" :allSchemas="Q3.allSchemas" /> |
|
|
|
|
|
|
|
<!-- 导入 --> |
|
|
|
<ImportForm |
|
|
|
ref="importFormRef" |
|
|
|
url="/basic/Q3/import" |
|
|
|
:importTemplateData="importTemplateData" |
|
|
|
@success="importSuccess" |
|
|
|
<Detail |
|
|
|
ref="detailRef" |
|
|
|
:isBasic="false" |
|
|
|
:allSchemas="InspectionQ3Main.allSchemas" |
|
|
|
:detailAllSchemas="InspectionQ3Detail.allSchemas" |
|
|
|
:detailAllSchemasRules="InspectionQ3DetailRules" |
|
|
|
:apiCreate="InspectionQ3DetailApi.createInspectionQ3Detail" |
|
|
|
:apiUpdate="InspectionQ3DetailApi.updateInspectionQ3Detail" |
|
|
|
:apiPage="InspectionQ3DetailApi.getInspectionQ3DetailPage" |
|
|
|
:apiDelete="InspectionQ3DetailApi.deleteInspectionQ3Detail" |
|
|
|
@searchTableSuccessDetail="searchTableSuccessDetail" |
|
|
|
:detailValidate="detailValidate" |
|
|
|
/> |
|
|
|
</template> |
|
|
|
|
|
|
|
<script setup lang="ts"> |
|
|
|
import download from '@/utils/download' |
|
|
|
import { Q3, Q3Rules } from './inspectionQ3.data' |
|
|
|
import * as Q3Api from '@/api/qms/inspectionQ3' |
|
|
|
import { CACHE_KEY, useCache } from '@/hooks/web/useCache' |
|
|
|
import { |
|
|
|
InspectionQ3Main, |
|
|
|
InspectionQ3MainRules, |
|
|
|
InspectionQ3Detail, |
|
|
|
InspectionQ3DetailRules |
|
|
|
} from './inspectionQ3.data' |
|
|
|
import * as InspectionQ3MainApi from '@/api/qms/inspectionQ3/inspectionQ3Main' |
|
|
|
import * as InspectionQ3DetailApi from '@/api/qms/inspectionQ3/inspectionQ3Detail' |
|
|
|
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
|
|
|
import TableHead from '@/components/TableHead/src/TableHead.vue' |
|
|
|
import ImportForm from '@/components/ImportForm/src/ImportForm.vue' |
|
|
|
import Detail from '@/components/Detail/src/Detail.vue' |
|
|
|
import * as ProductionlineitemApi from '@/api/wms/productionlineitem' |
|
|
|
import * as StdcostpriceApi from '@/api/wms/stdcostprice' |
|
|
|
import { formatDate } from '@/utils/formatTime' |
|
|
|
|
|
|
|
import { async } from '@antv/x6/lib/registry/marker/async' |
|
|
|
import { useUserStore } from '@/store/modules/user' |
|
|
|
const userStore = useUserStore() |
|
|
|
|
|
|
|
defineOptions({ name: 'InspectionQ3' }) |
|
|
|
// 发料申请 |
|
|
|
defineOptions({ name: 'InspectionQ3Main' }) |
|
|
|
|
|
|
|
const message = useMessage() // 消息弹窗 |
|
|
|
const { t } = useI18n() // 国际化 |
|
|
@ -93,74 +128,145 @@ const { t } = useI18n() // 国际化 |
|
|
|
const route = useRoute() // 路由信息 |
|
|
|
const routeName = ref() |
|
|
|
routeName.value = route.name |
|
|
|
const tableColumns = ref(Q3.allSchemas.tableColumns) |
|
|
|
const tableColumns = ref([ |
|
|
|
...InspectionQ3Main.allSchemas.tableColumns, |
|
|
|
...InspectionQ3Detail.allSchemas.tableMainColumns |
|
|
|
]) |
|
|
|
|
|
|
|
// 字段设置 更新主列表字段 |
|
|
|
const updataTableColumns = (val) => { |
|
|
|
tableColumns.value = val |
|
|
|
} |
|
|
|
|
|
|
|
// 查询页面返回 |
|
|
|
const priceObj = ref() |
|
|
|
const searchTableSuccess = (formField, searchField, val, formRef) => { |
|
|
|
const searchTableSuccess = (formField, searchField, val, formRef, type, row) => { |
|
|
|
nextTick(async () => { |
|
|
|
const setV = {} |
|
|
|
if (type == 'tableForm') { |
|
|
|
// 明细查询页赋值 |
|
|
|
if (formField == 'itemCode') { |
|
|
|
console.log(val) |
|
|
|
setV['uom'] = val[0]['uom'] |
|
|
|
console.log(formRef.formModel.qty) |
|
|
|
// let res = await ProductionlineitemApi.selectItemCodeToProductionLineCode(val[0].code) |
|
|
|
ProductionlineitemApi.selectItemCodeToProductionLineCode(val[0].code).then((res) => { |
|
|
|
console.log(res) |
|
|
|
if (res?.length > 0) { |
|
|
|
formRef.formModel.defectLocation = res[0].productionLineCode |
|
|
|
Q3.allSchemas.formSchema.forEach(item=>{ |
|
|
|
if (item.field == 'defectLocation') { |
|
|
|
item.componentProps.options = res |
|
|
|
// val.forEach(item=>{ |
|
|
|
|
|
|
|
// }) |
|
|
|
const index1 = 0 |
|
|
|
setTableFormsValues(val, index1) |
|
|
|
|
|
|
|
// row['uom'] = val[0]['uom'] |
|
|
|
// console.log(formRef.formModel.qty) |
|
|
|
// // let res = await ProductionlineitemApi.selectItemCodeToProductionLineCode(val[0].code) |
|
|
|
// ProductionlineitemApi.selectItemCodeToProductionLineCode(val[0].code).then((res) => { |
|
|
|
// console.log(res) |
|
|
|
// if (res?.length > 0) { |
|
|
|
// formRef.formModel.defectLocation = res[0].productionLineCode |
|
|
|
// InspectionQ3Detail.allSchemas.formSchema.forEach(item=>{ |
|
|
|
// if (item.field == 'defectLocation') { |
|
|
|
// item.componentProps.options = res |
|
|
|
// } |
|
|
|
// }) |
|
|
|
// } |
|
|
|
// }) |
|
|
|
// const params = { |
|
|
|
// by: "ASC", |
|
|
|
// filters: [{column: "itemCode", action: "==", value: val[0].code}], |
|
|
|
// pageNo: 1, |
|
|
|
// pageSize: 500, |
|
|
|
// sort: "" |
|
|
|
// } |
|
|
|
// params.isSearch = true |
|
|
|
// StdcostpriceApi.getStdcostpricePage(params).then((res) => { |
|
|
|
// if (res.list?.length > 0) { |
|
|
|
// priceObj.value = res.list[0] |
|
|
|
// formRef.setValues({ |
|
|
|
// amount: (parseFloat(formRef.formModel.qty) * parseFloat(priceObj.value.price)).toFixed(6) |
|
|
|
// }) |
|
|
|
// } |
|
|
|
|
|
|
|
// }) |
|
|
|
} |
|
|
|
if (formField == 'costCode') { |
|
|
|
console.log(11111) |
|
|
|
row['costCode'] = val[0]['costcentreCode'] |
|
|
|
} |
|
|
|
if (formField == 'q1Number') { |
|
|
|
//Q1通知单号 |
|
|
|
let list = [] |
|
|
|
val.forEach((item) => { |
|
|
|
list.push(item[searchField]) |
|
|
|
}) |
|
|
|
setV[formField] = list.join(',') |
|
|
|
formRef.setValues(setV) |
|
|
|
} |
|
|
|
} else { |
|
|
|
const setV = {} |
|
|
|
setV[formField] = val[0][searchField] |
|
|
|
formRef.setValues(setV) |
|
|
|
} |
|
|
|
}) |
|
|
|
} |
|
|
|
const setTableFormsValues = async (val, index1) => { |
|
|
|
if (index1 <= val.length - 1) { |
|
|
|
let tableForm = JSON.parse(JSON.stringify(tableFormKeys)) |
|
|
|
if (tableData.value.find((item1) => item1['itemCode'] == val[index1]['itemCode'])) return |
|
|
|
const newRow = JSON.parse(JSON.stringify({ ...tableForm, ...val[index1] })) |
|
|
|
newRow['itemCode'] = val[index1]['itemCode'] |
|
|
|
newRow['uom'] = val[index1]['uom'] |
|
|
|
newRow['qty'] = 0 |
|
|
|
newRow.defectLocation = val[index1]['productionLineCode'] |
|
|
|
await ProductionlineitemApi.selectItemCodeToProductionLineCode(val[index1].itemCode).then( |
|
|
|
(res) => { |
|
|
|
console.log(res) |
|
|
|
if (res?.length > 0) { |
|
|
|
newRow.defectLocationInitOptions = res |
|
|
|
} |
|
|
|
} |
|
|
|
) |
|
|
|
const params = { |
|
|
|
by: "ASC", |
|
|
|
filters: [{column: "itemCode", action: "==", value: val[0].code}], |
|
|
|
by: 'ASC', |
|
|
|
filters: [{ column: 'itemCode', action: '==', value: val[index1].itemCode }], |
|
|
|
pageNo: 1, |
|
|
|
pageSize: 500, |
|
|
|
sort: "" |
|
|
|
sort: '' |
|
|
|
} |
|
|
|
params.isSearch = true |
|
|
|
StdcostpriceApi.getStdcostpricePage(params).then((res) => { |
|
|
|
await StdcostpriceApi.getStdcostpricePage(params).then((res) => { |
|
|
|
if (res.list?.length > 0) { |
|
|
|
priceObj.value = res.list[0] |
|
|
|
formRef.setValues({ |
|
|
|
amount: (parseFloat(formRef.formModel.qty) * parseFloat(priceObj.value.price)).toFixed(6) |
|
|
|
newRow['price'] = parseFloat(priceObj.value.price) |
|
|
|
newRow['amount']=(parseFloat(newRow['qty']) * parseFloat(priceObj.value.price)).toFixed(6) |
|
|
|
} |
|
|
|
}) |
|
|
|
tableData.value.push(newRow) |
|
|
|
index1++ |
|
|
|
setTableFormsValues(val, index1) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
}) |
|
|
|
const inputNumberChange = (field, index, row, val) => { |
|
|
|
if (field == 'qty') { |
|
|
|
row.amount = (parseFloat(row['qty']) * parseFloat(row.price)).toFixed(6) |
|
|
|
} |
|
|
|
if (formField == 'q1Number') { |
|
|
|
//Q1通知单号 |
|
|
|
let list = [] |
|
|
|
val.forEach((item) => { |
|
|
|
list.push(item[searchField]) |
|
|
|
formRef.value.formRef.formModel.summaryAmount =0 |
|
|
|
tableData.value.forEach(item=>{ |
|
|
|
formRef.value.formRef.formModel.summaryAmount += parseFloat(item.amount) |
|
|
|
}) |
|
|
|
setV[formField] = list.join(',') |
|
|
|
formRef.setValues(setV) |
|
|
|
} |
|
|
|
// 查询页面返回——详情 |
|
|
|
const searchTableSuccessDetail = (formField, searchField, val, formRef) => { |
|
|
|
nextTick(() => { |
|
|
|
const setV = {} |
|
|
|
if (formField == 'itemCode') { |
|
|
|
setV['itemCode'] = val[0]['code'] |
|
|
|
setV['uom'] = val[0]['uom'] |
|
|
|
} else { |
|
|
|
setV[formField] = val[0][searchField] |
|
|
|
formRef.setValues(setV) |
|
|
|
} |
|
|
|
formRef.setValues(setV) |
|
|
|
}) |
|
|
|
} |
|
|
|
const onChange =(field,e)=>{ |
|
|
|
if (field == 'qty') { |
|
|
|
basicFormRef.value.formRef.formModel.amount = (parseFloat( basicFormRef.value.formRef.formModel.qty) * parseFloat( priceObj.value.price)).toFixed(6) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// 字段设置 更新主列表字段 |
|
|
|
const updataTableColumns = (val) => { |
|
|
|
tableColumns.value = val |
|
|
|
} |
|
|
|
|
|
|
|
const { tableObject, tableMethods } = useTable({ |
|
|
|
getListApi: Q3Api.getQ3Page // 分页接口 |
|
|
|
getListApi: InspectionQ3DetailApi.getInspectionQ3DetailPage // 分页接口 |
|
|
|
}) |
|
|
|
|
|
|
|
// 获得表格的各种操作 |
|
|
@ -168,20 +274,11 @@ const { getList, setSearchParams } = tableMethods |
|
|
|
|
|
|
|
// 列表头部按钮 |
|
|
|
const HeadButttondata = [ |
|
|
|
defaultButtons.defaultAddBtn({ hasPermi: 'qms:Q3:create' }), // 新增 |
|
|
|
defaultButtons.defaultImportBtn({ hasPermi: 'qms:Q3:import' }), // 导入 |
|
|
|
defaultButtons.defaultExportBtn({ hasPermi: 'qms:Q3:export' }), // 导出 |
|
|
|
defaultButtons.defaultAddBtn({ hasPermi: 'qms:inspection-Q3-main:create' }), // 新增 |
|
|
|
defaultButtons.defaultExportBtn({ hasPermi: 'qms:inspection-Q3-main:export' }), // 导出 |
|
|
|
defaultButtons.defaultFreshBtn(null), // 刷新 |
|
|
|
defaultButtons.defaultFilterBtn(null), // 筛选 |
|
|
|
defaultButtons.defaultSetBtn(null) // 设置 |
|
|
|
// { |
|
|
|
// label: '自定义扩展按钮', |
|
|
|
// name: 'zdy', |
|
|
|
// hide: false, |
|
|
|
// type: 'primary', |
|
|
|
// icon: 'Select', |
|
|
|
// color: '' |
|
|
|
// }, |
|
|
|
] |
|
|
|
|
|
|
|
// 头部按钮事件 |
|
|
@ -189,9 +286,6 @@ const buttonBaseClick = (val, item) => { |
|
|
|
if (val == 'add') { |
|
|
|
// 新增 |
|
|
|
openForm('create') |
|
|
|
} else if (val == 'import') { |
|
|
|
// 导入 |
|
|
|
handleImport() |
|
|
|
} else if (val == 'export') { |
|
|
|
// 导出 |
|
|
|
handleExport() |
|
|
@ -206,6 +300,7 @@ const buttonBaseClick = (val, item) => { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// 根据状态返回该按钮是否显示 |
|
|
|
const isShowMainButton = (row, val) => { |
|
|
|
if (val.indexOf(row.status) > -1) { |
|
|
|
return false |
|
|
@ -215,19 +310,25 @@ const isShowMainButton = (row, val) => { |
|
|
|
} |
|
|
|
|
|
|
|
// 列表-操作按钮 |
|
|
|
const butttondata = (row) => { |
|
|
|
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.mainListEditBtn({ |
|
|
|
hide: isShowMainButton(row, ['0']), |
|
|
|
hasPermi: 'qms:Q3:update' |
|
|
|
hasPermi: 'qms:inspection-Q3-main:update' |
|
|
|
}), // 编辑 |
|
|
|
defaultButtons.mainListDeleteBtn({ |
|
|
|
hide: isShowMainButton(row, ['0']), |
|
|
|
hasPermi: 'qms:Q3:delete' |
|
|
|
hasPermi: 'qms:inspection-Q3-main:delete' |
|
|
|
}), // 删除 |
|
|
|
defaultButtons.mainListFinishBtn({ |
|
|
|
hide: isShowMainButton(row, ['0']), |
|
|
|
hasPermi: 'qms:Q3:finish' |
|
|
|
hasPermi: 'qms:inspection-Q3-main:finish' |
|
|
|
}) // 完成 |
|
|
|
] |
|
|
|
} |
|
|
@ -241,14 +342,14 @@ const buttonTableClick = async (val, row) => { |
|
|
|
// 删除 |
|
|
|
handleDelete(row.id) |
|
|
|
} else if (val == 'finish') { |
|
|
|
// 删除 |
|
|
|
// 完成 |
|
|
|
handleFinish(row.id) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
const handleFinish = async (id: number) => { |
|
|
|
try { |
|
|
|
await Q3Api.finishQ3(id) |
|
|
|
await InspectionQ3MainApi.finishInspectionQ3Main(id) |
|
|
|
message.success(t('common.updateSuccess')) |
|
|
|
// 刷新列表 |
|
|
|
await getList() |
|
|
@ -256,12 +357,12 @@ const handleFinish = async (id: number) => { |
|
|
|
} |
|
|
|
|
|
|
|
/** 添加/修改操作 */ |
|
|
|
const basicFormRef = ref() |
|
|
|
const openForm = (type: string, row?: any) => { |
|
|
|
basicFormRef.value.open(type, row) |
|
|
|
const formRef = ref() |
|
|
|
const openForm = async (type: string, row?: any) => { |
|
|
|
formRef.value.open(type, row) |
|
|
|
if (type == 'create') { |
|
|
|
nextTick(() => { |
|
|
|
basicFormRef.value.formRef.setValues({ |
|
|
|
formRef.value.formRef.setValues({ |
|
|
|
handleTime: new Date().getTime(), |
|
|
|
priority: '3' |
|
|
|
}) |
|
|
@ -269,50 +370,16 @@ const openForm = (type: string, row?: any) => { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// form表单提交 |
|
|
|
const formsSuccess = async (formType, data) => { |
|
|
|
data.responUser = userStore.getUser.id |
|
|
|
var isHave = Q3.allSchemas.formSchema.some(function (item) { |
|
|
|
return item.field === 'activeTime' || item.field === 'expireTime' |
|
|
|
}) |
|
|
|
if (isHave) { |
|
|
|
if (data.activeTime && data.expireTime && data.activeTime >= data.expireTime) { |
|
|
|
message.error('失效时间要大于生效时间') |
|
|
|
return |
|
|
|
} |
|
|
|
} |
|
|
|
if (data.qty == 0) { |
|
|
|
message.error('数量不能为0') |
|
|
|
return |
|
|
|
} |
|
|
|
if (data.amount == 0) { |
|
|
|
message.error('金额不能为0') |
|
|
|
return |
|
|
|
} |
|
|
|
if (data.activeTime == 0) data.activeTime = null |
|
|
|
if (data.expireTime == 0) data.expireTime = null |
|
|
|
|
|
|
|
try { |
|
|
|
basicFormRef.value.formLoading = true |
|
|
|
if (formType === 'create') { |
|
|
|
await Q3Api.createQ3(data) |
|
|
|
message.success(t('common.createSuccess')) |
|
|
|
} else { |
|
|
|
await Q3Api.updateQ3(data) |
|
|
|
message.success(t('common.updateSuccess')) |
|
|
|
} |
|
|
|
basicFormRef.value.dialogVisible = false |
|
|
|
basicFormRef.value.formLoading = false |
|
|
|
getList() |
|
|
|
} finally { |
|
|
|
basicFormRef.value.formLoading = false |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// 获取部门 用于详情 部门回显 |
|
|
|
const { wsCache } = useCache() |
|
|
|
/** 详情操作 */ |
|
|
|
const detailRef = ref() |
|
|
|
const openDetail = (row: any, titleName: any, titleValue: any) => { |
|
|
|
detailRef.value.openDetail(row, titleName, titleValue, 'basicQ3') |
|
|
|
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, 'inspectionQ3Main') |
|
|
|
} |
|
|
|
|
|
|
|
/** 删除按钮操作 */ |
|
|
@ -320,11 +387,13 @@ const handleDelete = async (id: number) => { |
|
|
|
try { |
|
|
|
// 删除的二次确认 |
|
|
|
await message.delConfirm() |
|
|
|
tableObject.loading = true |
|
|
|
// 发起删除 |
|
|
|
await Q3Api.deleteQ3(id) |
|
|
|
await InspectionQ3MainApi.deleteInspectionQ3Main(id) |
|
|
|
tableObject.loading = false |
|
|
|
message.success(t('common.delSuccess')) |
|
|
|
// 刷新列表 |
|
|
|
await getList() |
|
|
|
buttonBaseClick('refresh', null) |
|
|
|
} catch {} |
|
|
|
} |
|
|
|
|
|
|
@ -336,25 +405,113 @@ const handleExport = async () => { |
|
|
|
await message.exportConfirm() |
|
|
|
// 发起导出 |
|
|
|
exportLoading.value = true |
|
|
|
const excelTitle = ref(route.meta.title) |
|
|
|
const data = await Q3Api.exportQ3(tableObject.params) |
|
|
|
download.excel(data, `【${excelTitle.value}】【${formatDate(new Date())}】.xlsx`) |
|
|
|
const data = await InspectionQ3MainApi.exportInspectionQ3Main(tableObject.params) |
|
|
|
download.excel(data, `【${route.meta.title}】【${formatDate(new Date())}】.xlsx`) |
|
|
|
} catch { |
|
|
|
} finally { |
|
|
|
exportLoading.value = false |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* tableForm方法 |
|
|
|
*/ |
|
|
|
const tableFormKeys = {} |
|
|
|
InspectionQ3Detail.allSchemas.tableFormColumns.forEach((item) => { |
|
|
|
tableFormKeys[item.field] = item.default ? item.default : '' |
|
|
|
}) |
|
|
|
const tableData = ref([]) |
|
|
|
|
|
|
|
// 添加明细 |
|
|
|
const handleAddTable = () => { |
|
|
|
// 添加明细 已有数据 添加的明细 生产线 工位按照之前数据进行添加 |
|
|
|
let tableForm = JSON.parse(JSON.stringify(tableFormKeys)) |
|
|
|
if (tableData.value.length > 0) { |
|
|
|
// tableForm.productionLineCode = tableData.value[0].productionLineCode |
|
|
|
// tableForm.workStationCode = tableData.value[0].workStationCode |
|
|
|
} |
|
|
|
tableData.value.push(tableForm) |
|
|
|
} |
|
|
|
// 删除明细 |
|
|
|
const handleDeleteTable = (item, index) => { |
|
|
|
let itemIndex = tableData.value.indexOf(item) |
|
|
|
if (itemIndex > -1) { |
|
|
|
tableData.value.splice(itemIndex, 1) |
|
|
|
} |
|
|
|
} |
|
|
|
const tableSelectionDelete = (selection) => { |
|
|
|
tableData.value = tableData.value.filter((item) => !selection.includes(item)) |
|
|
|
} |
|
|
|
// 主子数据 提交 |
|
|
|
const submitForm = async (formType, submitData) => { |
|
|
|
let data = { ...submitData } |
|
|
|
if (data.masterId) { |
|
|
|
data.id = data.masterId |
|
|
|
} |
|
|
|
data.responUser = userStore.getUser.nickname |
|
|
|
data.subList = tableData.value // 拼接子表数据参数 |
|
|
|
if (tableData.value.find((item) => item.qty <= 0)) { |
|
|
|
message.warning('数量必须大于0') |
|
|
|
formRef.value.formLoading = false |
|
|
|
return |
|
|
|
} |
|
|
|
// 判断子表中,是否有不同的生产线和工位 |
|
|
|
// if (tableData.value.length > 0) { |
|
|
|
// let productionLineCode = tableData.value[0].productionLineCode |
|
|
|
// let workStationCode = tableData.value[0].workStationCode |
|
|
|
// for(var i=0;i<tableData.value.length;i++) { |
|
|
|
// if(productionLineCode !== tableData.value[i].productionLineCode){ |
|
|
|
// message.warning('子表数据:生产线存在不同数据,请修改成统一数据!') |
|
|
|
// formRef.value.formLoading = false |
|
|
|
// return; |
|
|
|
// } |
|
|
|
// if(workStationCode !== tableData.value[i].workStationCode){ |
|
|
|
// message.warning('子表数据:工位存在不同数据,请修改成统一数据!') |
|
|
|
// formRef.value.formLoading = false |
|
|
|
// return; |
|
|
|
// } |
|
|
|
// } |
|
|
|
// } |
|
|
|
formRef.value.formLoading = true |
|
|
|
try { |
|
|
|
if (formType === 'create') { |
|
|
|
await InspectionQ3MainApi.createInspectionQ3Main(data) |
|
|
|
message.success(t('common.createSuccess')) |
|
|
|
} else { |
|
|
|
await InspectionQ3MainApi.updateInspectionQ3Main(data) |
|
|
|
message.success(t('common.updateSuccess')) |
|
|
|
} |
|
|
|
formRef.value.dialogVisible = false |
|
|
|
// 刷新当前列表 |
|
|
|
if (formType === 'create') { |
|
|
|
getList() |
|
|
|
} else { |
|
|
|
buttonBaseClick('refresh', null) |
|
|
|
} |
|
|
|
} finally { |
|
|
|
formRef.value.formLoading = false |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// 子表新增/编辑校验 |
|
|
|
const detailValidate = async (data) => { |
|
|
|
// let rs = false |
|
|
|
// TODO: 单一新编/编辑,校验是否与其他子数据存在生产线工位有不同数据情况 |
|
|
|
return true |
|
|
|
} |
|
|
|
|
|
|
|
/** 导入 */ |
|
|
|
const importFormRef = ref() |
|
|
|
const handleImport = () => { |
|
|
|
importFormRef.value.open() |
|
|
|
} |
|
|
|
|
|
|
|
// 导入附件弹窗所需的参数 |
|
|
|
const importTemplateData = reactive({ |
|
|
|
templateUrl: '', |
|
|
|
templateTitle: `【${route.meta.title}】导入模版.xlsx` |
|
|
|
}) |
|
|
|
|
|
|
|
// 导入成功之后 |
|
|
|
const importSuccess = () => { |
|
|
|
getList() |
|
|
@ -372,6 +529,5 @@ const searchFormClick = (searchData) => { |
|
|
|
/** 初始化 **/ |
|
|
|
onMounted(async () => { |
|
|
|
getList() |
|
|
|
importTemplateData.templateUrl = await Q3Api.importTemplate() |
|
|
|
}) |
|
|
|
</script> |
|
|
|