Browse Source

补料记录中应该去掉从批次,到批次,从包装号,到包装号查询

master_hella_20240701
zhang_li 3 months ago
parent
commit
fb5c6e4140
  1. 14
      src/views/wms/issueManage/repleinsh/repleinshRecordMain/repleinshRecordMain.data.ts
  2. 4
      src/views/wms/issueManage/repleinsh/repleinshRequestMain/index.vue

14
src/views/wms/issueManage/repleinsh/repleinshRecordMain/repleinshRecordMain.data.ts

@ -429,7 +429,7 @@ export const RepleinshRecordDetail = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 150 width: 150
}, },
isSearch: true, isSearch: false,
hiddenInMain: true hiddenInMain: true
}, },
{ {
@ -439,7 +439,7 @@ export const RepleinshRecordDetail = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 150 width: 150
}, },
isSearch: true, isSearch: false,
hiddenInMain: true hiddenInMain: true
}, },
{ {
@ -480,7 +480,7 @@ export const RepleinshRecordDetail = useCrudSchemas(reactive<CrudSchema[]>([
width: 150 width: 150
}, },
sortSearchDefault:3, sortSearchDefault:3,
isSearch: true, isSearch: false,
hiddenInMain: true hiddenInMain: true
}, },
{ {
@ -491,7 +491,7 @@ export const RepleinshRecordDetail = useCrudSchemas(reactive<CrudSchema[]>([
width: 150 width: 150
}, },
sortSearchDefault:4, sortSearchDefault:4,
isSearch: true, isSearch: false,
hiddenInMain: true hiddenInMain: true
}, },
{ {
@ -512,6 +512,7 @@ export const RepleinshRecordDetail = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 150 width: 150
}, },
isTable:false,
hiddenInMain:true, hiddenInMain:true,
sortTableDefault:2, sortTableDefault:2,
}, },
@ -522,6 +523,7 @@ export const RepleinshRecordDetail = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 150 width: 150
}, },
isTable:false,
hiddenInMain:true, hiddenInMain:true,
sortTableDefault:3, sortTableDefault:3,
}, },
@ -529,6 +531,7 @@ export const RepleinshRecordDetail = useCrudSchemas(reactive<CrudSchema[]>([
label: '从货主代码', label: '从货主代码',
field: 'fromOwnerCode', field: 'fromOwnerCode',
sort: 'custom', sort: 'custom',
isTable:false,
table: { table: {
width: 150 width: 150
}, },
@ -690,6 +693,7 @@ export const RepleinshRecordDetail = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 150 width: 150
}, },
isTable:false,
hiddenInMain:true, hiddenInMain:true,
}, },
{ {
@ -740,6 +744,7 @@ export const RepleinshRecordDetail = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 150 width: 150
}, },
isTable:false,
hiddenInMain:true, hiddenInMain:true,
}, },
@ -750,6 +755,7 @@ export const RepleinshRecordDetail = useCrudSchemas(reactive<CrudSchema[]>([
table: { table: {
width: 150 width: 150
}, },
isTable:false,
hiddenInMain:true, hiddenInMain:true,
}, },

4
src/views/wms/issueManage/repleinsh/repleinshRequestMain/index.vue

@ -377,8 +377,8 @@ const submitForm = async (formType, submitData) => {
data.id = data.masterId data.id = data.masterId
} }
tableData.value.forEach(item=>{ tableData.value.forEach(item=>{
item.toLocationCode = data.toLocationCode item.toLocationCode = data.toLocationCode
}) })
data.subList = tableData.value // data.subList = tableData.value //
if(tableData.value.find(item => (item.qty <= 0))) { if(tableData.value.find(item => (item.qty <= 0))) {
message.warning('数量必须大于0') message.warning('数量必须大于0')

Loading…
Cancel
Save