From 3a9656cd5ea2b471714a8606e899587a5de3d999 Mon Sep 17 00:00:00 2001 From: fengyuan_yang <1976974459@qq.com> Date: Fri, 26 Dec 2025 16:29:26 +0800 Subject: [PATCH] =?UTF-8?q?2025-12-26=20=E5=85=B6=E5=AE=83=E5=85=A5?= =?UTF-8?q?=E5=BA=93=E6=94=B9=E4=B8=BA=E5=85=B6=E4=BB=96=E5=85=A5=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/other-inbound/other-inbound.js | 10 +++++----- src/views/modules/other-inout/other-inout.vue | 2 +- src/views/modules/other-inout/otherInboundDetail.vue | 2 +- src/views/modules/other-inout/otherInboundList.vue | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/api/other-inbound/other-inbound.js b/src/api/other-inbound/other-inbound.js index 736198c..d1a6470 100644 --- a/src/api/other-inbound/other-inbound.js +++ b/src/api/other-inbound/other-inbound.js @@ -1,31 +1,31 @@ import { createAPI } from "@/utils/httpRequest.js"; /** - * 获取其它入库单列表 + * 获取其他入库单列表 * @param {Object} data - 查询参数 */ export const getOtherInboundList = data => createAPI(`otherInbound/getInboundList`, 'post', data) /** - * 获取其它入库单详情 + * 获取其他入库单详情 * @param {Object} data - 查询参数 */ export const getOtherInboundDetails = data => createAPI(`otherInbound/getInboundDetails`, 'post', data) /** - * 验证物料与其它入库单是否匹配(通过存储过程GetScanLabelVerification) + * 验证物料与其他入库单是否匹配(通过存储过程GetScanLabelVerification) * @param {Object} data - 验证参数(包含documentType: '其他入库') */ export const validateLabelWithOtherInbound = data => createAPI(`otherInbound/validateLabelWithOtherInbound`, 'post', data) /** - * 确认其它入库(通过存储过程GetSaveLabelVerification) + * 确认其他入库(通过存储过程GetSaveLabelVerification) * @param {Object} data - 入库数据(包含documentType: '其他入库') */ export const confirmOtherInbound = data => createAPI(`otherInbound/confirmOtherInbound`, 'post', data) /** - * 获取其它入库单物料清单 + * 获取其他入库单物料清单 * @param {Object} data - 查询参数 {site, buNo, inboundNo} */ export const getMaterialList = data => createAPI(`otherInbound/getMaterialList`, 'post', data) diff --git a/src/views/modules/other-inout/other-inout.vue b/src/views/modules/other-inout/other-inout.vue index 81e3087..4af6157 100644 --- a/src/views/modules/other-inout/other-inout.vue +++ b/src/views/modules/other-inout/other-inout.vue @@ -33,7 +33,7 @@ export default { data() { return { buttons: [ - { icon: 'down', label: '其它入库', iconClass: 'qualified', to: 'otherInboundList', disabled: false }, + { icon: 'down', label: '其他入库', iconClass: 'qualified', to: 'otherInboundList', disabled: false }, { icon: 'revoke', label: '其他出库', iconClass: 'purchase', to: 'otherOutboundList', disabled: false }, ] } diff --git a/src/views/modules/other-inout/otherInboundDetail.vue b/src/views/modules/other-inout/otherInboundDetail.vue index a8d88a7..0b378ed 100644 --- a/src/views/modules/other-inout/otherInboundDetail.vue +++ b/src/views/modules/other-inout/otherInboundDetail.vue @@ -823,7 +823,7 @@ export default { const params = { site: this.inboundInfo.site, notifyNo: this.inboundNo, - notifyType: '其它入库', + notifyType: '其他入库', orderNo: '', orderLineNo: '', partNo: partNo, diff --git a/src/views/modules/other-inout/otherInboundList.vue b/src/views/modules/other-inout/otherInboundList.vue index 6672c65..9d010b1 100644 --- a/src/views/modules/other-inout/otherInboundList.vue +++ b/src/views/modules/other-inout/otherInboundList.vue @@ -4,7 +4,7 @@
- 其它入库 + 其他入库
首页