From 3791d4d6f8c42deffd74291566d1fd80fa3cf5aa Mon Sep 17 00:00:00 2001 From: "YEJIAXING-PC\\lenovo" <591141169@qq.com> Date: Tue, 25 Mar 2025 13:12:02 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=9F=E4=BA=A7=E5=A4=96=E5=85=A5=E5=BA=93?= =?UTF-8?q?=E7=94=B3=E8=AF=B7=EF=BC=9A=E5=88=9B=E5=BB=BA=E6=A0=87=E7=AD=BE?= =?UTF-8?q?=E5=90=8E=EF=BC=8C=E9=80=89=E6=8B=A9=E5=8D=95=E6=8D=AE=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E7=89=A9=E6=96=99=E5=8F=B7=EF=BC=8C=E4=BF=9D=E5=AD=98?= =?UTF-8?q?=E5=90=8E=E5=86=8D=E6=AC=A1=E5=88=9B=E5=BB=BA=E6=A0=87=E7=AD=BE?= =?UTF-8?q?=20=E5=A4=B1=E8=B4=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../unplannedreceiptRequestMain/index.vue | 133 +- .../unplannedreceiptRequestMain.data.ts | 24 +- .../repleinshRequestMain.data.ts | 1774 ++++++++--------- .../supplierinvoiceRecordMain/index.vue | 2 +- 4 files changed, 976 insertions(+), 957 deletions(-) diff --git a/src/views/wms/inventoryjobManage/unplannedreceipt/unplannedreceiptRequestMain/index.vue b/src/views/wms/inventoryjobManage/unplannedreceipt/unplannedreceiptRequestMain/index.vue index a9af640d4..a1e5bc641 100644 --- a/src/views/wms/inventoryjobManage/unplannedreceipt/unplannedreceiptRequestMain/index.vue +++ b/src/views/wms/inventoryjobManage/unplannedreceipt/unplannedreceiptRequestMain/index.vue @@ -92,6 +92,9 @@ tfk['itemCode'] = item['code'] tfk['uom'] = item['uom'] tfk['validityDays'] = item['validityDays'] - tfk['isEnableBuy'] = val[0]['enableBuy'] + tfk['isEnableBuy'] = val[0]['enableBuy'] tableData.value.push(tfk) }) } else if (formField === 'costcentreCode') { @@ -554,7 +557,7 @@ const buttonTableClick = async (val, row) => { // 判断 是否已创建标签 tableObject.loading = true try { - let isCreateLabel = false + let isCreateLabel = false await PackageApi.getPackagePage({ requestNumber: row.number }).then((res) => { @@ -564,7 +567,7 @@ const buttonTableClick = async (val, row) => { }) if (isCreateLabel) { message.warning('已创建过标签!!!') - tableObject.loading = false + tableObject.loading = false return } console.log('列表-操作按钮事件-创建标签') @@ -579,7 +582,7 @@ const buttonTableClick = async (val, row) => { } // 打开创建标签页面 // dialogVisible.value = true - tableObject.loading = false + tableObject.loading = false formLabelRef.value.open('create', row) console.log(detailListTableColumns.tableFormColumns) detatableData.tableList.map((item) => { @@ -631,11 +634,10 @@ const buttonTableClick = async (val, row) => { } }) }) - }finally { + } finally { tableObject.loading = false } } - } /** 关闭按钮操作 */ @@ -866,7 +868,7 @@ const submitForm = async (formType, submitData) => { try { let newVal = data.subList.some((item) => item.isEnableBuy == 'TRUE') let newVal1 = data.subList.some((item) => item.isEnableBuy == 'FALSE') - console.log(newVal,newVal1) + console.log(newVal, newVal1) if (newVal && newVal1) { message.warning('不能同时选择可制造和可采购的物料') return @@ -955,25 +957,29 @@ const submitFormLabel = async (formType, data) => { try { formLabelRef.value.formLoading = true detatableData.tableList.forEach(async (item) => { - const unitConversion = await UnitConversionApi.getUnitConversionByCode(item.itemCode); - let convertRate = 1//转换率 - let purchaseUom = item.uom//采购计量单位 - let purchaseStdQty//采购标包数量 - if(unitConversion!=null){ - if(unitConversion.convertRate!=null&&unitConversion.convertRate!='' && unitConversion.convertRate!=0){ - convertRate = unitConversion.convertRate; + const unitConversion = await UnitConversionApi.getUnitConversionByCode(item.itemCode) + let convertRate = 1 //转换率 + let purchaseUom = item.uom //采购计量单位 + let purchaseStdQty //采购标包数量 + if (unitConversion != null) { + if ( + unitConversion.convertRate != null && + unitConversion.convertRate != '' && + unitConversion.convertRate != 0 + ) { + convertRate = unitConversion.convertRate } - if(unitConversion.purchaseUom!=null&&unitConversion.purchaseUom!='' ){ - purchaseUom = unitConversion.purchaseUom; + if (unitConversion.purchaseUom != null && unitConversion.purchaseUom != '') { + purchaseUom = unitConversion.purchaseUom } } - let purchaseQty = (item.qty / convertRate).toFixed(5);//采购每包中实际的数量 - purchaseStdQty = (item.packQty / convertRate).toFixed(5);//采购每包中实际的数量 - item.purchaseQty = purchaseQty;//采购实际每包数量 - item.convertRate = convertRate;//转换率 - item.purchaseStdQty = purchaseStdQty;//采购标包数量 - item.purchaseUom = purchaseUom;//采购计量单位 - console.log('item======================',item) + let purchaseQty = (item.qty / convertRate).toFixed(5) //采购每包中实际的数量 + purchaseStdQty = (item.packQty / convertRate).toFixed(5) //采购每包中实际的数量 + item.purchaseQty = purchaseQty //采购实际每包数量 + item.convertRate = convertRate //转换率 + item.purchaseStdQty = purchaseStdQty //采购标包数量 + item.purchaseUom = purchaseUom //采购计量单位 + console.log('item======================', item) await PackageApi.createPackageLabel(item) .then((res) => { isCreateLabel.value = true @@ -1067,49 +1073,68 @@ const labelPrint = async (row) => { try { await PackageApi.getPackagePage({ requestNumber: row.number - }).then((res) => { - if (res.list.length > 0) { - isCreateLabel.value = true - } else { - isCreateLabel.value = false - } - }).catch((err) => { - isCreateLabel.value = false - console.log(err) }) + .then((res) => { + if (res.list.length > 0) { + isCreateLabel.value = true + } else { + isCreateLabel.value = false + } + }) + .catch((err) => { + isCreateLabel.value = false + console.log(err) + }) // 判断是采购还是制造 if (isCreateLabel.value) { // labelPrint(row) await UnplannedreceiptRequestDetailApi.getDetailList(row.masterId).then(async (res) => { if (res.length > 0) { - const itemType = res.some((item) => item.itemType == '可采购' && item.itemBasicType =='TOOL')//跳转协定品标签 - const itemType2 = res.some((item) => item.itemType == '可采购' && item.itemBasicType !='TOOL') + const itemType = res.some( + (item) => item.itemType == '可采购' && item.itemBasicType == 'TOOL' + ) //跳转协定品标签 + const itemType2 = res.some( + (item) => item.itemType == '可采购' && item.itemBasicType != 'TOOL' + ) const itemType1 = res.some((item) => item.itemType == '可制造') if (itemType) { - window.open( BASE_URL + '/jmreport/view/1028102732077142016?token=' + getAccessToken() + '&request_number=' + row.number ) + window.open( + BASE_URL + + '/jmreport/view/1028102732077142016?token=' + + getAccessToken() + + '&request_number=' + + row.number + ) } if (itemType2) { - window.open( BASE_URL + '/jmreport/view/1016234988731322368?token=' + getAccessToken() + '&request_number=' + row.number ) + window.open( + BASE_URL + + '/jmreport/view/1016234988731322368?token=' + + getAccessToken() + + '&request_number=' + + row.number + ) + } + if (itemType1) { + // window.open(src.value + '&request_number=' + row.number) + await PackageApi.batchPrintingLableForYT(row.number) + .then((res) => { + console.log(res) + const src = ref( + BASE_URL + '/jmreport/view/922734157577715712?token=' + getAccessToken() + ) + window.open(src.value + '&asn_number=' + res) + }) + .catch((err) => { + console.log(err) + message.error('创建标签失败') + }) } - if (itemType1) { - // window.open(src.value + '&request_number=' + row.number) - await PackageApi.batchPrintingLableForYT(row.number).then((res) => { - console.log(res) - const src = ref( - BASE_URL + '/jmreport/view/922734157577715712?token=' + getAccessToken() - ) - window.open(src.value + '&asn_number=' + res) - }) - .catch((err) => { - console.log(err) - message.error('创建标签失败') - }) } - } - }) - } else { - message.warning('请先创建标签') - } + }) + } else { + message.warning('请先创建标签') + } } finally { tableObject.loading = false } diff --git a/src/views/wms/inventoryjobManage/unplannedreceipt/unplannedreceiptRequestMain/unplannedreceiptRequestMain.data.ts b/src/views/wms/inventoryjobManage/unplannedreceipt/unplannedreceiptRequestMain/unplannedreceiptRequestMain.data.ts index 08e7cc0c4..2bb8dac07 100644 --- a/src/views/wms/inventoryjobManage/unplannedreceipt/unplannedreceiptRequestMain/unplannedreceiptRequestMain.data.ts +++ b/src/views/wms/inventoryjobManage/unplannedreceipt/unplannedreceiptRequestMain/unplannedreceiptRequestMain.data.ts @@ -1423,18 +1423,18 @@ export const UnplannedreceiptRequestDetail = useCrudSchemas(reactive0) { diff --git a/src/views/wms/issueManage/repleinsh/repleinshRequestMain/repleinshRequestMain.data.ts b/src/views/wms/issueManage/repleinsh/repleinshRequestMain/repleinshRequestMain.data.ts index 9f1e3b0de..dafff9d9e 100644 --- a/src/views/wms/issueManage/repleinsh/repleinshRequestMain/repleinshRequestMain.data.ts +++ b/src/views/wms/issueManage/repleinsh/repleinshRequestMain/repleinshRequestMain.data.ts @@ -1,11 +1,11 @@ import type { CrudSchema } from '@/hooks/web/useCrudSchemas' import { dateFormatter, dateFormatter2 } from '@/utils/formatTime' -import * as getRequestsettingApi from '@/api/wms/requestsetting/index' +import * as getRequestsettingApi from '@/api/wms/requestsetting/index' -import * as ItembasicApi from '@/api/wms/itembasic' +import * as ItembasicApi from '@/api/wms/itembasic' import { Itembasic } from '@/views/wms/basicDataManage/itemManage/itembasic/itembasic.data' -import * as LocationApi from '@/api/wms/location' +import * as LocationApi from '@/api/wms/location' import { Location } from '@/views/wms/basicDataManage/factoryModeling/location/location.data' import * as WarehouseApi from '@/api/wms/warehouse' @@ -15,144 +15,86 @@ const { t } = useI18n() // 国际化 // 获取自动提交自动通过自动执行,跳过任务直接删生成记录的默认值 const queryParams = { - pageSize:10, - pageNo:1, - code:'RepleinmentRequest', + pageSize: 10, + pageNo: 1, + code: 'RepleinmentRequest', businessTypeCode: 'Repleinment' } - const data = await getRequestsettingApi.getRequestsettingPage(queryParams) - const requestsettingData =data?.list[0]||{} +const data = await getRequestsettingApi.getRequestsettingPage(queryParams) +const requestsettingData = data?.list[0] || {} - // 获取当前操作人的部门 - import { useUserStore } from '@/store/modules/user' - import { TableColumn } from '@/types/table' -import {getLocationPageRepleinsh} from "@/api/wms/location"; - const userStore = useUserStore() - const userDept = userStore.userSelfInfo.dept - // id 转str 否则form回显匹配不到 - userDept.id = userDept.id.toString() - const userDeptArray:any = [userDept] +// 获取当前操作人的部门 +import { useUserStore } from '@/store/modules/user' +import { TableColumn } from '@/types/table' +import { getLocationPageRepleinsh } from '@/api/wms/location' +const userStore = useUserStore() +const userDept = userStore.userSelfInfo.dept +// id 转str 否则form回显匹配不到 +userDept.id = userDept.id.toString() +const userDeptArray: any = [userDept] /** * @returns {Array} 补料申请主表 */ -export const RepleinshRequestMain = useCrudSchemas(reactive([ - { - label: '单据号', - field: 'number', - sort: 'custom', - table: { - width: 180, - fixed: 'left' - }, - isForm: false, - isSearch: true, - sortSearchDefault:1, - }, - { - label: '状态', - field: 'status', - dictType: DICT_TYPE.REQUEST_STATUS, - dictClass: 'string', - isForm:false, - isTable: true, - isSearch: true, - sort: 'custom', - sortTableDefault:1, - table: { - width: 150 - }, - form: { - value: '1', - componentProps: { - disabled: true - } - } - }, - { - label: '到库位代码', - field: 'toLocationCode', - sort: 'custom', - table: { - width: 150 - }, - hiddenInMain:true, - // isTableForm: false, - form: { - // labelMessage: '信息提示说明!!!', - componentProps: { - enterSearch:true, - isSearchList: true, // 开启查询弹窗 - searchListPlaceholder: '请选择到库位代码', // 输入框占位文本 - searchField: 'code', // 查询弹窗赋值字段 - searchTitle: '库位信息', // 查询弹窗标题 - searchAllSchemas: Location.allSchemas, // 查询弹窗所需类 - searchPage: LocationApi.getLocationPageRepleinsh, // 查询弹窗所需分页方法 - searchCondition:[{ - key: 'available', - value: 'TRUE', - isMainValue: false - }], - verificationParams: [{ - key: 'code', - action: '==', - value: '', - isMainValue: false, - isSearch: true, - isFormModel: true, - }], // 失去焦点校验参数 +export const RepleinshRequestMain = useCrudSchemas( + reactive([ + { + label: '单据号', + field: 'number', + sort: 'custom', + table: { + width: 180, + fixed: 'left' + }, + isForm: false, + isSearch: true, + sortSearchDefault: 1 + }, + { + label: '状态', + field: 'status', + dictType: DICT_TYPE.REQUEST_STATUS, + dictClass: 'string', + isForm: false, + isTable: true, + isSearch: true, + sort: 'custom', + sortTableDefault: 1, + table: { + width: 150 + }, + form: { + value: '1', + componentProps: { + disabled: true + } } }, - tableForm:{ - isInpuFocusShow: true, - searchListPlaceholder: '请选择到库位代码', // 输入框占位文本 - searchField: 'code', // 查询弹窗赋值字段 - searchTitle: '库位信息', // 查询弹窗标题 - searchAllSchemas: Location.allSchemas, // 查询弹窗所需类 - searchPage: LocationApi.getLocationPageRepleinsh, // 查询弹窗所需分页方法 - searchCondition:[{ - key: 'available', - value: 'TRUE', - isMainValue: false - }] - }, - }, - { - label: '来源', - field: 'sourceType', - sort: 'custom', - table: { - width: 150 - }, - isForm: false, - isTable: true, - isDetail: true - }, - { - label: '生产线代码', - field: 'productionLineCode', - sort: 'custom', - table: { - width: 150 - }, - isForm: false, - isTable: true, - isDetail: true - }, - { - label: '生产线区分', - field: 'productionLine', - sort: 'custom', - table: { - width: 150 - }, - isForm: false, - isTable: true, - isDetail: true - }, -{ + { + label: '生产线代码', + field: 'productionLineCode', + sort: 'custom', + table: { + width: 150 + }, + isForm: false, + isTable: true, + isDetail: true + }, + { + label: '生产线区分', + field: 'productionLine', + sort: 'custom', + table: { + width: 150 + }, + isForm: false, + isTable: true, + isDetail: true + }, + { label: '日期', - sortTableDefault:5, + sortTableDefault: 5, field: 'day', sort: 'custom', isDetail: true, @@ -182,9 +124,75 @@ export const RepleinshRequestMain = useCrudSchemas(reactive([ width: 150 }, detail: { - dateFormat:'YYYY-MM-DD' + dateFormat: 'YYYY-MM-DD' } }, + { + label: '到库位代码', + field: 'toLocationCode', + sort: 'custom', + table: { + width: 150 + }, + hiddenInMain: true, + // isTableForm: false, + form: { + // labelMessage: '信息提示说明!!!', + componentProps: { + enterSearch: true, + isSearchList: true, // 开启查询弹窗 + searchListPlaceholder: '请选择到库位代码', // 输入框占位文本 + searchField: 'code', // 查询弹窗赋值字段 + searchTitle: '库位信息', // 查询弹窗标题 + searchAllSchemas: Location.allSchemas, // 查询弹窗所需类 + searchPage: LocationApi.getLocationPageRepleinsh, // 查询弹窗所需分页方法 + searchCondition: [ + { + key: 'available', + value: 'TRUE', + isMainValue: false + } + ], + verificationParams: [ + { + key: 'code', + action: '==', + value: '', + isMainValue: false, + isSearch: true, + isFormModel: true + } + ] // 失去焦点校验参数 + } + }, + tableForm: { + isInpuFocusShow: true, + searchListPlaceholder: '请选择到库位代码', // 输入框占位文本 + searchField: 'code', // 查询弹窗赋值字段 + searchTitle: '库位信息', // 查询弹窗标题 + searchAllSchemas: Location.allSchemas, // 查询弹窗所需类 + searchPage: LocationApi.getLocationPageRepleinsh, // 查询弹窗所需分页方法 + searchCondition: [ + { + key: 'available', + value: 'TRUE', + isMainValue: false + } + ] + } + }, + { + label: '来源', + field: 'sourceType', + sort: 'custom', + table: { + width: 150 + }, + isForm: false, + isTable: true, + isDetail: true + }, + { label: '便次', field: 'deliNo', @@ -193,806 +201,796 @@ export const RepleinshRequestMain = useCrudSchemas(reactive([ table: { width: 150 }, - isTable:true, + isTable: true, form: { component: 'InputNumber', componentProps: { - min: 1, - }, + min: 1 + } } }, - { - label: '从库区类型范围', - field: 'fromAreaTypes', - dictType: DICT_TYPE.AREA_TYPE, - dictClass: 'string', - isTable: false, - sort: 'custom', - table: { - width: 150 - }, - isForm: false, - }, - { - label: '到库区类型范围', - field: 'toAreaTypes', - dictType: DICT_TYPE.AREA_TYPE, - dictClass: 'string', - isTable: false, - sort: 'custom', - table: { - width: 150 - }, - isForm: false, - }, - { - label: '从库区代码范围', - field: 'fromAreaCodes', - sort: 'custom', - table: { - width: 150 - }, - isTable: false, - isForm: false, - }, - { - label: '到库区代码范围', - field: 'toAreaCodes', - sort: 'custom', - table: { - width: 150 - }, - isTable: false, - isForm: false, - }, - { - label: '申请时间', - field: 'requestTime', - formatter: dateFormatter, - detail: { - dateFormat: 'YYYY-MM-DD HH:mm:ss' - }, - sort: 'custom', - table: { - width: 180 - }, - isTable: false, - form: { - component: 'DatePicker', - componentProps: { - style: { width:'100%'}, - type: 'datetime', - dateFormat: 'YYYY-MM-DD HH:mm:ss', - valueFormat: 'x', - } + { + label: '从库区类型范围', + field: 'fromAreaTypes', + dictType: DICT_TYPE.AREA_TYPE, + dictClass: 'string', + isTable: false, + sort: 'custom', + table: { + width: 150 + }, + isForm: false }, - isForm: false, - }, - { - label: '截止时间', - field: 'dueTime', - formatter: dateFormatter, - detail: { - dateFormat: 'YYYY-MM-DD HH:mm:ss' - }, - sort: 'custom', - table: { - width: 180 - }, - isTable: false, - form: { - component: 'DatePicker', - componentProps: { - style: { width:'100%'}, - type: 'datetime', - dateFormat: 'YYYY-MM-DD HH:mm:ss', - valueFormat: 'x', - } + { + label: '到库区类型范围', + field: 'toAreaTypes', + dictType: DICT_TYPE.AREA_TYPE, + dictClass: 'string', + isTable: false, + sort: 'custom', + table: { + width: 150 + }, + isForm: false }, - }, - { - label: '部门', - field: 'departmentCode', - sort: 'custom', - isForm:false, - table: { - width: 150 - }, - isTable: false, - formatter: (_: Recordable, __: TableColumn, cellValue: number) => { - return userDeptArray.find((account) => account.id == cellValue)?.name - }, - form: { - value: userDept.id, - component: 'Select', - api: () => userDeptArray, - componentProps: { - disabled: true, - optionsAlias: { - labelField: 'name', - valueField: 'id' + { + label: '从库区代码范围', + field: 'fromAreaCodes', + sort: 'custom', + table: { + width: 150 + }, + isTable: false, + isForm: false + }, + { + label: '到库区代码范围', + field: 'toAreaCodes', + sort: 'custom', + table: { + width: 150 + }, + isTable: false, + isForm: false + }, + { + label: '申请时间', + field: 'requestTime', + formatter: dateFormatter, + detail: { + dateFormat: 'YYYY-MM-DD HH:mm:ss' + }, + sort: 'custom', + table: { + width: 180 + }, + isTable: false, + form: { + component: 'DatePicker', + componentProps: { + style: { width: '100%' }, + type: 'datetime', + dateFormat: 'YYYY-MM-DD HH:mm:ss', + valueFormat: 'x' + } + }, + isForm: false + }, + { + label: '截止时间', + field: 'dueTime', + formatter: dateFormatter, + detail: { + dateFormat: 'YYYY-MM-DD HH:mm:ss' + }, + sort: 'custom', + table: { + width: 180 + }, + isTable: false, + form: { + component: 'DatePicker', + componentProps: { + style: { width: '100%' }, + type: 'datetime', + dateFormat: 'YYYY-MM-DD HH:mm:ss', + valueFormat: 'x' } } - } - }, - { - label: '业务类型', - field: 'businessType', - sort: 'custom', - table: { - width: 150 - }, - isTable:false, - form: { - value: 'Repleinment', - componentProps: { - disabled: true + }, + { + label: '部门', + field: 'departmentCode', + sort: 'custom', + isForm: false, + table: { + width: 150 + }, + isTable: false, + formatter: (_: Recordable, __: TableColumn, cellValue: number) => { + return userDeptArray.find((account) => account.id == cellValue)?.name + }, + form: { + value: userDept.id, + component: 'Select', + api: () => userDeptArray, + componentProps: { + disabled: true, + optionsAlias: { + labelField: 'name', + valueField: 'id' + } + } } }, - isForm: false, - }, - { - label: '备注', - field: 'remark', - sort: 'custom', - table: { - width: 150 - }, - isForm: false, - isTable: true, - isDetail: true - }, + { + label: '业务类型', + field: 'businessType', + sort: 'custom', + table: { + width: 150 + }, + isTable: false, + form: { + value: 'Repleinment', + componentProps: { + disabled: true + } + }, + isForm: false + }, + { + label: '备注', + field: 'remark', + sort: 'custom', + table: { + width: 150 + }, + isForm: false, + isTable: true, + isDetail: true + }, - // { - // label: '从仓库代码', - // field: 'fromWarehouseCode', - // sort: 'custom', - // table: { - // width: 150 - // }, - // isTable: false, - // form: { - // // labelMessage: '信息提示说明!!!', - // componentProps: { - // isSearchList: true, // 开启查询弹窗 - // searchListPlaceholder: '请选择仓库代码', // 输入框占位文本 - // searchField: 'code', // 查询弹窗赋值字段 - // searchTitle: '仓库信息', // 查询弹窗标题 - // searchAllSchemas: Warehouse.allSchemas, // 查询弹窗所需类 - // searchPage: WarehouseApi.getWarehousePage, // 查询弹窗所需分页方法 - // searchCondition: [{ - // key: 'available', - // value: 'TRUE', - // isMainValue: false - // }] - // } - // } - // }, - // { - // label: '到仓库代码', - // field: 'toWarehouseCode', - // sort: 'custom', - // table: { - // width: 150 - // }, - // isTable: false, - // form: { - // componentProps: { - // disabled: true - // } - // } - // }, - { - label: '自动提交', - field: 'autoCommit', - dictType: DICT_TYPE.TRUE_FALSE, - dictClass: 'string', - isTable: false, - isForm:false, - sort: 'custom', - table: { - width: 150 - }, - form: { - component: 'Switch', - value: requestsettingData.autoCommit, - componentProps: { - inactiveValue: 'FALSE', - activeValue: 'TRUE', - disabled: true - } - } - }, - { - label: '自动通过', - field: 'autoAgree', - dictType: DICT_TYPE.TRUE_FALSE, - dictClass: 'string', - isForm:false, - isTable: false, - sort: 'custom', - table: { - width: 150 - }, - form: { - component: 'Switch', - value: requestsettingData.autoAgree, - componentProps: { - inactiveValue: 'FALSE', - activeValue: 'TRUE', - disabled: true + // { + // label: '从仓库代码', + // field: 'fromWarehouseCode', + // sort: 'custom', + // table: { + // width: 150 + // }, + // isTable: false, + // form: { + // // labelMessage: '信息提示说明!!!', + // componentProps: { + // isSearchList: true, // 开启查询弹窗 + // searchListPlaceholder: '请选择仓库代码', // 输入框占位文本 + // searchField: 'code', // 查询弹窗赋值字段 + // searchTitle: '仓库信息', // 查询弹窗标题 + // searchAllSchemas: Warehouse.allSchemas, // 查询弹窗所需类 + // searchPage: WarehouseApi.getWarehousePage, // 查询弹窗所需分页方法 + // searchCondition: [{ + // key: 'available', + // value: 'TRUE', + // isMainValue: false + // }] + // } + // } + // }, + // { + // label: '到仓库代码', + // field: 'toWarehouseCode', + // sort: 'custom', + // table: { + // width: 150 + // }, + // isTable: false, + // form: { + // componentProps: { + // disabled: true + // } + // } + // }, + { + label: '自动提交', + field: 'autoCommit', + dictType: DICT_TYPE.TRUE_FALSE, + dictClass: 'string', + isTable: false, + isForm: false, + sort: 'custom', + table: { + width: 150 + }, + form: { + component: 'Switch', + value: requestsettingData.autoCommit, + componentProps: { + inactiveValue: 'FALSE', + activeValue: 'TRUE', + disabled: true + } } - } - }, - { - label: '自动执行', - field: 'autoExecute', - dictType: DICT_TYPE.TRUE_FALSE, - dictClass: 'string', - isForm:false, - isTable: false, - sort: 'custom', - table: { - width: 150 - }, - form: { - component: 'Switch', - value: requestsettingData.autoExecute, - componentProps: { - inactiveValue: 'FALSE', - activeValue: 'TRUE', - disabled: true + }, + { + label: '自动通过', + field: 'autoAgree', + dictType: DICT_TYPE.TRUE_FALSE, + dictClass: 'string', + isForm: false, + isTable: false, + sort: 'custom', + table: { + width: 150 + }, + form: { + component: 'Switch', + value: requestsettingData.autoAgree, + componentProps: { + inactiveValue: 'FALSE', + activeValue: 'TRUE', + disabled: true + } } - } - }, - // { - // label: '直接生成记录', - // field: 'directCreateRecord', - // dictType: DICT_TYPE.TRUE_FALSE, - // dictClass: 'string', - // isTable: true, - // sort: 'custom', - // table: { - // width: 150 - // }, - // form: { - // component: 'Switch', - // value: requestsettingData.directCreateRecord, - // componentProps: { - // inactiveValue: 'FALSE', - // activeValue: 'TRUE', - // disabled: true - // } - // } - // }, - { - label: '创建时间', - field: 'createTime', - formatter: dateFormatter, - detail: { - dateFormat: 'YYYY-MM-DD HH:mm:ss' - }, - sort: 'custom', - table: { - width: 180 - }, - isTable: true, - form: { - component: 'DatePicker', - componentProps: { - type: 'datetime', - dateFormat: 'YYYY-MM-DD HH:mm:ss', - valueFormat: 'x', + }, + { + label: '自动执行', + field: 'autoExecute', + dictType: DICT_TYPE.TRUE_FALSE, + dictClass: 'string', + isForm: false, + isTable: false, + sort: 'custom', + table: { + width: 150 + }, + form: { + component: 'Switch', + value: requestsettingData.autoExecute, + componentProps: { + inactiveValue: 'FALSE', + activeValue: 'TRUE', + disabled: true + } } }, - isForm: false, - isSearch: true, - search: { - component: 'DatePicker', - componentProps: { - valueFormat: 'YYYY-MM-DD HH:mm:ss', - type: 'daterange', - defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] - }, - }, - }, - { - label: '创建者', - field: 'creator', - sort: 'custom', - table: { - width: 150 - }, - isTable: true, - isForm: false, - }, - { - label: '最后更新时间', - field: 'updateTime', - formatter: dateFormatter, - detail: { - dateFormat: 'YYYY-MM-DD HH:mm:ss' - }, - sort: 'custom', - table: { - width: 180 - }, - isDetail: true, - hiddenInMain:true, - isTable: false, - form: { - component: 'DatePicker', - componentProps: { - style: { width:'100%'}, - type: 'datetime', - dateFormat: 'YYYY-MM-DD HH:mm:ss', - valueFormat: 'x', + // { + // label: '直接生成记录', + // field: 'directCreateRecord', + // dictType: DICT_TYPE.TRUE_FALSE, + // dictClass: 'string', + // isTable: true, + // sort: 'custom', + // table: { + // width: 150 + // }, + // form: { + // component: 'Switch', + // value: requestsettingData.directCreateRecord, + // componentProps: { + // inactiveValue: 'FALSE', + // activeValue: 'TRUE', + // disabled: true + // } + // } + // }, + { + label: '创建时间', + field: 'createTime', + formatter: dateFormatter, + detail: { + dateFormat: 'YYYY-MM-DD HH:mm:ss' + }, + sort: 'custom', + table: { + width: 180 + }, + isTable: true, + form: { + component: 'DatePicker', + componentProps: { + type: 'datetime', + dateFormat: 'YYYY-MM-DD HH:mm:ss', + valueFormat: 'x' + } + }, + isForm: false, + isSearch: true, + search: { + component: 'DatePicker', + componentProps: { + valueFormat: 'YYYY-MM-DD HH:mm:ss', + type: 'daterange', + defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] + } } }, - isForm: false, - }, - { - label: '最后更新者', - field: 'updater', - sort: 'custom', - table: { - width: 150 - }, - hiddenInMain:true, - isTable: false, - isDetail: true, - isForm: false, - }, - // { - // label: '操作', - // field: 'action', - // isDetail: false, - // isForm: false, - // table: { - // width: 300, - // fixed: 'right' - // }, - // }, - // { - // label: '包装规格', - // field: 'packUnit', - // sort: 'custom', - // isForm:false, - // table: { - // width: 150 - // }, - // sortTableDefault:7, - // }, - // { - // label: '包装数量', - // field: 'packQty', - // sort: 'custom', - // isForm:false, - // table: { - // width: 150 - // }, - // sortTableDefault:8, - // }, -])) + { + label: '创建者', + field: 'creator', + sort: 'custom', + table: { + width: 150 + }, + isTable: true, + isForm: false + }, + { + label: '最后更新时间', + field: 'updateTime', + formatter: dateFormatter, + detail: { + dateFormat: 'YYYY-MM-DD HH:mm:ss' + }, + sort: 'custom', + table: { + width: 180 + }, + isDetail: true, + hiddenInMain: true, + isTable: false, + form: { + component: 'DatePicker', + componentProps: { + style: { width: '100%' }, + type: 'datetime', + dateFormat: 'YYYY-MM-DD HH:mm:ss', + valueFormat: 'x' + } + }, + isForm: false + }, + { + label: '最后更新者', + field: 'updater', + sort: 'custom', + table: { + width: 150 + }, + hiddenInMain: true, + isTable: false, + isDetail: true, + isForm: false + } + // { + // label: '操作', + // field: 'action', + // isDetail: false, + // isForm: false, + // table: { + // width: 300, + // fixed: 'right' + // }, + // }, + // { + // label: '包装规格', + // field: 'packUnit', + // sort: 'custom', + // isForm:false, + // table: { + // width: 150 + // }, + // sortTableDefault:7, + // }, + // { + // label: '包装数量', + // field: 'packQty', + // sort: 'custom', + // isForm:false, + // table: { + // width: 150 + // }, + // sortTableDefault:8, + // }, + ]) +) //表单校验 export const RepleinshRequestMainRules = reactive({ - fromWarehouseCode: [ - { required: true, message: '请输入从仓库代码', trigger: 'blur' } - ], - fromAreaTypes: [ - { required: true, message: '请选择从库区类型范围', trigger: 'change' } - ], - toWarehouseCode: [ - { required: true, message: '请输入到仓库代码', trigger: 'blur' } - ], - toAreaTypes: [ - { required: true, message: '请选择到库区类型范围', trigger: 'change' } - ], - departmentCode: [ - { required: true, message: '请输入部门', trigger: 'blur' } - ], - autoCommit: [ - { required: true, message: '请选择是否自动提交', trigger: 'change' } - ], - autoAgree: [ - { required: true, message: '请选择是否自动通过', trigger: 'change' } - ], - autoExecute: [ - { required: true, message: '请选择是否自动执行', trigger: 'change' } - ], - toLocationCode: [ - { required: true, message: '请输入到库位代码', trigger: ['change', 'blur']} - ], + fromWarehouseCode: [{ required: true, message: '请输入从仓库代码', trigger: 'blur' }], + fromAreaTypes: [{ required: true, message: '请选择从库区类型范围', trigger: 'change' }], + toWarehouseCode: [{ required: true, message: '请输入到仓库代码', trigger: 'blur' }], + toAreaTypes: [{ required: true, message: '请选择到库区类型范围', trigger: 'change' }], + departmentCode: [{ required: true, message: '请输入部门', trigger: 'blur' }], + autoCommit: [{ required: true, message: '请选择是否自动提交', trigger: 'change' }], + autoAgree: [{ required: true, message: '请选择是否自动通过', trigger: 'change' }], + autoExecute: [{ required: true, message: '请选择是否自动执行', trigger: 'change' }], + toLocationCode: [{ required: true, message: '请输入到库位代码', trigger: ['change', 'blur'] }], directCreateRecord: [ { required: true, message: '请选择是否跳过任务直接生成记录', trigger: 'change' } ], - businessType: [ - { required: true, message: '请输入业务类型', trigger: 'blur' } - ], - remark: [ - { max: 50, message: '不得超过50个字符', trigger: 'blur' } - ], + businessType: [{ required: true, message: '请输入业务类型', trigger: 'blur' }], + remark: [{ max: 50, message: '不得超过50个字符', trigger: 'blur' }] }) /** * @returns {Array} 补料申请子表 */ -export const RepleinshRequestDetail = useCrudSchemas(reactive([ - { - label: '品番', - field: 'itemCode', - sort: 'custom', - table: { - width: 150 - }, - isSearch:true, - sortSearchDefault:2, - sortTableDefault:3, - form: { - // labelMessage: '信息提示说明!!!', - componentProps: { - isSearchList: true, // 开启查询弹窗 +export const RepleinshRequestDetail = useCrudSchemas( + reactive([ + { + label: '品番', + field: 'itemCode', + sort: 'custom', + table: { + width: 150 + }, + isSearch: true, + sortSearchDefault: 2, + sortTableDefault: 3, + form: { + // labelMessage: '信息提示说明!!!', + componentProps: { + isSearchList: true, // 开启查询弹窗 + searchListPlaceholder: '请选择品番', // 输入框占位文本 + searchField: 'code', // 查询弹窗赋值字段 + searchTitle: '物料基础信息', // 查询弹窗标题 + searchAllSchemas: Itembasic.allSchemas, // 查询弹窗所需类 + searchPage: ItembasicApi.getItembasicPage, // 查询弹窗所需分页方法 + searchCondition: [ + { + key: 'available', + value: 'TRUE', + isMainValue: false + } + ] + } + }, + tableForm: { + multiple: true, + disabled: true, + // isInpuFocusShow: true, searchListPlaceholder: '请选择品番', // 输入框占位文本 searchField: 'code', // 查询弹窗赋值字段 searchTitle: '物料基础信息', // 查询弹窗标题 searchAllSchemas: Itembasic.allSchemas, // 查询弹窗所需类 searchPage: ItembasicApi.getItembasicPage, // 查询弹窗所需分页方法 - searchCondition:[{ - key: 'available', - value: 'TRUE', - isMainValue: false - }] + searchCondition: [ + { + key: 'available', + value: 'TRUE', + isMainValue: false + }, + { + key: 'businessTypeCode', + value: queryParams.businessTypeCode + } + ], + verificationPage: ItembasicApi.getItemListByCodes, // 校验数去焦点输入是否正确的方法 + isShowTableFormSearch: true, + verificationParams: [ + { + key: 'code', + action: '==', + value: '', + isMainValue: false, + isSearch: true, + isFormModel: true + } + ] // 失去焦点校验参数 } }, - tableForm:{ - multiple:true, - disabled:true, - // isInpuFocusShow: true, - searchListPlaceholder: '请选择品番', // 输入框占位文本 - searchField: 'code', // 查询弹窗赋值字段 - searchTitle: '物料基础信息', // 查询弹窗标题 - searchAllSchemas: Itembasic.allSchemas, // 查询弹窗所需类 - searchPage: ItembasicApi.getItembasicPage, // 查询弹窗所需分页方法 - searchCondition:[{ - key: 'available', - value: 'TRUE', - isMainValue: false - },{ - key : 'businessTypeCode', - value: queryParams.businessTypeCode - }], - verificationPage: ItembasicApi.getItemListByCodes, // 校验数去焦点输入是否正确的方法 - isShowTableFormSearch: true, - verificationParams: [{ - key: 'code', - action: '==', - value: '', - isMainValue: false, - isSearch: true, - isFormModel: true, - }], // 失去焦点校验参数 - }, - }, - { - label: '品名', - field: 'itemName', - sort: 'custom', - sortTableDefault:4, - isTableForm: false, - isForm: false, - }, - { - label: '背番', - field: 'backNumber', - sort: 'custom', - table: { - width: 150 - }, - isForm: false, - isTable: true, - isDetail: true - }, - { - label: '描述', - field: 'itemDesc2', - sort: 'custom', - table: { - width: 150 - }, - hiddenInMain:true, - isTableForm: false, - isForm: false, - }, - { - label: '数量', - field: 'unexecutedQty', - sort: 'custom', - sortTableDefault:4, - isTableForm: false, - isForm: false, - }, - { - label: '计量单位', - field: 'uom', - dictType: DICT_TYPE.UOM, - dictClass: 'string', - isTable: true, - sort: 'custom', - table: { - width: 150 - }, - sortTableDefault:9, - tableForm: { - type: 'Select', - disabled: true - }, - form: { - componentProps: { + { + label: '品名', + field: 'itemName', + sort: 'custom', + sortTableDefault: 4, + isTableForm: false, + isForm: false + }, + { + label: '背番', + field: 'backNumber', + sort: 'custom', + table: { + width: 150 + }, + isForm: false, + isTable: true, + isDetail: true + }, + { + label: '描述', + field: 'itemDesc2', + sort: 'custom', + table: { + width: 150 + }, + hiddenInMain: true, + isTableForm: false, + isForm: false + }, + { + label: '数量', + field: 'unexecutedQty', + sort: 'custom', + sortTableDefault: 4, + isTableForm: false, + isForm: false + }, + { + label: '计量单位', + field: 'uom', + dictType: DICT_TYPE.UOM, + dictClass: 'string', + isTable: true, + sort: 'custom', + table: { + width: 150 + }, + sortTableDefault: 9, + tableForm: { + type: 'Select', disabled: true - } - } - }, - { - label: '到库位代码', - field: 'toLocationCode', - sort: 'custom', - table: { - width: 150 - }, - hiddenInMain:true, - sortSearchDefault:1000, - // isSearch: true, - sortTableDefault:1100, - isTableForm: false, - form: { - componentProps: { - disabled:true, - } - } - }, - - // { - // label: '包装号', - // field: 'packingNumber', - // sort: 'custom', - // table: { - // width: 150 - // }, - // isTableForm: false, - // isForm: false, - // sortTableDefault:6, - // sortSearchDefault:4, - // }, - // { - // label: '批次', - // field: 'batch', - // sort: 'custom', - // table: { - // width: 150 - // }, - // isTableForm: false, - // sortTableDefault:5, - // sortSearchDefault:3, - // }, - { - label: '库存状态', - field: 'inventoryStatus', - dictType: DICT_TYPE.INVENTORY_STATUS, - dictClass: 'string', - isTableForm: false, - isTable:false, - sort: 'custom', - form: { - value: 'OK', - componentProps: { - disabled: true, - searchCondition:[{ - key: 'available', - value: 'TRUE', - isMainValue: false - }] + }, + form: { + componentProps: { + disabled: true + } } }, - table: { - width: 150 + { + label: '到库位代码', + field: 'toLocationCode', + sort: 'custom', + table: { + width: 150 + }, + hiddenInMain: true, + sortSearchDefault: 1000, + // isSearch: true, + sortTableDefault: 1100, + isTableForm: false, + form: { + componentProps: { + disabled: true + } + } }, - tableForm: { - type: 'Select', - default: 'OK', - disabled: true - } - }, - { - label: '单据号', - field: 'number', - sort: 'custom', - table: { - width: 180 - }, - hiddenInMain:true, - isTableForm: false, - isTable:false, - form: { - componentProps: { + // { + // label: '包装号', + // field: 'packingNumber', + // sort: 'custom', + // table: { + // width: 150 + // }, + // isTableForm: false, + // isForm: false, + // sortTableDefault:6, + // sortSearchDefault:4, + // }, + // { + // label: '批次', + // field: 'batch', + // sort: 'custom', + // table: { + // width: 150 + // }, + // isTableForm: false, + // sortTableDefault:5, + // sortSearchDefault:3, + // }, + { + label: '库存状态', + field: 'inventoryStatus', + dictType: DICT_TYPE.INVENTORY_STATUS, + dictClass: 'string', + isTableForm: false, + isTable: false, + sort: 'custom', + form: { + value: 'OK', + componentProps: { + disabled: true, + searchCondition: [ + { + key: 'available', + value: 'TRUE', + isMainValue: false + } + ] + } + }, + table: { + width: 150 + }, + tableForm: { + type: 'Select', + default: 'OK', disabled: true } - } - }, - - { - label: '备注', - field: 'remark', - sort: 'custom', - isTableForm:false, - table: { - width: 150 - }, - isTable:false, - hiddenInMain:true, - }, - { - label: '创建时间', - field: 'createTime', - formatter: dateFormatter, - detail: { - dateFormat: 'YYYY-MM-DD HH:mm:ss' - }, - sort: 'custom', - table: { - width: 180 - }, - hiddenInMain:true, - form: { - component: 'DatePicker', - componentProps: { - style: { width:'100%'}, - type: 'datetime', - dateFormat: 'YYYY-MM-DD HH:mm:ss', - valueFormat: 'x', + }, + + { + label: '单据号', + field: 'number', + sort: 'custom', + table: { + width: 180 + }, + hiddenInMain: true, + isTableForm: false, + isTable: false, + form: { + componentProps: { + disabled: true + } } }, - isTableForm: false, - isForm: false - }, - { - label: '创建者', - field: 'creator', - sort: 'custom', - table: { - width: 150 - }, - hiddenInMain:true, - isTableForm: false, - isForm: false - }, - { - label: '项目代码', - field: 'projectCode', - sort: 'custom', - table: { - width: 150 - }, - hiddenInMain:true, - isTableForm: false, - isTable:false, - isForm: false, - }, + { + label: '备注', + field: 'remark', + sort: 'custom', + isTableForm: false, + table: { + width: 150 + }, + isTable: false, + hiddenInMain: true + }, + { + label: '创建时间', + field: 'createTime', + formatter: dateFormatter, + detail: { + dateFormat: 'YYYY-MM-DD HH:mm:ss' + }, + sort: 'custom', + table: { + width: 180 + }, + hiddenInMain: true, + form: { + component: 'DatePicker', + componentProps: { + style: { width: '100%' }, + type: 'datetime', + dateFormat: 'YYYY-MM-DD HH:mm:ss', + valueFormat: 'x' + } + }, + isTableForm: false, + isForm: false + }, + { + label: '创建者', + field: 'creator', + sort: 'custom', + table: { + width: 150 + }, + hiddenInMain: true, + isTableForm: false, + isForm: false + }, - { - label: '采购订单号', - field: 'poNumber', - sort: 'custom', - table: { - width: 150 - }, - hiddenInMain:true, - isTableForm: false, - sortTableDefault:1, - isTable:false, - }, - { - label: '订单行', - field: 'poLine', - sort: 'custom', - table: { - width: 150 - }, - hiddenInMain:true, - isTableForm: false, - sortTableDefault:2, - isTable:false, - }, - - { - label: '从货主代码', - field: 'fromOwnerCode', - sort: 'custom', - table: { - width: 150 - }, - isTableForm: false, - isForm: false, - hiddenInMain:true, - isTable:false, - }, - { - label: '到货主代码', - field: 'toOwnerCode', - sort: 'custom', - table: { - width: 150 - }, - isTableForm: false, - isForm: false, - hiddenInMain:true, - isTable:false, - }, - { - label: '最后更新时间', - field: 'updateTime', - formatter: dateFormatter, - detail: { - dateFormat: 'YYYY-MM-DD HH:mm:ss' - }, - sort: 'custom', - table: { - width: 180 - }, - isTable:false, - form: { - component: 'DatePicker', - componentProps: { - style: { width:'100%'}, - type: 'datetime', - dateFormat: 'YYYY-MM-DD HH:mm:ss', - valueFormat: 'x', - } + { + label: '项目代码', + field: 'projectCode', + sort: 'custom', + table: { + width: 150 + }, + hiddenInMain: true, + isTableForm: false, + isTable: false, + isForm: false }, - hiddenInMain:true, - isTableForm: false, - isForm: false - }, - { - label: '最后更新者', - field: 'updater', - sort: 'custom', - table: { - width: 150 - }, - isTableForm: false, - hiddenInMain:true, - isTable:false, - isForm: false - }, - // { - // label: '未执行任务数量', - // field: 'unexecutedQty', - // sort: 'custom', - // table: { - // width: 150 - // }, - // form: { - // component: 'InputNumber', - // }, - // isTableForm:false, - // hiddenInMain:true, - // }, - // { - // label: '操作', - // field: 'action', - // hiddenInMain:true, - // isDetail: false, - // isForm: false , - // table: { - // width: 150, - // fixed: 'right' - // }, - // isTableForm:false, - // } -])) + + { + label: '采购订单号', + field: 'poNumber', + sort: 'custom', + table: { + width: 150 + }, + hiddenInMain: true, + isTableForm: false, + sortTableDefault: 1, + isTable: false + }, + { + label: '订单行', + field: 'poLine', + sort: 'custom', + table: { + width: 150 + }, + hiddenInMain: true, + isTableForm: false, + sortTableDefault: 2, + isTable: false + }, + + { + label: '从货主代码', + field: 'fromOwnerCode', + sort: 'custom', + table: { + width: 150 + }, + isTableForm: false, + isForm: false, + hiddenInMain: true, + isTable: false + }, + { + label: '到货主代码', + field: 'toOwnerCode', + sort: 'custom', + table: { + width: 150 + }, + isTableForm: false, + isForm: false, + hiddenInMain: true, + isTable: false + }, + { + label: '最后更新时间', + field: 'updateTime', + formatter: dateFormatter, + detail: { + dateFormat: 'YYYY-MM-DD HH:mm:ss' + }, + sort: 'custom', + table: { + width: 180 + }, + isTable: false, + form: { + component: 'DatePicker', + componentProps: { + style: { width: '100%' }, + type: 'datetime', + dateFormat: 'YYYY-MM-DD HH:mm:ss', + valueFormat: 'x' + } + }, + hiddenInMain: true, + isTableForm: false, + isForm: false + }, + { + label: '最后更新者', + field: 'updater', + sort: 'custom', + table: { + width: 150 + }, + isTableForm: false, + hiddenInMain: true, + isTable: false, + isForm: false + } + // { + // label: '未执行任务数量', + // field: 'unexecutedQty', + // sort: 'custom', + // table: { + // width: 150 + // }, + // form: { + // component: 'InputNumber', + // }, + // isTableForm:false, + // hiddenInMain:true, + // }, + // { + // label: '操作', + // field: 'action', + // hiddenInMain:true, + // isDetail: false, + // isForm: false , + // table: { + // width: 150, + // fixed: 'right' + // }, + // isTableForm:false, + // } + ]) +) //表单校验 export const RepleinshRequestDetailRules = reactive({ @@ -1002,10 +1000,6 @@ export const RepleinshRequestDetailRules = reactive({ // toLocationCode: [ // { required: true, message: '请输入到库位代码', trigger: 'blur' } // ], - itemCode: [ - { required: true, message: '请输入品番', trigger: 'blur' } - ], - remark: [ - { max: 50, message: '不得超过50个字符', trigger: 'blur' } - ], + itemCode: [{ required: true, message: '请输入品番', trigger: 'blur' }], + remark: [{ max: 50, message: '不得超过50个字符', trigger: 'blur' }] }) diff --git a/src/views/wms/supplierManage/supplierinvoice/supplierinvoiceRecordMain/index.vue b/src/views/wms/supplierManage/supplierinvoice/supplierinvoiceRecordMain/index.vue index cf8c8e0a3..2c2eedec0 100644 --- a/src/views/wms/supplierManage/supplierinvoice/supplierinvoiceRecordMain/index.vue +++ b/src/views/wms/supplierManage/supplierinvoice/supplierinvoiceRecordMain/index.vue @@ -212,7 +212,7 @@ const { getList, setSearchParams } = tableMethods // 列表头部按钮 const HeadButttondata = [ defaultButtons.defaultExportBtn({hasPermi:'wms:supplierinvoice-record-main:export'}), // 导出 - defaultButtons.mainLisSelectiontPointBtn(null), // 批量打印 + // defaultButtons.mainLisSelectiontPointBtn(null), // 批量打印 defaultButtons.defaultFreshBtn(null), // 刷新 defaultButtons.defaultFilterBtn(null), // 筛选 defaultButtons.defaultSetBtn(null), // 设置