Browse Source

2025-12-26

其它入库改为其他入库
master
fengyuan_yang 3 weeks ago
parent
commit
3a9656cd5e
  1. 10
      src/api/other-inbound/other-inbound.js
  2. 2
      src/views/modules/other-inout/other-inout.vue
  3. 2
      src/views/modules/other-inout/otherInboundDetail.vue
  4. 2
      src/views/modules/other-inout/otherInboundList.vue

10
src/api/other-inbound/other-inbound.js

@ -1,31 +1,31 @@
import { createAPI } from "@/utils/httpRequest.js"; import { createAPI } from "@/utils/httpRequest.js";
/** /**
* 获取其入库单列表
* 获取其入库单列表
* @param {Object} data - 查询参数 * @param {Object} data - 查询参数
*/ */
export const getOtherInboundList = data => createAPI(`otherInbound/getInboundList`, 'post', data) export const getOtherInboundList = data => createAPI(`otherInbound/getInboundList`, 'post', data)
/** /**
* 获取其入库单详情
* 获取其入库单详情
* @param {Object} data - 查询参数 * @param {Object} data - 查询参数
*/ */
export const getOtherInboundDetails = data => createAPI(`otherInbound/getInboundDetails`, 'post', data) export const getOtherInboundDetails = data => createAPI(`otherInbound/getInboundDetails`, 'post', data)
/** /**
* 验证物料与其入库单是否匹配通过存储过程GetScanLabelVerification
* 验证物料与其入库单是否匹配通过存储过程GetScanLabelVerification
* @param {Object} data - 验证参数包含documentType: '其他入库' * @param {Object} data - 验证参数包含documentType: '其他入库'
*/ */
export const validateLabelWithOtherInbound = data => createAPI(`otherInbound/validateLabelWithOtherInbound`, 'post', data) export const validateLabelWithOtherInbound = data => createAPI(`otherInbound/validateLabelWithOtherInbound`, 'post', data)
/** /**
* 确认其入库通过存储过程GetSaveLabelVerification
* 确认其入库通过存储过程GetSaveLabelVerification
* @param {Object} data - 入库数据包含documentType: '其他入库' * @param {Object} data - 入库数据包含documentType: '其他入库'
*/ */
export const confirmOtherInbound = data => createAPI(`otherInbound/confirmOtherInbound`, 'post', data) export const confirmOtherInbound = data => createAPI(`otherInbound/confirmOtherInbound`, 'post', data)
/** /**
* 获取其入库单物料清单
* 获取其入库单物料清单
* @param {Object} data - 查询参数 {site, buNo, inboundNo} * @param {Object} data - 查询参数 {site, buNo, inboundNo}
*/ */
export const getMaterialList = data => createAPI(`otherInbound/getMaterialList`, 'post', data) export const getMaterialList = data => createAPI(`otherInbound/getMaterialList`, 'post', data)

2
src/views/modules/other-inout/other-inout.vue

@ -33,7 +33,7 @@ export default {
data() { data() {
return { return {
buttons: [ 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 }, { icon: 'revoke', label: '其他出库', iconClass: 'purchase', to: 'otherOutboundList', disabled: false },
] ]
} }

2
src/views/modules/other-inout/otherInboundDetail.vue

@ -823,7 +823,7 @@ export default {
const params = { const params = {
site: this.inboundInfo.site, site: this.inboundInfo.site,
notifyNo: this.inboundNo, notifyNo: this.inboundNo,
notifyType: '其入库',
notifyType: '其入库',
orderNo: '', orderNo: '',
orderLineNo: '', orderLineNo: '',
partNo: partNo, partNo: partNo,

2
src/views/modules/other-inout/otherInboundList.vue

@ -4,7 +4,7 @@
<div class="header-bar"> <div class="header-bar">
<div class="header-left" @click="$router.back()"> <div class="header-left" @click="$router.back()">
<i class="el-icon-arrow-left"></i> <i class="el-icon-arrow-left"></i>
<span>入库</span>
<span>入库</span>
</div> </div>
<div class="header-right" @click="$router.push({ path: '/' })"> <div class="header-right" @click="$router.push({ path: '/' })">
首页 首页

Loading…
Cancel
Save