Browse Source

2026-04-15

优化
master
fengyuan_yang 3 days ago
parent
commit
8477b72102
  1. 2
      src/api/production/production-return2.js
  2. 4
      src/views/modules/production/productionApplicationReturnStorage.vue

2
src/api/production/production-return2.js

@ -5,6 +5,8 @@ export const getApplicationReturnList = data => createAPI(`productionReturn/getA
export const getApplicationReturnDetails = data => createAPI(`productionReturn/getApplicationReturnDetails`, 'post', data)
export const getApplicationScannedLabelList = data => createAPI(`productionReturn/getApplicationScannedLabelList`, 'post', data)
export const getQualifiedReturnList = data => createAPI(`productionReturn/getQualifiedReturnList`, 'post', data)
export const getReturnDetails = data => createAPI(`productionReturn/getReturnDetails`, 'post', data)

4
src/views/modules/production/productionApplicationReturnStorage.vue

@ -215,7 +215,7 @@ import {
validateLabelWithReturn,
confirmReturnStorage,
getMaterialList,
getScannedLabelList
getApplicationScannedLabelList
} from "@/api/production/production-return2.js";
import { getCurrentWarehouse } from '@/utils'
import moment from 'moment';
@ -476,7 +476,7 @@ export default {
inboundNo: this.materialInfo.transactionId
};
getScannedLabelList(params).then(({ data }) => {
getApplicationScannedLabelList(params).then(({ data }) => {
if (data && data.code === 0) {
// labelList
this.labelList = (data.data || []).map((item, index) => ({

Loading…
Cancel
Save